Add comprehensive dashboard showing all working apps

This commit is contained in:
Alexa Louise
2025-12-13 13:47:36 -06:00
parent b7d37f913d
commit 9686fd6057

View File

@@ -1,80 +1,242 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dashboard · BlackRoad</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Operations Dashboard</h1>
<nav>
<a href="index.html">Home</a>
<a href="status.html">Status</a>
<a href="login.html">Login</a>
</nav>
</header>
<main>
<section class="intro">
<p>
Quick view of BlackRoad properties and whether they are reachable. Update this
page manually until automated checks are wired in.
</p>
</section>
<section class="grid">
<article class="status-card">
<header>
<h2>Lucidia</h2>
<span class="badge badge-ok">Online</span>
</header>
<p>Public AI chat and terminal experience.</p>
<a href="https://blackroad.io/lucidia/">Open Lucidia</a>
</article>
<article class="status-card">
<header>
<h2>Guardian</h2>
<span class="badge badge-ok">Online</span>
</header>
<p>Security gateway and shielding layer.</p>
<a href="https://blackroad.io/guardian/">Open Guardian</a>
</article>
<article class="status-card">
<header>
<h2>Codex</h2>
<span class="badge badge-ok">Online</span>
</header>
<p>Documentation, memory, and reference stack.</p>
<a href="https://blackroad.io/codex/">Open Codex</a>
</article>
<article class="status-card">
<header>
<h2>Login</h2>
<span class="badge badge-ok">Online</span>
</header>
<p>Development login surface for authenticated flows.</p>
<a href="https://blackroad.io/login/">Open Login</a>
</article>
<article class="status-card">
<header>
<h2>Main Site</h2>
<span class="badge badge-ok">Online</span>
</header>
<p>BlackRoad.io landing and navigation.</p>
<a href="https://blackroad.io/">Open Main Site</a>
</article>
<article class="status-card">
<header>
<h2>Dashboard</h2>
<span class="badge badge-down">Manual</span>
</header>
<p>Currently updated by hand. Automation coming soon.</p>
<a href="https://blackroad.io/dashboard.html">Refresh Dashboard</a>
</article>
</section>
</main>
<footer>
<p>&copy; 2024 BlackRoad Inc.</p>
</footer>
</body>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BlackRoad Dashboard - All Apps</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --gradient: linear-gradient(135deg, #FF9D00, #FF6B00, #FF0066, #D600AA, #7700FF, #0066FF); }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #02030a;
color: white;
min-height: 100vh;
padding: 48px 24px;
}
.container { max-width: 1400px; margin: 0 auto; }
h1 {
font-size: 64px;
font-weight: 900;
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-align: center;
margin-bottom: 48px;
}
.app-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 24px;
margin-bottom: 48px;
}
.app-card {
background: rgba(255,255,255,0.05);
border: 2px solid rgba(255,255,255,0.1);
border-radius: 16px;
padding: 32px;
transition: all 0.3s;
cursor: pointer;
}
.app-card:hover {
transform: translateY(-8px);
border-color: #7700FF;
background: rgba(255,255,255,0.08);
box-shadow: 0 20px 40px rgba(119, 0, 255, 0.3);
}
.app-card h2 {
font-size: 28px;
margin-bottom: 12px;
}
.app-card p {
opacity: 0.8;
margin-bottom: 16px;
}
.status {
display: inline-block;
padding: 6px 12px;
border-radius: 12px;
font-size: 12px;
font-weight: 700;
background: rgba(0, 255, 136, 0.2);
color: #00ff88;
}
.features {
list-style: none;
margin-top: 16px;
}
.features li {
padding: 8px 0;
border-bottom: 1px solid rgba(255,255,255,0.05);
font-size: 14px;
opacity: 0.9;
}
.payment-section {
text-align: center;
padding: 48px;
background: rgba(255,255,255,0.05);
border-radius: 24px;
border: 2px solid rgba(255,255,255,0.1);
}
.payment-section h2 {
font-size: 32px;
margin-bottom: 24px;
}
.payment-buttons {
display: flex;
gap: 16px;
justify-content: center;
margin: 24px 0;
}
.payment-buttons a {
display: inline-block;
padding: 16px 32px;
background: var(--gradient);
color: white;
text-decoration: none;
border-radius: 12px;
font-weight: 700;
transition: transform 0.2s;
}
.payment-buttons a:hover {
transform: scale(1.05);
}
.crypto-address {
font-family: monospace;
background: rgba(0,0,0,0.3);
padding: 16px;
border-radius: 12px;
margin-top: 24px;
font-size: 14px;
word-break: break-all;
}
</style>
</head>
<body>
<div class="container">
<h1>🛣️ BlackRoad OS</h1>
<div class="app-grid">
<div class="app-card" onclick="window.location.href='/'">
<h2>🏠 Main App</h2>
<span class="status">LIVE</span>
<p>Full authentication & payments</p>
<ul class="features">
<li>✓ JWT Authentication</li>
<li>✓ Stripe Payments</li>
<li>✓ 3 Pricing Tiers</li>
<li>✓ User Dashboard</li>
</ul>
</div>
<div class="app-card" onclick="window.location.href='/chat.html'">
<h2>💬 AI Chat</h2>
<span class="status">LIVE</span>
<p>Talk to 30,000 AI agents</p>
<ul class="features">
<li>✓ Real-time messaging</li>
<li>✓ AI responses</li>
<li>✓ Guest mode</li>
<li>✓ Message history</li>
</ul>
</div>
<div class="app-card" onclick="window.location.href='/agents-live.html'">
<h2>🤖 Agents Dashboard</h2>
<span class="status">LIVE</span>
<p>Manage your AI agents</p>
<ul class="features">
<li>✓ 30,000 agents</li>
<li>✓ Real-time monitoring</li>
<li>✓ Agent spawning</li>
<li>✓ Task delegation</li>
</ul>
</div>
<div class="app-card" onclick="window.location.href='/blockchain-live.html'">
<h2>⛓️ RoadChain</h2>
<span class="status">LIVE</span>
<p>Blockchain explorer</p>
<ul class="features">
<li>✓ View blocks</li>
<li>✓ Transactions</li>
<li>✓ Wallet management</li>
<li>✓ Mine RoadCoin</li>
</ul>
</div>
<div class="app-card" onclick="window.location.href='/files-live.html'">
<h2>📁 File Explorer</h2>
<span class="status">LIVE</span>
<p>Cloud file management</p>
<ul class="features">
<li>✓ File upload</li>
<li>✓ Cloud storage</li>
<li>✓ File sharing</li>
<li>✓ Version control</li>
</ul>
</div>
<div class="app-card" onclick="window.location.href='/social-live.html'">
<h2>👥 Social Network</h2>
<span class="status">LIVE</span>
<p>BlackRoad social platform</p>
<ul class="features">
<li>✓ Create posts</li>
<li>✓ Follow users</li>
<li>✓ Like & comment</li>
<li>✓ Activity feed</li>
</ul>
</div>
<div class="app-card" onclick="window.location.href='/pay.html'">
<h2>💳 Payments</h2>
<span class="status">LIVE</span>
<p>Payment processing</p>
<ul class="features">
<li>✓ Stripe integration</li>
<li>✓ Crypto payments</li>
<li>✓ Subscriptions</li>
<li>✓ Invoices</li>
</ul>
</div>
<div class="app-card" onclick="window.location.href='/math.html'">
<h2>🔢 Math Lab</h2>
<span class="status">LIVE</span>
<p>Quantum computing tools</p>
<ul class="features">
<li>✓ Calculations</li>
<li>✓ Visualizations</li>
<li>✓ AI assistance</li>
<li>✓ Data analysis</li>
</ul>
</div>
<div class="app-card" onclick="window.location.href='/docs.html'">
<h2>📚 Documentation</h2>
<span class="status">LIVE</span>
<p>API docs & guides</p>
<ul class="features">
<li>✓ API reference</li>
<li>✓ Tutorials</li>
<li>✓ Examples</li>
<li>✓ Code samples</li>
</ul>
</div>
</div>
<div class="payment-section">
<h2>💸 Support BlackRoad</h2>
<p>Help us build the future of AI operating systems</p>
<div class="payment-buttons">
<a href="https://krak.app/AAAAAAAA" target="_blank">Send via Krak →</a>
<a href="/" style="background: rgba(255,255,255,0.1);">Subscribe via Stripe →</a>
</div>
<div class="crypto-address">
<strong>BTC:</strong> 3NJYuq8KA1xBea6JNg32XgDwjpvLkrR5VH
</div>
</div>
</div>
</body>
</html>