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>
319 lines
11 KiB
HTML
319 lines
11 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 — The Future of Infinite Intelligence</title>
|
|
<meta name="description" content="BlackRoad OS - Infinite metaverse, quantum intelligence, and secure infrastructure for the future">
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
|
|
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
:root {
|
|
--orange: #FF9D00;
|
|
--red: #FF006B;
|
|
--purple: #7700FF;
|
|
--blue: #0066FF;
|
|
--green: #27AE60;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background: #000;
|
|
color: #fff;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero-bg {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: radial-gradient(circle at 50% 50%, rgba(119, 0, 255, 0.2), transparent 70%),
|
|
radial-gradient(circle at 80% 20%, rgba(255, 0, 107, 0.15), transparent 50%),
|
|
radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.15), transparent 50%);
|
|
}
|
|
|
|
.hero-content {
|
|
position: relative;
|
|
z-index: 10;
|
|
text-align: center;
|
|
max-width: 1200px;
|
|
padding: 40px;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 120px;
|
|
font-weight: 900;
|
|
background: linear-gradient(45deg, var(--orange), var(--red), var(--purple), var(--blue));
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
margin-bottom: 20px;
|
|
animation: gradient 3s ease infinite;
|
|
background-size: 300% 300%;
|
|
}
|
|
|
|
@keyframes gradient {
|
|
0%, 100% { background-position: 0% 50%; }
|
|
50% { background-position: 100% 50%; }
|
|
}
|
|
|
|
.tagline {
|
|
font-size: 32px;
|
|
font-weight: 300;
|
|
margin-bottom: 40px;
|
|
color: #ccc;
|
|
}
|
|
|
|
.cta-buttons {
|
|
display: flex;
|
|
gap: 20px;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.btn {
|
|
padding: 16px 32px;
|
|
border-radius: 12px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
cursor: pointer;
|
|
border: none;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: linear-gradient(45deg, var(--orange), var(--red));
|
|
color: #fff;
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
color: #fff;
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.btn:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 10px 30px rgba(255, 157, 0, 0.3);
|
|
}
|
|
|
|
/* Services Grid */
|
|
.services {
|
|
padding: 100px 40px;
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 48px;
|
|
font-weight: 700;
|
|
text-align: center;
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.service-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 30px;
|
|
}
|
|
|
|
.service-card {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 16px;
|
|
padding: 40px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.service-card:hover {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border-color: var(--purple);
|
|
transform: translateY(-4px);
|
|
}
|
|
|
|
.service-icon {
|
|
font-size: 48px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.service-title {
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.service-desc {
|
|
font-size: 14px;
|
|
color: #aaa;
|
|
line-height: 1.6;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.service-link {
|
|
color: var(--purple);
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.service-link:hover {
|
|
color: var(--orange);
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
padding: 60px 40px 40px;
|
|
text-align: center;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.footer-links {
|
|
display: flex;
|
|
gap: 30px;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.footer-links a {
|
|
color: #aaa;
|
|
text-decoration: none;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
.copyright {
|
|
color: #666;
|
|
font-size: 13px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Hero Section -->
|
|
<section class="hero">
|
|
<div class="hero-bg"></div>
|
|
<div class="hero-content">
|
|
<h1 class="logo">BLACKROAD OS</h1>
|
|
<p class="tagline">Infinite Intelligence • Infinite Creation • Infinite Love</p>
|
|
<div class="cta-buttons">
|
|
<a href="https://universe.blackroad.io" class="btn btn-primary">Enter Universe 🌌</a>
|
|
<a href="https://pitstop.blackroad.io" class="btn btn-secondary">Portal Login 🔐</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Services Section -->
|
|
<section class="services">
|
|
<h2 class="section-title">Our Universe</h2>
|
|
<div class="service-grid">
|
|
<div class="service-card">
|
|
<div class="service-icon">🌌</div>
|
|
<h3 class="service-title">Infinite Metaverse</h3>
|
|
<p class="service-desc">A living, infinite 3D universe with 18 integrated systems, AI agents, and procedurally generated worlds.</p>
|
|
<a href="https://universe.blackroad.io" class="service-link">Explore Universe →</a>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">🔐</div>
|
|
<h3 class="service-title">Secure Pitstop</h3>
|
|
<p class="service-desc">Authentication portal protecting access to all BlackRoad OS systems and files.</p>
|
|
<a href="https://pitstop.blackroad.io" class="service-link">Login →</a>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">🌍</div>
|
|
<h3 class="service-title">Earth Simulation</h3>
|
|
<p class="service-desc">Real-time Earth visualization with NASA-grade celestial mechanics and eclipse predictions.</p>
|
|
<a href="https://earth.blackroad.io" class="service-link">View Earth →</a>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">🎨</div>
|
|
<h3 class="service-title">Creator Studio</h3>
|
|
<p class="service-desc">Advanced tools for content creation, 3D modeling, and universe building.</p>
|
|
<a href="https://creator.blackroad.io" class="service-link">Create →</a>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">💼</div>
|
|
<h3 class="service-title">Business Suite</h3>
|
|
<p class="service-desc">Finance, legal, education, and operations management tools.</p>
|
|
<a href="https://finance.blackroad.io" class="service-link">Manage →</a>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">🔬</div>
|
|
<h3 class="service-title">Research Lab</h3>
|
|
<p class="service-desc">Quantum computing, AI research, and scientific exploration platform.</p>
|
|
<a href="https://research-lab.blackroad.io" class="service-link">Research →</a>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">🏠</div>
|
|
<h3 class="service-title">Home Dashboard</h3>
|
|
<p class="service-desc">Personal dashboard for managing all your BlackRoad OS services.</p>
|
|
<a href="https://home.blackroad.io" class="service-link">Go Home →</a>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">🎯</div>
|
|
<h3 class="service-title">Demo Showcase</h3>
|
|
<p class="service-desc">Interactive demos and examples of BlackRoad OS capabilities.</p>
|
|
<a href="https://demo.blackroad.io" class="service-link">Try Demo →</a>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">⚙️</div>
|
|
<h3 class="service-title">DevOps Tools</h3>
|
|
<p class="service-desc">CI/CD, monitoring, and infrastructure management tools.</p>
|
|
<a href="https://devops.blackroad.io" class="service-link">DevOps →</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer">
|
|
<div class="footer-links">
|
|
<a href="https://pitstop.blackroad.io">Portal</a>
|
|
<a href="https://universe.blackroad.io">Universe</a>
|
|
<a href="https://earth.blackroad.io">Earth</a>
|
|
<a href="https://creator.blackroad.io">Creator</a>
|
|
<a href="https://finance.blackroad.io">Finance</a>
|
|
<a href="https://legal.blackroad.io">Legal</a>
|
|
<a href="https://education.blackroad.io">Education</a>
|
|
<a href="https://research-lab.blackroad.io">Research</a>
|
|
<a href="https://devops.blackroad.io">DevOps</a>
|
|
<a href="mailto:blackroad.systems@gmail.com">Contact</a>
|
|
</div>
|
|
<p class="copyright">© 2025 BlackRoad OS, Inc. All rights reserved.</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|