Initial Commit - BlackRoad OS Complete Domain Architecture 🌐
Generated and deployed 15 unique domain pages: Core Platforms: ✅ blackroad.io - Main homepage (deployed) ✅ earth.blackroad.io - Earth simulation (deployed) ✅ home.blackroad.io - User dashboard (deployed) ✅ demo.blackroad.io - Demo showcase (deployed) Creator & Studio: - creator.blackroad.io - creator-studio.blackroad.io - studio.blackroad.io Business Suite: - finance.blackroad.io - legal.blackroad.io - education.blackroad.io Research & Development: - research-lab.blackroad.io - ideas.blackroad.io - devops.blackroad.io Tools: - generate_domains.py - HTML generator - deploy_domains.py - Automated deployment - DOMAIN_MAP.md - Complete domain mapping - README.md - Documentation Stats: - 15 HTML pages generated - 4 domains deployed successfully - ~2,250 lines of generated code - 20+ total domains mapped © 2025 BlackRoad OS, Inc. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
288
blackroad-systems/index.html
Normal file
288
blackroad-systems/index.html
Normal file
@@ -0,0 +1,288 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>BlackRoad Systems | Infrastructure Services</title>
|
||||
<meta name="description" content="BlackRoad Systems - Enterprise infrastructure services and system operations.">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=DM+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
:root {
|
||||
/* Surfaces */
|
||||
--bg: #000000;
|
||||
--surface: #050505;
|
||||
--surface-2: #0a0a0a;
|
||||
--border: #262626;
|
||||
|
||||
/* Text */
|
||||
--text: #f9fafb;
|
||||
--text-muted: #a3a3a3;
|
||||
|
||||
/* Brand palette */
|
||||
--br-sunrise-orange: #ff9d00;
|
||||
--br-warm-orange: #ff6b00;
|
||||
--br-hot-pink: #ff0066;
|
||||
--br-electric-magenta: #ff006b;
|
||||
--br-deep-magenta: #d600aa;
|
||||
--br-vivid-purple: #7700ff;
|
||||
--br-cyber-blue: #0066ff;
|
||||
|
||||
/* Legacy aliases */
|
||||
--accent: var(--br-hot-pink);
|
||||
--accent2: var(--br-vivid-purple);
|
||||
--text-secondary: var(--text-muted);
|
||||
}
|
||||
body {
|
||||
font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
min-height: 100vh;
|
||||
}
|
||||
.header {
|
||||
padding: 1.5rem 2rem;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
.logo {
|
||||
font-size: 1.5rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
.logo span { color: var(--accent); }
|
||||
.nav a {
|
||||
color: var(--text-secondary);
|
||||
text-decoration: none;
|
||||
margin-left: 2rem;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
.nav a:hover { color: var(--accent); }
|
||||
.hero {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
padding: 5rem 2rem;
|
||||
text-align: center;
|
||||
}
|
||||
h1 {
|
||||
font-size: 3rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
h1 span {
|
||||
background: linear-gradient(120deg, var(--br-sunrise-orange), var(--br-hot-pink), var(--br-vivid-purple));
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
.tagline {
|
||||
font-size: 1.25rem;
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
.services {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 1.5rem;
|
||||
max-width: 1000px;
|
||||
margin: 0 auto;
|
||||
padding: 0 2rem 4rem;
|
||||
}
|
||||
.service {
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 12px;
|
||||
padding: 2rem;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
.service:hover {
|
||||
border-color: var(--accent);
|
||||
transform: translateY(-4px);
|
||||
}
|
||||
.service-icon {
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.service h3 {
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
.service p {
|
||||
font-size: 0.9rem;
|
||||
color: var(--text-secondary);
|
||||
line-height: 1.6;
|
||||
}
|
||||
.status {
|
||||
max-width: 800px;
|
||||
margin: 0 auto 4rem;
|
||||
padding: 0 2rem;
|
||||
}
|
||||
.status-card {
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 12px;
|
||||
padding: 1.5rem;
|
||||
}
|
||||
.status-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.status-title {
|
||||
font-weight: 600;
|
||||
}
|
||||
.status-badge {
|
||||
background: #00D26A;
|
||||
color: #000;
|
||||
padding: 0.25rem 0.75rem;
|
||||
border-radius: 20px;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
.status-items {
|
||||
display: grid;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
.status-item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 0.75rem;
|
||||
background: var(--bg);
|
||||
border-radius: 8px;
|
||||
}
|
||||
.status-dot {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 50%;
|
||||
background: #00D26A;
|
||||
margin-right: 0.5rem;
|
||||
display: inline-block;
|
||||
}
|
||||
.cta {
|
||||
text-align: center;
|
||||
padding: 4rem 2rem;
|
||||
background: var(--surface);
|
||||
}
|
||||
.cta h2 {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.cta p {
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
.btn {
|
||||
display: inline-flex;
|
||||
padding: 0.9rem 2rem;
|
||||
background: linear-gradient(120deg, var(--br-sunrise-orange), var(--br-hot-pink), var(--br-vivid-purple));
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
border-radius: 8px;
|
||||
font-weight: 600;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.btn:hover {
|
||||
box-shadow: 0 0 24px rgba(255, 0, 102, 0.45);
|
||||
}
|
||||
.footer {
|
||||
padding: 2rem;
|
||||
text-align: center;
|
||||
border-top: 1px solid var(--border);
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
.footer a { color: var(--accent); text-decoration: none; }
|
||||
@media (max-width: 768px) {
|
||||
h1 { font-size: 2.5rem; }
|
||||
.nav { display: none; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header class="header">
|
||||
<div class="logo"><span>Black</span>Road Systems</div>
|
||||
<nav class="nav">
|
||||
<a href="https://blackroad.io">Platform</a>
|
||||
<a href="https://docs.blackroad.io">Docs</a>
|
||||
<a href="#status">Status</a>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<section class="hero">
|
||||
<h1>Infrastructure <span>Systems</span></h1>
|
||||
<p class="tagline">Enterprise-grade infrastructure powering BlackRoad OS</p>
|
||||
</section>
|
||||
|
||||
<section class="services">
|
||||
<div class="service">
|
||||
<div class="service-icon">🖥️</div>
|
||||
<h3>Core Services</h3>
|
||||
<p>Primary API endpoints and agent orchestration infrastructure.</p>
|
||||
</div>
|
||||
<div class="service">
|
||||
<div class="service-icon">🌐</div>
|
||||
<h3>Mesh Network</h3>
|
||||
<p>Real-time synchronization and peer-to-peer communication.</p>
|
||||
</div>
|
||||
<div class="service">
|
||||
<div class="service-icon">⛓️</div>
|
||||
<h3>Ledger Services</h3>
|
||||
<p>PS-SHA∞ blockchain and distributed ledger operations.</p>
|
||||
</div>
|
||||
<div class="service">
|
||||
<div class="service-icon">🔐</div>
|
||||
<h3>Auth Services</h3>
|
||||
<p>Identity management and access control systems.</p>
|
||||
</div>
|
||||
<div class="service">
|
||||
<div class="service-icon">📊</div>
|
||||
<h3>Analytics</h3>
|
||||
<p>System monitoring, metrics, and performance analytics.</p>
|
||||
</div>
|
||||
<div class="service">
|
||||
<div class="service-icon">🛡️</div>
|
||||
<h3>Security</h3>
|
||||
<p>Post-quantum security and threat detection systems.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="status" id="status">
|
||||
<div class="status-card">
|
||||
<div class="status-header">
|
||||
<span class="status-title">System Status</span>
|
||||
<span class="status-badge">All Systems Operational</span>
|
||||
</div>
|
||||
<div class="status-items">
|
||||
<div class="status-item">
|
||||
<span><span class="status-dot"></span>Core API</span>
|
||||
<span style="color: var(--text-secondary);">Operational</span>
|
||||
</div>
|
||||
<div class="status-item">
|
||||
<span><span class="status-dot"></span>Mesh Gateway</span>
|
||||
<span style="color: var(--text-secondary);">Operational</span>
|
||||
</div>
|
||||
<div class="status-item">
|
||||
<span><span class="status-dot"></span>Ledger Nodes</span>
|
||||
<span style="color: var(--text-secondary);">Operational</span>
|
||||
</div>
|
||||
<div class="status-item">
|
||||
<span><span class="status-dot"></span>Auth Services</span>
|
||||
<span style="color: var(--text-secondary);">Operational</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="cta">
|
||||
<h2>Build on BlackRoad Systems</h2>
|
||||
<p>Access enterprise infrastructure for your autonomous agents.</p>
|
||||
<a href="https://blackroad.io" class="btn">Get Started</a>
|
||||
</section>
|
||||
|
||||
<footer class="footer">
|
||||
<a href="https://blackroadinc.us">BlackRoad Inc.</a> © 2025
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user