-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (67 loc) · 2.15 KB
/
index.html
File metadata and controls
70 lines (67 loc) · 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Coach.ai</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/canvas-confetti@1.6.0/dist/confetti.browser.min.js"></script>
<!-- PDF Generation Libraries -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/3.5.29/jspdf.plugin.autotable.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap" rel="stylesheet">
<script>
tailwind.config = {
darkMode: 'class',
}
</script>
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #ffffff;
color: #000000;
transition: background-color 0.3s ease, color 0.3s ease;
}
/* Neo-brutalist shadow utility */
.neo-shadow {
box-shadow: 4px 4px 0px 0px rgba(0,0,0,1);
}
.neo-shadow-sm {
box-shadow: 2px 2px 0px 0px rgba(0,0,0,1);
}
/* Dark mode overrides */
.dark body {
background-color: #000000;
color: #ffffff;
}
.dark .neo-shadow {
box-shadow: 4px 4px 0px 0px rgba(255,255,255,1);
}
.dark .neo-shadow-sm {
box-shadow: 2px 2px 0px 0px rgba(255,255,255,1);
}
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
.scrollbar-hide {
-ms-overflow-style: none;
scrollbar-width: none;
}
</style>
<script type="importmap">
{
"imports": {
"react/": "https://aistudiocdn.com/react@^19.2.1/",
"react": "https://aistudiocdn.com/react@^19.2.1",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.1/",
"lucide-react": "https://aistudiocdn.com/lucide-react@^0.556.0",
"recharts": "https://aistudiocdn.com/recharts@^3.5.1",
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.32.0"
}
}
</script>
</head>
<body>
<div id="root"></div>
</body>
</html>