-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (122 loc) · 4.07 KB
/
index.html
File metadata and controls
129 lines (122 loc) · 4.07 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
127
128
129
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SynthLabs Reasoning Generator</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Source+Sans+3:wght@400;500;600;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['"Source Sans 3"', 'system-ui', 'sans-serif'],
mono: ['"IBM Plex Mono"', 'ui-monospace', 'SFMono-Regular', 'monospace'],
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
}
},
},
}
</script>
<style>
/* Custom scrollbar for a cleaner look */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #0b0f14;
}
::-webkit-scrollbar-thumb {
background: #27303c;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #3b4654;
}
/* Dark theme for native select dropdowns */
select option {
background-color: #0b0f14;
color: #e5e7eb;
}
select option:hover,
select option:focus,
select option:checked {
background-color: #111827;
}
/* Force dark color scheme for form elements */
select, input, textarea {
color-scheme: dark;
}
body {
background-color: #0b0f14;
}
body::before {
content: '';
position: fixed;
inset: 0;
background:
radial-gradient(1200px 600px at 12% -10%, rgba(56, 189, 248, 0.10), transparent 60%),
radial-gradient(900px 500px at 88% -12%, rgba(14, 165, 233, 0.08), transparent 55%),
radial-gradient(700px 500px at 50% 120%, rgba(148, 163, 184, 0.08), transparent 50%);
pointer-events: none;
z-index: -1;
}
html:not(.dark) ::-webkit-scrollbar-track {
background: #e2e8f0;
}
html:not(.dark) ::-webkit-scrollbar-thumb {
background: #cbd5e1;
}
html:not(.dark) ::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
html:not(.dark) select option {
background-color: #ffffff;
color: #0f172a;
}
html:not(.dark) select,
html:not(.dark) input,
html:not(.dark) textarea {
color-scheme: light;
}
html:not(.dark) body {
background-color: #f8fafc;
color: #0f172a;
}
html:not(.dark) body::before {
background:
radial-gradient(1200px 600px at 12% -10%, rgba(14, 165, 233, 0.12), transparent 60%),
radial-gradient(900px 500px at 88% -12%, rgba(59, 130, 246, 0.10), transparent 55%),
radial-gradient(700px 500px at 50% 120%, rgba(148, 163, 184, 0.14), transparent 50%);
}
</style>
<script type="importmap">
{
"imports": {
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
"lucide-react": "https://esm.sh/lucide-react@^0.561.0",
"@google/genai": "https://esm.sh/@google/genai@^1.33.0",
"react/": "https://esm.sh/react@^19.2.3/",
"react": "https://esm.sh/react@^19.2.3",
"firebase/app": "https://esm.sh/firebase@10.12.0/app",
"firebase/firestore": "https://esm.sh/firebase@10.12.0/firestore",
"firebase/": "https://esm.sh/firebase@^12.7.0/",
"@huggingface/hub": "https://esm.sh/@huggingface/hub@0.15.1",
"hyparquet": "https://esm.sh/hyparquet@1.24.0"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body class="bg-slate-950 text-slate-100 antialiased selection:bg-sky-500/30 overflow-hidden font-sans">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>