-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (88 loc) · 3.15 KB
/
Copy pathindex.html
File metadata and controls
99 lines (88 loc) · 3.15 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
<title>Just Start - Personal Planner</title>
<!-- PWA / Mobile App Meta Tags -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="theme-color" content="#10b981">
<meta name="mobile-web-app-capable" content="yes">
<link rel="manifest" href="manifest.json">
<script src="https://cdn.tailwindcss.com"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Caveat:wght@400;700&family=Shadows+Into+Light&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #f8fafc;
overscroll-behavior-y: none;
-webkit-tap-highlight-color: transparent;
}
.handwritten {
font-family: 'Caveat', cursive;
}
.sketch-font {
font-family: 'Shadows Into Light', cursive;
}
.scrapbook-paper {
background-color: #fcfcfc;
background-image:
radial-gradient(#e5e7eb 0.5px, transparent 0.5px),
radial-gradient(#e5e7eb 0.5px, #fcfcfc 0.5px);
background-size: 20px 20px;
background-position: 0 0, 10px 10px;
}
.washi-tape {
background: rgba(45, 212, 191, 0.4);
backdrop-filter: blur(2px);
transform: rotate(-2deg);
}
.red-stamp {
border: 2px solid #ef4444;
color: #ef4444;
padding: 2px 8px;
border-radius: 4px;
font-weight: bold;
text-transform: uppercase;
transform: rotate(3deg);
display: inline-block;
}
.glass-card {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.3);
}
.bottom-nav-glass {
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(20px);
border-top: 1px solid rgba(0, 0, 0, 0.05);
}
@keyframes subtle-bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-3px); }
}
.active-icon {
animation: subtle-bounce 2s infinite ease-in-out;
}
</style>
<script type="importmap">
{
"imports": {
"react/": "https://esm.sh/react@^19.2.3/",
"react": "https://esm.sh/react@^19.2.3",
"lucide-react": "https://esm.sh/lucide-react@^0.562.0",
"@google/genai": "https://esm.sh/@google/genai@^1.37.0",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
"recharts": "https://esm.sh/recharts@^3.6.0",
"firebase/app": "https://esm.sh/firebase@11.0.1/app",
"firebase/firestore": "https://esm.sh/firebase@11.0.1/firestore",
"firebase/": "https://esm.sh/firebase@^12.8.0/"
}
}
</script>
</head>
<body>
<div id="root"></div>
</body>
</html>