-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (67 loc) · 2.56 KB
/
index.html
File metadata and controls
74 lines (67 loc) · 2.56 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CookieCut Builder</title>
<!-- Configure Tailwind (must run before the CDN script loads) -->
<script>
window.tailwind = window.tailwind || {};
window.tailwind.config = {
darkMode: "class",
theme: {
extend: {
fontFamily: {
sans: ["Lexend", "Arial", "sans-serif"],
display: ['"Baloo 2"', "cursive"],
note: ["Kalam", "cursive"],
serif: ["Merriweather", "serif"],
},
animation: {
"fade-in-down": "fadeInDown 0.3s ease-out forwards",
"fade-in": "fadeIn 0.3s ease-out forwards",
},
keyframes: {
fadeInDown: {
"0%": { opacity: 0, transform: "translateY(-10px)" },
"100%": { opacity: 1, transform: "translateY(0)" },
},
fadeIn: {
"0%": { opacity: 0 },
"100%": { opacity: 1 },
},
},
},
},
};
</script>
<!-- Tailwind CSS CDN (Play CDN supports dynamic class scanning) -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Google Fonts: Baloo 2, Kalam, Lexend, Merriweather -->
<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=Baloo+2:wght@700&family=Kalam:wght@400;700&family=Lexend:wght@400;700&family=Merriweather:wght@700&display=swap"
rel="stylesheet"
/>
<!-- Material Icons -->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<!-- Custom Styles -->
<link rel="stylesheet" href="styles.css" />
</head>
<body class="bg-gray-50 dark:bg-gray-900 font-sans overflow-x-hidden">
<!-- Main app layout container.
Builder panel and preview panel partials are injected here by app.js. -->
<div class="max-w-3xl mx-auto p-6" id="app-container"></div>
<!--
Modals (toast, text, icon key, settings) and inline editor elements
(floating add button, inline preview) are injected directly into body
by app.js to ensure correct stacking context for fixed/absolute elements.
-->
<!-- Entry point: loads partials, wires DOM, and initialises the app -->
<script type="module" src="app.js"></script>
</body>
</html>