-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
126 lines (115 loc) · 4.21 KB
/
Copy pathindex.html
File metadata and controls
126 lines (115 loc) · 4.21 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ASK Business Manager</title>
<!-- Tailwind CSS CDN for immediate styling -->
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet" />
<style>
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
:root {
--primary-glow: conic-gradient(from 180deg at 50% 50%, #16abff33 0deg, #0885ff33 55deg, #54d6ff33 120deg, #0071ff33 160deg, transparent 360deg);
--secondary-glow: radial-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
body {
font-family: 'Plus Jakarta Sans', sans-serif;
background-color: #f8fafc;
background-image:
radial-gradient(at 0% 0%, hsla(253,16%,7%,0) 0, transparent 50%),
radial-gradient(at 50% 0%, hsla(225,39%,30%,0) 0, transparent 50%),
radial-gradient(at 100% 0%, hsla(339,49%,30%,0) 0, transparent 50%);
color: #1e293b;
-webkit-font-smoothing: antialiased;
}
/* Premium Scrollbar */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
@media print {
.no-print { display: none !important; }
.print-only { display: block !important; }
body { background-color: white; -webkit-print-color-adjust: exact; }
}
/* Advanced Animations */
.glass-panel {
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.5);
}
.mesh-bg {
position: fixed;
width: 100vw;
height: 100vh;
z-index: -1;
top: 0;
left: 0;
background:
radial-gradient(at 40% 20%, hsla(260, 100%, 95%, 1) 0px, transparent 50%),
radial-gradient(at 80% 0%, hsla(189, 100%, 96%, 1) 0px, transparent 50%),
radial-gradient(at 0% 50%, hsla(340, 100%, 96%, 1) 0px, transparent 50%);
opacity: 0.8;
}
@keyframes shimmer {
0% { background-position: -1000px 0; }
100% { background-position: 1000px 0; }
}
.skeleton {
animation: shimmer 2s infinite linear;
background: linear-gradient(to right, #f1f5f9 4%, #e2e8f0 25%, #f1f5f9 36%);
background-size: 1000px 100%;
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
.animate-fade-in { animation: fade-in 0.4s ease-out forwards; }
@keyframes fade-in {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-scale-in { animation: scale-in 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes scale-in {
from { opacity: 0; transform: scale(0.95); }
to { opacity: 1; transform: scale(1); }
}
</style>
<script type="importmap">
{
"imports": {
"react": "https://esm.sh/react@^19.2.3",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
"react/": "https://esm.sh/react@^19.2.3/",
"@google/genai": "https://esm.sh/@google/genai@^1.38.0",
"react-router-dom": "https://esm.sh/react-router-dom@^7.12.0",
"recharts": "https://esm.sh/recharts@^3.7.0",
"@supabase/supabase-js": "https://esm.sh/@supabase/supabase-js@^2.91.1",
"vite": "https://esm.sh/vite@^7.3.1",
"@vitejs/plugin-react": "https://esm.sh/@vitejs/plugin-react@^5.1.2"
}
}
</script>
</head>
<body>
<div class="mesh-bg"></div>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>