mirror of
https://github.com/blackboxprogramming/blackroad.io.git
synced 2026-03-18 06:34:01 -05:00
- Full authentication flow (login/register) - Backend integration with core.blackroad.systems - Stripe payment processing - 3 pricing tiers (Starter/Pro/Enterprise) - Responsive gradient UI - Session management - Production deployment to https://blackroad.io 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
44 lines
1.3 KiB
HTML
44 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>BlackRoad · Lucidia</title>
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>BlackRoad · Lucidia</h1>
|
|
<nav>
|
|
<a href="login.html">Login</a>
|
|
<a href="status.html">Status</a>
|
|
<a href="dashboard.html">Dashboard</a>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
<div class="card-container">
|
|
<section class="card">
|
|
<h2>Lucidia Public-facing AI Chat & Terminal</h2>
|
|
<p>
|
|
Explore our upcoming AI chat interface and terminal environment.
|
|
</p>
|
|
<a href="chat.html">Enter Chat & Terminal</a>
|
|
</section>
|
|
<section class="card">
|
|
<h2>Composer Playground</h2>
|
|
<p>Create and experiment with musical ideas in the browser.</p>
|
|
<a href="composer.html">Launch Composer</a>
|
|
</section>
|
|
<section class="card">
|
|
<h2>Operations Dashboard</h2>
|
|
<p>Check the status of BlackRoad properties at a glance.</p>
|
|
<a href="dashboard.html">View Dashboard</a>
|
|
</section>
|
|
</div>
|
|
</main>
|
|
<footer>
|
|
<p>© 2024 BlackRoad Inc.</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|