75 lines
2.4 KiB
HTML
Executable File
75 lines
2.4 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Sorcery-Go · Coven Mirror</title>
|
|
<link rel="stylesheet" href="/styles.css" />
|
|
</head>
|
|
<body>
|
|
<header class="topbar">
|
|
<h1>🔮 Sorcery-Go · <span class="muted">Coven Mirror</span></h1>
|
|
<nav>
|
|
<a href="#grimoire">Grimoire</a>
|
|
<a href="#tomb">Tomb</a>
|
|
<a href="#pulse">Pulse</a>
|
|
<a href="#sanctum">Sanctum</a>
|
|
<a href="#portable">Portable Bin</a>
|
|
<a href="#compliance">Compliance</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<section id="grimoire">
|
|
<h2>Grimoire</h2>
|
|
<p>Spell management. Toggle y/n flags via the visual matrix.</p>
|
|
<input type="search" placeholder="Search spells..." id="spell-search" />
|
|
<div id="spell-grid" class="grid">Loading…</div>
|
|
</section>
|
|
|
|
<section id="tomb">
|
|
<h2>Tomb</h2>
|
|
<p>Content-addressable Essence storage. Every Sarcophagus is sealed with a Merkle root.</p>
|
|
<div id="tomb-list" class="grid">Loading…</div>
|
|
</section>
|
|
|
|
<section id="pulse">
|
|
<h2>Pulse</h2>
|
|
<p>Real-time compute across the Coven. Grid-Casting shards stream here.</p>
|
|
<div id="pulse-grid" class="grid">Loading…</div>
|
|
</section>
|
|
|
|
<section id="sanctum">
|
|
<h2>Sanctum</h2>
|
|
<p>Security heatmap. Nodes glow blue when the Warding is strong, red when breached.</p>
|
|
<div id="sanctum-map" class="grid">Loading…</div>
|
|
</section>
|
|
|
|
<section id="portable">
|
|
<h2>Portable Tool Bin</h2>
|
|
<p>Download statically-linked ELFs that run on any Linux kernel.</p>
|
|
<div id="portable-grid" class="grid">Loading…</div>
|
|
</section>
|
|
|
|
<section id="compliance">
|
|
<h2>Compliance Center</h2>
|
|
<p>License heatmap + SBOM export. Choose your Grid Posture:</p>
|
|
<select id="posture">
|
|
<option value="strict_copyleft">Strict Copyleft (FSF)</option>
|
|
<option value="corporate_lite">Corporate-Friendly (MIT/Apache)</option>
|
|
<option value="lawless">Lawless (for the brave)</option>
|
|
</select>
|
|
<button id="generate-sbom">Generate Fleet SBOM</button>
|
|
<pre id="sbom-output"></pre>
|
|
</section>
|
|
</main>
|
|
|
|
<footer class="statusbar">
|
|
<span id="status-text">Coven online · Ley-Lines stable</span>
|
|
<span class="spacer"></span>
|
|
<span id="progress">⚡ idle</span>
|
|
</footer>
|
|
|
|
<script src="/app.js"></script>
|
|
</body>
|
|
</html>
|