2026-03-24 03:40:32 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>Timmy's Nexus</title>
|
|
|
|
|
<meta name="description" content="A sovereign 3D world">
|
|
|
|
|
<meta property="og:title" content="Timmy's Nexus">
|
|
|
|
|
<meta property="og:description" content="A sovereign 3D world">
|
|
|
|
|
<meta property="og:image" content="https://example.com/og-image.png">
|
|
|
|
|
<meta property="og:type" content="website">
|
|
|
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
|
|
|
<meta name="twitter:title" content="Timmy's Nexus">
|
|
|
|
|
<meta name="twitter:description" content="A sovereign 3D world">
|
|
|
|
|
<meta name="twitter:image" content="https://example.com/og-image.png">
|
2026-03-24 03:47:01 +00:00
|
|
|
<link rel="manifest" href="/manifest.json">
|
2026-03-23 23:58:06 -04:00
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
|
<script type="importmap">
|
|
|
|
|
{
|
|
|
|
|
"imports": {
|
|
|
|
|
"three": "https://cdn.jsdelivr.net/npm/three@0.183.0/build/three.module.js",
|
|
|
|
|
"three/addons/": "https://cdn.jsdelivr.net/npm/three@0.183.0/examples/jsm/"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
2026-03-24 03:40:32 +00:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2026-03-23 23:58:06 -04:00
|
|
|
<canvas id="nexus-canvas"></canvas>
|
|
|
|
|
|
|
|
|
|
<div id="hud">
|
|
|
|
|
<div id="hud-title">THE NEXUS</div>
|
|
|
|
|
</div>
|
2026-03-24 03:36:14 +00:00
|
|
|
|
2026-03-24 03:40:32 +00:00
|
|
|
<!-- Top Right: Audio Toggle -->
|
2026-03-23 23:58:06 -04:00
|
|
|
<div id="audio-control" class="hud-controls">
|
|
|
|
|
<button id="audio-toggle" class="chat-toggle-btn" aria-label="Toggle ambient sound">
|
2026-03-24 03:40:32 +00:00
|
|
|
🔊
|
|
|
|
|
</button>
|
|
|
|
|
<audio id="ambient-sound" src="ambient.mp3" loop></audio>
|
|
|
|
|
</div>
|
2026-03-23 16:04:24 +00:00
|
|
|
|
2026-03-23 23:58:06 -04:00
|
|
|
<script type="module" src="app.js"></script>
|
2026-03-24 03:40:32 +00:00
|
|
|
</body>
|
|
|
|
|
</html>
|