-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (51 loc) · 1.83 KB
/
index.html
File metadata and controls
52 lines (51 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Editorial AI</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=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Space+Grotesk:wght@300;400;500;600&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
<style>
body {
background-color: #F7F5F0; /* Warm off-white, no blue/purple cool tones */
color: #292524; /* Stone 800 */
}
/* Font pairings: Cormorant (Serif headers), Space Grotesk (UI Sans), Space Mono (Editor) */
.font-serif-display { font-family: 'Cormorant Garamond', serif; }
.font-sans-tech { font-family: 'Space Grotesk', sans-serif; }
.font-mono-edit { font-family: 'Space Mono', monospace; }
/* Custom scrollbar for a brutalist/raw feel */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #E7E5E4;
}
::-webkit-scrollbar-thumb {
background: #57534E;
border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
background: #292524;
}
</style>
<script type="importmap">
{
"imports": {
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.1/",
"react": "https://aistudiocdn.com/react@^19.2.1",
"react/": "https://aistudiocdn.com/react@^19.2.1/",
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.31.0"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>