-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (52 loc) · 2.11 KB
/
index.html
File metadata and controls
53 lines (52 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OG Image Studio</title>
<script src="https://cdn.tailwindcss.com?plugins=forms,typography,container-queries"></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=Space+Grotesk:wght@300;400;500;600;700&family=Bricolage+Grotesque:wght@400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700;900&family=Montserrat:wght@400;700;900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1" rel="stylesheet" />
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: "#ff6b6b",
accent: "#ffd93d",
ink: {
light: "#1e293b",
dark: "#0f172a"
},
offwhite: "#fcfcfc"
},
fontFamily: {
display: ["Bricolage Grotesque", "sans-serif"],
body: ["Space Grotesk", "sans-serif"],
serif: ["Lora", "serif"],
sans: ["Inter", "sans-serif"]
}
}
}
};
</script>
<script type="importmap">
{
"imports": {
"react": "https://esm.sh/react@^19.2.4",
"react-dom/": "https://esm.sh/react-dom@^19.2.4/",
"react/": "https://esm.sh/react@^19.2.4/",
"@google/genai": "https://esm.sh/@google/genai@^1.41.0",
"html-to-image": "https://esm.sh/html-to-image@^1.11.13"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body class="bg-gray-50 font-sans text-gray-900">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>