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>
230 lines
6.5 KiB
HTML
230 lines
6.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 Quantum | Quantum Computing Infrastructure</title>
|
|
<meta name="description" content="BlackRoad Quantum - Quantum computing infrastructure for the next generation of AI.">
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
:root {
|
|
--bg: #050510;
|
|
--surface: #0a0a1a;
|
|
--border: #1a1a2e;
|
|
--text: #e0e0e0;
|
|
--text-secondary: #8888aa;
|
|
--accent: #7700FF;
|
|
--accent2: #00FFFF;
|
|
--accent3: #FF00FF;
|
|
}
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
min-height: 100vh;
|
|
}
|
|
.quantum-field {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background:
|
|
radial-gradient(ellipse at 20% 30%, rgba(119,0,255,0.2) 0%, transparent 40%),
|
|
radial-gradient(ellipse at 80% 70%, rgba(0,255,255,0.15) 0%, transparent 40%),
|
|
radial-gradient(ellipse at 50% 50%, rgba(255,0,255,0.1) 0%, transparent 50%);
|
|
z-index: -1;
|
|
animation: quantumField 10s ease-in-out infinite;
|
|
}
|
|
@keyframes quantumField {
|
|
0%, 100% { opacity: 0.7; transform: scale(1); }
|
|
50% { opacity: 1; transform: scale(1.05); }
|
|
}
|
|
.container {
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
padding: 3rem 2rem;
|
|
}
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 4rem;
|
|
}
|
|
.logo {
|
|
font-size: 3.5rem;
|
|
font-weight: 800;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.logo span { color: var(--accent); }
|
|
.logo .quantum {
|
|
background: linear-gradient(135deg, var(--accent), var(--accent2));
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
.tagline {
|
|
font-size: 1.25rem;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 2rem;
|
|
}
|
|
.nav-pills {
|
|
display: flex;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
.nav-pill {
|
|
padding: 0.5rem 1rem;
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 20px;
|
|
color: var(--text-secondary);
|
|
text-decoration: none;
|
|
font-size: 0.85rem;
|
|
transition: all 0.2s;
|
|
}
|
|
.nav-pill:hover {
|
|
border-color: var(--accent);
|
|
color: var(--text);
|
|
}
|
|
.hero-visual {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-bottom: 4rem;
|
|
}
|
|
.qubit {
|
|
width: 200px;
|
|
height: 200px;
|
|
border-radius: 50%;
|
|
background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 4rem;
|
|
box-shadow:
|
|
0 0 60px rgba(119,0,255,0.4),
|
|
0 0 120px rgba(0,255,255,0.2);
|
|
animation: qubitSpin 8s linear infinite;
|
|
}
|
|
@keyframes qubitSpin {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
.qubit-inner {
|
|
animation: qubitSpin 8s linear infinite reverse;
|
|
}
|
|
.features {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 1.5rem;
|
|
margin-bottom: 4rem;
|
|
}
|
|
.feature {
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 16px;
|
|
padding: 2rem;
|
|
transition: all 0.3s;
|
|
}
|
|
.feature:hover {
|
|
border-color: var(--accent);
|
|
transform: translateY(-4px);
|
|
box-shadow: 0 10px 40px rgba(119,0,255,0.2);
|
|
}
|
|
.feature-icon {
|
|
font-size: 2rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.feature h3 {
|
|
font-size: 1.1rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.feature p {
|
|
font-size: 0.9rem;
|
|
color: var(--text-secondary);
|
|
line-height: 1.6;
|
|
}
|
|
.cta {
|
|
text-align: center;
|
|
}
|
|
.btn {
|
|
display: inline-flex;
|
|
padding: 1rem 2.5rem;
|
|
background: linear-gradient(135deg, var(--accent), var(--accent2));
|
|
color: #000;
|
|
text-decoration: none;
|
|
border-radius: 8px;
|
|
font-weight: 700;
|
|
font-size: 1.1rem;
|
|
transition: all 0.2s;
|
|
}
|
|
.btn:hover {
|
|
transform: scale(1.05);
|
|
box-shadow: 0 0 50px rgba(119,0,255,0.5);
|
|
}
|
|
.footer {
|
|
text-align: center;
|
|
padding: 3rem 2rem;
|
|
color: var(--text-secondary);
|
|
font-size: 0.85rem;
|
|
}
|
|
.footer a { color: var(--accent2); text-decoration: none; }
|
|
@media (max-width: 768px) {
|
|
.logo { font-size: 2.5rem; }
|
|
.qubit { width: 150px; height: 150px; font-size: 3rem; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="quantum-field"></div>
|
|
|
|
<div class="container">
|
|
<header class="header">
|
|
<h1 class="logo"><span>Black</span>Road <span class="quantum">Quantum</span></h1>
|
|
<p class="tagline">Quantum Computing Infrastructure for Next-Gen AI</p>
|
|
<nav class="nav-pills">
|
|
<a href="https://blackroadquantum.info" class="nav-pill">Info</a>
|
|
<a href="https://blackroadquantum.net" class="nav-pill">Network</a>
|
|
<a href="https://blackroadquantum.shop" class="nav-pill">Shop</a>
|
|
<a href="https://blackroadquantum.store" class="nav-pill">Store</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<div class="hero-visual">
|
|
<div class="qubit">
|
|
<span class="qubit-inner">⚛️</span>
|
|
</div>
|
|
</div>
|
|
|
|
<section class="features">
|
|
<div class="feature">
|
|
<div class="feature-icon">🔮</div>
|
|
<h3>Quantum Processing</h3>
|
|
<p>Leverage quantum superposition for exponentially faster computation and optimization.</p>
|
|
</div>
|
|
<div class="feature">
|
|
<div class="feature-icon">🔐</div>
|
|
<h3>Post-Quantum Security</h3>
|
|
<p>Future-proof cryptography protecting against quantum computing threats.</p>
|
|
</div>
|
|
<div class="feature">
|
|
<div class="feature-icon">🌀</div>
|
|
<h3>Quantum Entanglement</h3>
|
|
<p>Instant state synchronization across the distributed network.</p>
|
|
</div>
|
|
<div class="feature">
|
|
<div class="feature-icon">📊</div>
|
|
<h3>Quantum ML</h3>
|
|
<p>Quantum-enhanced machine learning for unprecedented AI capabilities.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="cta">
|
|
<a href="https://blackroad.io" class="btn">Explore BlackRoad OS</a>
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="footer">
|
|
<a href="https://blackroadinc.us">BlackRoad Inc.</a> © 2025 | Quantum Computing Division
|
|
</footer>
|
|
</body>
|
|
</html>
|