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>
206 lines
5.9 KiB
HTML
206 lines
5.9 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 Inc. | Enterprise AI Infrastructure</title>
|
|
<meta name="description" content="BlackRoad Inc. - Building the future of autonomous agent infrastructure.">
|
|
<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 - B2B tier uses warm-orange */
|
|
--accent: var(--br-warm-orange);
|
|
--accent2: 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;
|
|
}
|
|
.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: 6rem 2rem;
|
|
text-align: center;
|
|
}
|
|
h1 {
|
|
font-size: 3.5rem;
|
|
font-weight: 800;
|
|
margin-bottom: 1.5rem;
|
|
line-height: 1.1;
|
|
}
|
|
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;
|
|
}
|
|
.subtitle {
|
|
font-size: 1.25rem;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 3rem;
|
|
max-width: 600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
.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: all 0.2s;
|
|
}
|
|
.btn:hover {
|
|
box-shadow: 0 0 24px rgba(255, 0, 102, 0.45);
|
|
transform: translateY(-2px);
|
|
}
|
|
.products {
|
|
max-width: 1000px;
|
|
margin: 0 auto;
|
|
padding: 4rem 2rem;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: 2rem;
|
|
}
|
|
.product {
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 16px;
|
|
padding: 2rem;
|
|
transition: all 0.3s;
|
|
}
|
|
.product:hover {
|
|
border-color: var(--accent);
|
|
transform: translateY(-4px);
|
|
}
|
|
.product-icon {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.product h3 {
|
|
font-size: 1.25rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.product p {
|
|
color: var(--text-secondary);
|
|
font-size: 0.95rem;
|
|
line-height: 1.6;
|
|
}
|
|
.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; }
|
|
.contact {
|
|
background: var(--surface);
|
|
padding: 4rem 2rem;
|
|
text-align: center;
|
|
}
|
|
.contact h2 {
|
|
font-size: 2rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.contact p {
|
|
color: var(--text-secondary);
|
|
margin-bottom: 2rem;
|
|
}
|
|
@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 Inc.</div>
|
|
<nav class="nav">
|
|
<a href="https://blackroad.io">Platform</a>
|
|
<a href="https://docs.blackroad.io">Documentation</a>
|
|
<a href="#contact">Contact</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<section class="hero">
|
|
<h1>Building the Future of <span>Autonomous Intelligence</span></h1>
|
|
<p class="subtitle">BlackRoad Inc. develops enterprise-grade AI infrastructure for the next generation of autonomous agents and decentralized systems.</p>
|
|
<a href="https://blackroad.io" class="btn">Explore Platform</a>
|
|
</section>
|
|
|
|
<section class="products">
|
|
<div class="product">
|
|
<div class="product-icon">🖥️</div>
|
|
<h3>BlackRoad OS</h3>
|
|
<p>The autonomous agent operating system powering decentralized intelligence with zero net energy consumption.</p>
|
|
</div>
|
|
<div class="product">
|
|
<div class="product-icon">⛓️</div>
|
|
<h3>PS-SHA∞ Blockchain</h3>
|
|
<p>Infinitely scalable distributed ledger technology with post-quantum cryptographic security.</p>
|
|
</div>
|
|
<div class="product">
|
|
<div class="product-icon">🧠</div>
|
|
<h3>Agent Mind System</h3>
|
|
<p>Five-pillar cognitive architecture enabling human-like reasoning in autonomous agents.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="contact" id="contact">
|
|
<h2>Get in Touch</h2>
|
|
<p>Interested in learning more about BlackRoad technology?</p>
|
|
<a href="mailto:contact@blackroad.io" class="btn">Contact Us</a>
|
|
</section>
|
|
|
|
<footer class="footer">
|
|
<p>© 2025 BlackRoad Inc. All rights reserved. | <a href="https://blackroad.io">blackroad.io</a></p>
|
|
</footer>
|
|
</body>
|
|
</html>
|