Files
the-nexus/index.html
Alexander Whitestone 534ae6f004
Some checks failed
CI / validate (pull_request) Failing after 19s
feat: add changelog panel showing recent Nexus updates from git log
Adds a toggleable LOG panel (bottom-left) that fetches changelog.json
and displays recent commits with date, author badge, and message.
Includes CSS styling consistent with the dark space theme.

Fixes #130
2026-03-24 00:08:04 -04:00

59 lines
2.5 KiB
HTML

<!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">
<link rel="manifest" href="/manifest.json">
<link rel="stylesheet" href="style.css">
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@0.183.0/build/three.module.js",
"three/addons/": "https://unpkg.com/three@0.183.0/examples/jsm/"
}
}
</script>
</head>
<body>
<!-- Top Right: Audio Toggle -->
<div id="audio-control" class="hud-controls" style="position: absolute; top: 8px; right: 8px;">
<button id="audio-toggle" class="chat-toggle-btn" aria-label="Toggle ambient sound" style="background-color: var(--color-primary); color: var(--color-bg); padding: 4px 8px; border-radius: 4px; font-size: 12px; cursor: pointer;">
🔊
</button>
<button id="debug-toggle" class="chat-toggle-btn" aria-label="Toggle debug mode" style="background-color: var(--color-secondary); color: var(--color-bg); padding: 4px 8px; border-radius: 4px; font-size: 12px; cursor: pointer;">
🔍
</button>
<button id="changelog-toggle" class="chat-toggle-btn" aria-label="Toggle changelog" style="background-color: var(--color-secondary); color: var(--color-text); padding: 4px 8px; border-radius: 4px; font-size: 12px; cursor: pointer;">
LOG
</button>
<audio id="ambient-sound" src="ambient.mp3" loop></audio>
</div>
<!-- Changelog Panel -->
<div id="changelog-panel" aria-label="Recent Nexus updates">
<div id="changelog-header">
<span id="changelog-title">NEXUS CHANGELOG</span>
<button id="changelog-close" aria-label="Close changelog"></button>
</div>
<ul id="changelog-list"></ul>
</div>
<div id="overview-indicator">
<span>MAP VIEW</span>
<span class="overview-hint">[Tab] to exit</span>
</div>
<script type="module" src="app.js"></script>
</body>
</html>