mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 05:57:21 -05:00
Merge commit '496274ce4e7a9745d5037a3efef93ff41bfc882a'
This commit is contained in:
@@ -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>You’re 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>
|
||||
|
||||
Reference in New Issue
Block a user