mirror of
https://github.com/blackboxprogramming/blackroad.io.git
synced 2026-03-18 02:34:02 -05:00
Added Live Integrations card to dashboard showcasing: - GitHub repos viewer - Live weather data - Crypto prices - Tech news feed Dashboard now has 14 total apps! 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
327 lines
10 KiB
HTML
327 lines
10 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<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='/agents-dynamic.html'" style="border-color: #7700FF;">
|
|
<h2>🤖 Live Agents</h2>
|
|
<span class="status">NEW</span>
|
|
<p>Dynamic agent dashboard</p>
|
|
<ul class="features">
|
|
<li>✓ Real-time spawning</li>
|
|
<li>✓ Auto-refresh</li>
|
|
<li>✓ Quick spawn buttons</li>
|
|
<li>✓ Pack selection</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='/blockchain-dynamic.html'" style="border-color: #0066FF;">
|
|
<h2>⛓️ Live Mining</h2>
|
|
<span class="status">NEW</span>
|
|
<p>Real proof-of-work mining</p>
|
|
<ul class="features">
|
|
<li>✓ SHA-256 mining</li>
|
|
<li>✓ Live hash rate</li>
|
|
<li>✓ Block creation</li>
|
|
<li>✓ TX management</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 class="app-card" onclick="window.location.href='/wallet.html'">
|
|
<h2>🔐 Crypto Wallet</h2>
|
|
<span class="status">LIVE</span>
|
|
<p>Multi-wallet crypto management</p>
|
|
<ul class="features">
|
|
<li>✓ Coinbase integration</li>
|
|
<li>✓ Ledger hardware wallet</li>
|
|
<li>✓ Bitcoin tracking</li>
|
|
<li>✓ Transaction history</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="app-card" onclick="window.location.href='/ledger.html'" style="border-color: #7700FF;">
|
|
<h2>🔐 Ledger Hardware</h2>
|
|
<span class="status">READY</span>
|
|
<p>Secure hardware wallet via USB-C</p>
|
|
<ul class="features">
|
|
<li>✓ WebUSB connection</li>
|
|
<li>✓ Multi-account (BTC/ETH/SOL)</li>
|
|
<li>✓ Transaction signing</li>
|
|
<li>✓ Address verification</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="app-card" onclick="window.location.href='/integrations.html'">
|
|
<h2>🔗 Integrations</h2>
|
|
<span class="status">LIVE</span>
|
|
<p>External services & APIs</p>
|
|
<ul class="features">
|
|
<li>✓ ChatGPT custom GPT</li>
|
|
<li>✓ Discord server</li>
|
|
<li>✓ Google Drive</li>
|
|
<li>✓ Crypto exchanges</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="app-card" onclick="window.location.href='/integrations-live.html'" style="border-color: #FF0066;">
|
|
<h2>🔗 Live Integrations</h2>
|
|
<span class="status">NEW</span>
|
|
<p>Real-time API integrations</p>
|
|
<ul class="features">
|
|
<li>✓ GitHub repos viewer</li>
|
|
<li>✓ Live weather data</li>
|
|
<li>✓ Crypto prices</li>
|
|
<li>✓ Tech news feed</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="app-card" onclick="window.location.href='/terminal.html'" style="border-color: #00ff88;">
|
|
<h2>💻 Terminal</h2>
|
|
<span class="status">LIVE</span>
|
|
<p>Full-featured web terminal</p>
|
|
<ul class="features">
|
|
<li>✓ Command execution</li>
|
|
<li>✓ Agent management</li>
|
|
<li>✓ Blockchain commands</li>
|
|
<li>✓ Real-time API access</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>
|