-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 1.58 KB
/
index.html
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" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gittu</title>
<!-- Custom Tailwind configuration -->
<script>
tailwind = tailwind || {};
tailwind.config = {
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
textPrimary: "var(--text-primary)",
bgPrimary: "var(--bg-primary)",
},
animation: {
marquee: "marquee 25s linear infinite",
marquee2: "marquee2 25s linear infinite",
},
keyframes: {
marquee: {
"0%": { transform: "translateX(0%)" },
"100%": { transform: "translateX(-100%)" },
},
marquee2: {
"0%": { transform: "translateX(100%)" },
"100%": { transform: "translateX(0%)" },
},
},
},
},
variants: {
extend: {
animation: ["hover", "focus"],
},
},
plugins: [],
};
</script>
</head>
<body class="bg-background text-textPrimary">
<div id="root">
<!-- Your app will be mounted here -->
</div>
<script type="module" src="/src/main.jsx"></script>
<!-- Load Tailwind via the browser script -->
<script src="https://unpkg.com/@tailwindcss/browser@4"></script>
</body>
</html>