-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.31 KB
/
index.html
File metadata and controls
35 lines (35 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>SPACEABOARD Beta</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
body, html { margin: 0; padding: 0; height: 100%; overflow: hidden; background: #000; touch-action: none; }
#root { height: 100%; width: 100%; }
/* Hide scrollbar */
::-webkit-scrollbar { display: none; }
.custom-scrollbar::-webkit-scrollbar { display: block; width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: #0f172a; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #334155; border-radius: 3px; }
</style>
<script type="importmap">
{
"imports": {
"@react-three/fiber": "https://esm.sh/@react-three/fiber@^9.4.2",
"three": "https://esm.sh/three@^0.182.0",
"@react-three/drei": "https://esm.sh/@react-three/drei@^10.7.7",
"react/": "https://esm.sh/react@^19.2.3/",
"react": "https://esm.sh/react@^19.2.3",
"lucide-react": "https://esm.sh/lucide-react@^0.561.0",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
"@google/genai": "https://esm.sh/@google/genai"
}
}
</script>
</head>
<body>
<div id="root"></div>
</body>
</html>