-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (93 loc) · 2.6 KB
/
index.html
File metadata and controls
99 lines (93 loc) · 2.6 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" />
<title>InsightMap AI</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
background: '#0b0f19', // Darker, deeper blue
surface: '#111827',
primary: '#6366f1',
secondary: '#10b981',
accent: '#f43f5e',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
animation: {
'spin-slow': 'spin 8s linear infinite',
'dash-flow': 'dash 1s linear infinite',
}
},
},
};
</script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #0b0f19;
color: #e2e8f0;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: #111827;
}
::-webkit-scrollbar-thumb {
background: #374151;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #4b5563;
}
/* Animations */
.node-enter {
animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
transform-origin: center;
opacity: 0;
}
@keyframes popIn {
from { opacity: 0; transform: scale(0); }
to { opacity: 1; transform: scale(1); }
}
.animate-spin-slow {
animation: spin 10s linear infinite;
transform-origin: center;
}
.animate-dash-flow {
animation: dashFlow 2s linear infinite;
}
@keyframes dashFlow {
from { stroke-dashoffset: 16; }
to { stroke-dashoffset: 0; }
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
</style>
<script type="importmap">
{
"imports": {
"react/": "https://aistudiocdn.com/react@^19.2.0/",
"react": "https://aistudiocdn.com/react@^19.2.0",
"lucide-react": "https://aistudiocdn.com/lucide-react@^0.554.0",
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.30.0",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.0/"
}
}
</script>
</head>
<body>
<div id="root"></div>
</body>
</html>