-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (93 loc) · 2.97 KB
/
index.html
File metadata and controls
107 lines (93 loc) · 2.97 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes" />
<meta name="theme-color" content="#000000" />
<title>BroCode - Spot Meetup App</title>
<link rel="icon" href="/logo.jpg" type="image/jpeg" />
<link rel="apple-touch-icon" href="/logo.jpg" />
<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=Inter:wght@400;500;600;700&family=Zen+Dots&display=swap"
rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<style>
body {
font-family: 'Inter', sans-serif;
}
html {
scroll-behavior: smooth;
}
/* Custom Scrollbar Styles for a better UX */
/* For Webkit browsers (Chrome, Safari, new Edge) */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #111111;
}
::-webkit-scrollbar-thumb {
background-color: #4a4a4a;
border-radius: 4px;
border: 2px solid #111111;
}
::-webkit-scrollbar-thumb:hover {
background-color: #6a6a6a;
}
/* Star Border Animations */
@keyframes star-movement-bottom {
0% {
transform: translate(0%, 0%);
opacity: 1;
}
100% {
transform: translate(-100%, 0%);
opacity: 0;
}
}
@keyframes star-movement-top {
0% {
transform: translate(0%, 0%);
opacity: 1;
}
100% {
transform: translate(100%, 0%);
opacity: 0;
}
}
.animate-star-movement-bottom {
animation: star-movement-bottom linear infinite alternate;
}
.animate-star-movement-top {
animation: star-movement-top linear infinite alternate;
}
</style>
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC3CGsazjI6MuH2wCBO5m5AADSbahrg8yI&libraries=marker,places"
defer></script>
<script type="importmap">
{
"imports": {
"react-router-dom": "https://aistudiocdn.com/react-router-dom@^7.9.3",
"react/": "https://aistudiocdn.com/react@^19.1.1/",
"react": "https://aistudiocdn.com/react@^19.1.1",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.1.1/",
"lucide-react": "https://aistudiocdn.com/lucide-react@^0.544.0",
"@supabase/supabase-js": "https://aistudiocdn.com/@supabase/supabase-js@^2.58.0",
"framer-motion": "https://aistudiocdn.com/framer-motion@^12.23.22",
"qrcode.react": "https://aistudiocdn.com/qrcode.react@^4.2.0",
"@google/genai": "https://aistudiocdn.com/@google/genai@^0.20.0",
"date-fns": "https://aistudiocdn.com/date-fns@^4.1.0",
"axios": "https://aistudiocdn.com/axios@^1.7.2"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body class="bg-black text-gray-200">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>