-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (48 loc) · 2.17 KB
/
index.html
File metadata and controls
54 lines (48 loc) · 2.17 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover, interactive-widget=resizes-content" />
<!-- Primary favicon (SVG with dark mode support) -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<!-- Fallback for browsers that don't support SVG favicons -->
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<!-- Apple Touch Icon -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<!-- PWA Manifest -->
<link rel="manifest" href="/site.webmanifest" />
<!-- Theme color (matches emerald brand) -->
<meta name="theme-color" content="#10b981" />
<!-- SEO Meta Tags -->
<meta name="description" content="Daylo - Simple Activity Tracker. Track your daily habits with a beautiful heatmap calendar." />
<meta name="application-name" content="Daylo" />
<title>Daylo</title>
<style>
@keyframes skeleton-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.sk { animation: skeleton-pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; background: #e5e7eb; border-radius: 0.25rem; }
</style>
</head>
<body>
<div id="root">
<!-- Pre-React skeleton: replaced automatically when React mounts -->
<div style="min-height:100vh;background:#f9fafb">
<header style="background:#fff;border-bottom:1px solid #e5e7eb">
<div style="max-width:80rem;margin:0 auto;padding:0.75rem 1rem">
<div style="display:flex;align-items:center;justify-content:space-between">
<div class="sk" style="width:4rem;height:1.5rem"></div>
<div style="display:flex;gap:0.5rem">
<div class="sk" style="width:3.5rem;height:1.75rem;border-radius:0.375rem"></div>
<div class="sk" style="width:4rem;height:1.75rem;border-radius:0.375rem"></div>
</div>
</div>
</div>
</header>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>