generated from google-gemini/aistudio-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (79 loc) · 2.75 KB
/
index.html
File metadata and controls
81 lines (79 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NueroHands | Kinetic Synthesis Environment</title>
<!-- Google Consent Mode v2 Initialization -->
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
// Default to denied for EEA/UK regions
gtag('consent', 'default', {
'ad_storage': 'denied',
'ad_user_data': 'denied',
'ad_personalization': 'denied',
'analytics_storage': 'denied',
'functionality_storage': 'granted', // Essential
'security_storage': 'granted', // Essential
'wait_for_update': 500
});
</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8734401947860766"
crossorigin="anonymous"></script>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;500;700&family=IBM+Plex+Mono:wght@400;600&display=swap" rel="stylesheet">
<style>
:root {
--volt: #CCFF00;
--bg: #020202;
--panel: rgba(15, 15, 15, 0.8);
}
body {
margin: 0;
overflow: hidden;
background-color: var(--bg);
font-family: 'Space Grotesk', sans-serif;
color: white;
-webkit-font-smoothing: antialiased;
}
.mono { font-family: 'IBM Plex Mono', monospace; }
canvas { display: block; }
.hud-panel {
background: var(--panel);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.08);
}
.hud-border { border-color: rgba(255, 255, 255, 0.1); }
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
height: 12px;
width: 12px;
border-radius: 2px;
background: var(--volt);
cursor: pointer;
box-shadow: 0 0 10px var(--volt);
}
</style>
<script type="importmap">
{
"imports": {
"react": "https://esm.sh/react@19.0.0",
"react-dom": "https://esm.sh/react-dom@19.0.0",
"react-dom/client": "https://esm.sh/react-dom@19.0.0/client",
"lucide-react": "https://esm.sh/lucide-react@0.460.0",
"three": "https://esm.sh/three@0.170.0",
"@mediapipe/tasks-vision": "https://esm.sh/@mediapipe/tasks-vision@0.10.10",
"@supabase/supabase-js": "https://esm.sh/@supabase/supabase-js@2.45.4",
"react/": "https://esm.sh/react@^19.2.3/",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/"
}
}
</script>
<!-- Entry point for the React application -->
<script type="module" src="/index.tsx"></script>
</head>
<body>
<div id="root"></div>
</body>
</html>