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>
273 lines
7.5 KiB
HTML
273 lines
7.5 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 OS | Autonomous Agent Infrastructure</title>
|
|
<meta name="description" content="BlackRoad OS - The autonomous agent operating system powering decentralized intelligence.">
|
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>⚡</text></svg>">
|
|
<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-sunrise-orange);
|
|
--accent2: var(--br-warm-orange);
|
|
--accent3: var(--br-hot-pink);
|
|
--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;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.hero {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
padding: 2rem;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -50%;
|
|
left: -50%;
|
|
width: 200%;
|
|
height: 200%;
|
|
background: radial-gradient(circle at center, rgba(255,157,0,0.08) 0%, transparent 50%);
|
|
animation: pulse 8s ease-in-out infinite;
|
|
}
|
|
@keyframes pulse {
|
|
0%, 100% { transform: scale(1); opacity: 0.5; }
|
|
50% { transform: scale(1.1); opacity: 0.8; }
|
|
}
|
|
.logo {
|
|
font-size: 4rem;
|
|
font-weight: 800;
|
|
margin-bottom: 1rem;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
.logo span { color: var(--accent); }
|
|
.tagline {
|
|
font-size: 1.5rem;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 2rem;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
.features {
|
|
display: flex;
|
|
gap: 2rem;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
margin-bottom: 3rem;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
.feature {
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
padding: 1.5rem;
|
|
width: 200px;
|
|
text-align: center;
|
|
transition: all 0.3s;
|
|
}
|
|
.feature:hover {
|
|
border-color: var(--accent);
|
|
transform: translateY(-4px);
|
|
}
|
|
.feature-icon {
|
|
font-size: 2rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.feature-title {
|
|
font-weight: 600;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
.feature-desc {
|
|
font-size: 0.85rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
.cta-group {
|
|
display: flex;
|
|
gap: 1rem;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
.btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.8rem 1.5rem;
|
|
border-radius: 8px;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
transition: all 0.2s;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
.btn-primary {
|
|
background: linear-gradient(120deg, var(--br-sunrise-orange), var(--br-hot-pink), var(--br-vivid-purple));
|
|
color: #fff;
|
|
}
|
|
.btn-primary:hover {
|
|
transform: scale(1.05);
|
|
box-shadow: 0 0 24px rgba(255, 0, 102, 0.45);
|
|
}
|
|
.btn-secondary {
|
|
background: transparent;
|
|
color: var(--text);
|
|
border: 1px solid var(--border);
|
|
}
|
|
.btn-secondary:hover {
|
|
border-color: var(--accent);
|
|
}
|
|
.stats {
|
|
display: flex;
|
|
gap: 3rem;
|
|
margin-top: 3rem;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
.stat {
|
|
text-align: center;
|
|
}
|
|
.stat-value {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
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;
|
|
}
|
|
.stat-label {
|
|
font-size: 0.85rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
.footer {
|
|
padding: 1.5rem;
|
|
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;
|
|
}
|
|
.nav-links {
|
|
display: flex;
|
|
gap: 2rem;
|
|
margin-bottom: 3rem;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
.nav-links a {
|
|
color: var(--text-secondary);
|
|
text-decoration: none;
|
|
font-size: 0.9rem;
|
|
transition: color 0.2s;
|
|
}
|
|
.nav-links a:hover { color: var(--accent); }
|
|
@media (max-width: 768px) {
|
|
.logo { font-size: 3rem; }
|
|
.tagline { font-size: 1.2rem; }
|
|
.features { gap: 1rem; }
|
|
.feature { width: 150px; padding: 1rem; }
|
|
.stats { gap: 1.5rem; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section class="hero">
|
|
<nav class="nav-links">
|
|
<a href="https://docs.blackroad.io">Docs</a>
|
|
<a href="https://demo.blackroad.io">Demo</a>
|
|
<a href="https://app.blackroad.io">Console</a>
|
|
<a href="https://brand.blackroad.io">Brand</a>
|
|
</nav>
|
|
|
|
<h1 class="logo"><span>Black</span>Road</h1>
|
|
<p class="tagline">Autonomous Agent Operating System</p>
|
|
|
|
<div class="features">
|
|
<div class="feature">
|
|
<div class="feature-icon">🤖</div>
|
|
<div class="feature-title">Agents</div>
|
|
<div class="feature-desc">Autonomous intelligence</div>
|
|
</div>
|
|
<div class="feature">
|
|
<div class="feature-icon">🧠</div>
|
|
<div class="feature-title">Mind API</div>
|
|
<div class="feature-desc">Five cognitive pillars</div>
|
|
</div>
|
|
<div class="feature">
|
|
<div class="feature-icon">⛓️</div>
|
|
<div class="feature-title">PS-SHA∞</div>
|
|
<div class="feature-desc">Infinite blockchain</div>
|
|
</div>
|
|
<div class="feature">
|
|
<div class="feature-icon">🌐</div>
|
|
<div class="feature-title">Mesh</div>
|
|
<div class="feature-desc">Real-time sync</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="cta-group">
|
|
<a href="https://app.blackroad.io" class="btn btn-primary">Launch Console</a>
|
|
<a href="https://docs.blackroad.io" class="btn btn-secondary">Read Docs</a>
|
|
</div>
|
|
|
|
<div class="stats">
|
|
<div class="stat">
|
|
<div class="stat-value">∞</div>
|
|
<div class="stat-label">Scalability</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="stat-value">0</div>
|
|
<div class="stat-label">Net Energy</div>
|
|
</div>
|
|
<div class="stat">
|
|
<div class="stat-value">5</div>
|
|
<div class="stat-label">Mind Pillars</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<footer class="footer">
|
|
<p>© 2025 <a href="https://blackroadinc.us">BlackRoad Inc.</a> All rights reserved.</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|