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"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard · BlackRoad</title> <title>BlackRoad Dashboard - All Apps</title>
<link rel="stylesheet" href="style.css" /> <style>
</head> * { margin: 0; padding: 0; box-sizing: border-box; }
<body> :root { --gradient: linear-gradient(135deg, #FF9D00, #FF6B00, #FF0066, #D600AA, #7700FF, #0066FF); }
<header> body {
<h1>Operations Dashboard</h1> font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
<nav> background: #02030a;
<a href="index.html">Home</a> color: white;
<a href="status.html">Status</a> min-height: 100vh;
<a href="login.html">Login</a> padding: 48px 24px;
</nav> }
</header> .container { max-width: 1400px; margin: 0 auto; }
<main> h1 {
<section class="intro"> font-size: 64px;
<p> font-weight: 900;
Quick view of BlackRoad properties and whether they are reachable. Update this background: var(--gradient);
page manually until automated checks are wired in. -webkit-background-clip: text;
</p> -webkit-text-fill-color: transparent;
</section> text-align: center;
<section class="grid"> margin-bottom: 48px;
<article class="status-card"> }
<header> .app-grid {
<h2>Lucidia</h2> display: grid;
<span class="badge badge-ok">Online</span> grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
</header> gap: 24px;
<p>Public AI chat and terminal experience.</p> margin-bottom: 48px;
<a href="https://blackroad.io/lucidia/">Open Lucidia</a> }
</article> .app-card {
<article class="status-card"> background: rgba(255,255,255,0.05);
<header> border: 2px solid rgba(255,255,255,0.1);
<h2>Guardian</h2> border-radius: 16px;
<span class="badge badge-ok">Online</span> padding: 32px;
</header> transition: all 0.3s;
<p>Security gateway and shielding layer.</p> cursor: pointer;
<a href="https://blackroad.io/guardian/">Open Guardian</a> }
</article> .app-card:hover {
<article class="status-card"> transform: translateY(-8px);
<header> border-color: #7700FF;
<h2>Codex</h2> background: rgba(255,255,255,0.08);
<span class="badge badge-ok">Online</span> box-shadow: 0 20px 40px rgba(119, 0, 255, 0.3);
</header> }
<p>Documentation, memory, and reference stack.</p> .app-card h2 {
<a href="https://blackroad.io/codex/">Open Codex</a> font-size: 28px;
</article> margin-bottom: 12px;
<article class="status-card"> }
<header> .app-card p {
<h2>Login</h2> opacity: 0.8;
<span class="badge badge-ok">Online</span> margin-bottom: 16px;
</header> }
<p>Development login surface for authenticated flows.</p> .status {
<a href="https://blackroad.io/login/">Open Login</a> display: inline-block;
</article> padding: 6px 12px;
<article class="status-card"> border-radius: 12px;
<header> font-size: 12px;
<h2>Main Site</h2> font-weight: 700;
<span class="badge badge-ok">Online</span> background: rgba(0, 255, 136, 0.2);
</header> color: #00ff88;
<p>BlackRoad.io landing and navigation.</p> }
<a href="https://blackroad.io/">Open Main Site</a> .features {
</article> list-style: none;
<article class="status-card"> margin-top: 16px;
<header> }
<h2>Dashboard</h2> .features li {
<span class="badge badge-down">Manual</span> padding: 8px 0;
</header> border-bottom: 1px solid rgba(255,255,255,0.05);
<p>Currently updated by hand. Automation coming soon.</p> font-size: 14px;
<a href="https://blackroad.io/dashboard.html">Refresh Dashboard</a> opacity: 0.9;
</article> }
</section> .payment-section {
</main> text-align: center;
<footer> padding: 48px;
<p>&copy; 2024 BlackRoad Inc.</p> background: rgba(255,255,255,0.05);
</footer> border-radius: 24px;
</body> 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> </html>