-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.63 KB
/
Copy pathindex.html
File metadata and controls
31 lines (31 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="/logo.png" />
<link rel="icon" type="image/png" sizes="192x192" href="/logo-192.png" />
<link rel="icon" type="image/png" sizes="512x512" href="/logo-512.png" />
<link rel="apple-touch-icon" href="/logo-192.png" />
<meta name="theme-color" content="#0B0B0E" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet" />
<title>Delay — Notes, Tasks, Calendar & AI</title>
</head>
<body style="margin:0;background:#0D0D0F;color:#e4e4e7;font-family:system-ui,sans-serif">
<div id="root"></div>
<div id="boot-error" style="display:none;padding:24px;white-space:pre-wrap;font:12px ui-monospace,Menlo,Consolas,monospace;color:#f87171"></div>
<script>
window.addEventListener("error", (e) => {
const el = document.getElementById("boot-error");
if (el) { el.style.display = "block"; el.textContent = "Startup error:\n" + (e.error?.stack || e.message); }
});
window.addEventListener("unhandledrejection", (e) => {
const el = document.getElementById("boot-error");
if (el) { el.style.display = "block"; el.textContent = "Startup rejection:\n" + (e.reason?.stack || String(e.reason)); }
});
</script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>