Files
blackroad-io-site/index-old.html
Alexa Louise 5f166457dc Complete BlackRoad OS app with auth and payments live
- 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>
2025-12-13 13:30:52 -06:00

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 &amp; Terminal</h2>
<p>
Explore our upcoming AI chat interface and terminal environment.
</p>
<a href="chat.html">Enter Chat &amp; 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>&copy; 2024 BlackRoad Inc.</p>
</footer>
</body>
</html>