Files
calendar/frontend/index.html
Connor Johnstone 5456d7140c
Some checks failed
Build and Push Docker Image / docker (push) Failing after 21s
Manual updates to fix some deployment steps
2025-09-02 16:03:11 -04:00

20 lines
576 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Runway</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<base data-trunk-public-url />
<link data-trunk rel="css" href="styles.css">
<link data-trunk rel="copy-file" href="styles/google.css">
</head>
<body>
<script>
console.log("HTML fully loaded, waiting for WASM...");
window.addEventListener('TrunkApplicationStarted', () => {
console.log("Trunk application started successfully!");
});
</script>
</body>
</html>