-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (66 loc) · 1.81 KB
/
index.html
File metadata and controls
67 lines (66 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>First Principles Studio</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
brand: {
50: '#f8fafc',
100: '#f1f5f9',
500: '#64748b', // Slate-like brand for "Cognitive" feel
600: '#475569',
900: '#0f172a',
},
accent: {
500: '#3b82f6', // Blue for actions
600: '#2563eb'
}
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
}
}
}
}
</script>
<style>
/* Improved Scrollbar Visibility */
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-track {
background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 5px;
border: 2px solid #f1f5f9;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
body { -webkit-font-smoothing: antialiased; }
</style>
<script type="importmap">
{
"imports": {
"react/": "https://aistudiocdn.com/react@^19.2.2/",
"react": "https://aistudiocdn.com/react@^19.2.2",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.2/",
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.33.0",
"framer-motion": "https://aistudiocdn.com/framer-motion@^11.0.8"
}
}
</script>
</head>
<body class="bg-slate-50 text-slate-900 font-sans overflow-hidden">
<div id="root"></div>
</body>
</html>