Files
blackroad-io-site/dashboard.html
2025-12-02 21:07:16 -06:00

81 lines
2.6 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dashboard · BlackRoad</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Operations Dashboard</h1>
<nav>
<a href="index.html">Home</a>
<a href="status.html">Status</a>
<a href="login.html">Login</a>
</nav>
</header>
<main>
<section class="intro">
<p>
Quick view of BlackRoad properties and whether they are reachable. Update this
page manually until automated checks are wired in.
</p>
</section>
<section class="grid">
<article class="status-card">
<header>
<h2>Lucidia</h2>
<span class="badge badge-ok">Online</span>
</header>
<p>Public AI chat and terminal experience.</p>
<a href="https://blackroad.io/lucidia/">Open Lucidia</a>
</article>
<article class="status-card">
<header>
<h2>Guardian</h2>
<span class="badge badge-ok">Online</span>
</header>
<p>Security gateway and shielding layer.</p>
<a href="https://blackroad.io/guardian/">Open Guardian</a>
</article>
<article class="status-card">
<header>
<h2>Codex</h2>
<span class="badge badge-ok">Online</span>
</header>
<p>Documentation, memory, and reference stack.</p>
<a href="https://blackroad.io/codex/">Open Codex</a>
</article>
<article class="status-card">
<header>
<h2>Login</h2>
<span class="badge badge-ok">Online</span>
</header>
<p>Development login surface for authenticated flows.</p>
<a href="https://blackroad.io/login/">Open Login</a>
</article>
<article class="status-card">
<header>
<h2>Main Site</h2>
<span class="badge badge-ok">Online</span>
</header>
<p>BlackRoad.io landing and navigation.</p>
<a href="https://blackroad.io/">Open Main Site</a>
</article>
<article class="status-card">
<header>
<h2>Dashboard</h2>
<span class="badge badge-down">Manual</span>
</header>
<p>Currently updated by hand. Automation coming soon.</p>
<a href="https://blackroad.io/dashboard.html">Refresh Dashboard</a>
</article>
</section>
</main>
<footer>
<p>&copy; 2024 BlackRoad Inc.</p>
</footer>
</body>
</html>