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>
158 lines
4.3 KiB
HTML
158 lines
4.3 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 AI | Autonomous Agent Intelligence</title>
|
|
<meta name="description" content="BlackRoad AI - Advanced artificial intelligence for autonomous agent systems.">
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
:root {
|
|
--bg: #0a0a0a;
|
|
--surface: #111;
|
|
--border: #222;
|
|
--text: #e0e0e0;
|
|
--text-secondary: #999;
|
|
--accent: #FF9D00;
|
|
--accent2: #FF0066;
|
|
--accent3: #7700FF;
|
|
}
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
padding: 2rem;
|
|
}
|
|
.neural-bg {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background:
|
|
radial-gradient(circle at 20% 30%, rgba(255,157,0,0.1) 0%, transparent 40%),
|
|
radial-gradient(circle at 80% 70%, rgba(119,0,255,0.1) 0%, transparent 40%);
|
|
z-index: -1;
|
|
}
|
|
.logo {
|
|
font-size: 3.5rem;
|
|
font-weight: 800;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.logo span { color: var(--accent); }
|
|
.ai-badge {
|
|
display: inline-block;
|
|
background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
|
|
padding: 0.4rem 1rem;
|
|
border-radius: 20px;
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
color: #fff;
|
|
margin-bottom: 2rem;
|
|
}
|
|
.tagline {
|
|
font-size: 1.5rem;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 3rem;
|
|
max-width: 500px;
|
|
}
|
|
.ai-features {
|
|
display: flex;
|
|
gap: 1.5rem;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
margin-bottom: 3rem;
|
|
}
|
|
.ai-feature {
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
padding: 1.5rem;
|
|
width: 180px;
|
|
}
|
|
.ai-feature:hover {
|
|
border-color: var(--accent);
|
|
}
|
|
.ai-feature-icon {
|
|
font-size: 2rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.ai-feature-title {
|
|
font-weight: 600;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
.ai-feature-desc {
|
|
font-size: 0.8rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
.btn {
|
|
display: inline-flex;
|
|
padding: 0.8rem 1.5rem;
|
|
background: var(--accent);
|
|
color: #000;
|
|
text-decoration: none;
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
transition: all 0.2s;
|
|
}
|
|
.btn:hover {
|
|
transform: scale(1.05);
|
|
box-shadow: 0 0 30px rgba(255,157,0,0.3);
|
|
}
|
|
.footer {
|
|
position: fixed;
|
|
bottom: 1.5rem;
|
|
font-size: 0.85rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
.footer a { color: var(--accent); text-decoration: none; }
|
|
@media (max-width: 768px) {
|
|
.logo { font-size: 2.5rem; }
|
|
.tagline { font-size: 1.2rem; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="neural-bg"></div>
|
|
|
|
<h1 class="logo"><span>Black</span>Road AI</h1>
|
|
<div class="ai-badge">Artificial Intelligence</div>
|
|
<p class="tagline">Advanced AI powering the next generation of autonomous agent systems</p>
|
|
|
|
<div class="ai-features">
|
|
<div class="ai-feature">
|
|
<div class="ai-feature-icon">🧠</div>
|
|
<div class="ai-feature-title">Mind API</div>
|
|
<div class="ai-feature-desc">Cognitive architecture</div>
|
|
</div>
|
|
<div class="ai-feature">
|
|
<div class="ai-feature-icon">💭</div>
|
|
<div class="ai-feature-title">Reasoning</div>
|
|
<div class="ai-feature-desc">Deep thought chains</div>
|
|
</div>
|
|
<div class="ai-feature">
|
|
<div class="ai-feature-icon">📚</div>
|
|
<div class="ai-feature-title">Learning</div>
|
|
<div class="ai-feature-desc">Continuous adaptation</div>
|
|
</div>
|
|
<div class="ai-feature">
|
|
<div class="ai-feature-icon">🎯</div>
|
|
<div class="ai-feature-title">Intent</div>
|
|
<div class="ai-feature-desc">Goal-driven behavior</div>
|
|
</div>
|
|
</div>
|
|
|
|
<a href="https://blackroad.io" class="btn">Explore BlackRoad OS</a>
|
|
|
|
<footer class="footer">
|
|
<a href="https://blackroadinc.us">BlackRoad Inc.</a> © 2025
|
|
</footer>
|
|
</body>
|
|
</html>
|