Deploy static site for blackroad.io

This commit is contained in:
Your Name
2025-10-24 22:05:56 +00:00
commit b7d86e1aa3
9 changed files with 325 additions and 0 deletions

37
index.html Normal file
View File

@@ -0,0 +1,37 @@
<!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>
</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>
</div>
</main>
<footer>
<p>&copy; 2024 BlackRoad Inc.</p>
</footer>
</body>
</html>