Merge commit '496274ce4e7a9745d5037a3efef93ff41bfc882a'

This commit is contained in:
Alexa Amundson
2025-11-20 17:45:20 -06:00
4 changed files with 865 additions and 158 deletions

View File

@@ -249,6 +249,42 @@
text-align: center;
color: var(--muted);
font-size: 13px;
<meta charset="UTF-8" />
<title>BlackRoad OS</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
body {
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: #050510;
color: #f5f5f5;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.desktop {
border-radius: 16px;
padding: 24px 32px;
border: 1px solid #333;
box-shadow: 0 0 40px rgba(0,0,0,0.6);
background: radial-gradient(circle at top left, #3f89ff55, #050510 55%);
text-align: center;
max-width: 640px;
width: 100%;
}
h1 {
margin-bottom: 8px;
font-size: 1.8rem;
}
p {
margin: 4px 0;
opacity: 0.85;
}
.tag {
margin-top: 16px;
font-size: 0.85rem;
opacity: 0.7;
}
</style>
</head>
@@ -337,6 +373,11 @@
<footer>
This placeholder keeps the domain alive while the full BlackRoad experience is wired up.
</footer>
<div class="desktop">
<h1>BlackRoad OS</h1>
<p>Primary app endpoint is online.</p>
<p>Youre looking at the app behind <strong>app.blackroad.systems</strong>.</p>
<p class="tag">We can wire in agents, API, console, and more after this.</p>
</div>
</body>
</html>