Initial Commit - BlackRoad OS Complete Domain Architecture 🌐
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>
This commit is contained in:
181
blackroadquantum-shop/index.html
Normal file
181
blackroadquantum-shop/index.html
Normal file
@@ -0,0 +1,181 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>BlackRoad Quantum Shop | Quantum Products</title>
|
||||
<meta name="description" content="BlackRoad Quantum Shop - Quantum computing products and services.">
|
||||
<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;
|
||||
}
|
||||
body {
|
||||
font-family: -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.25rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
.logo span { color: var(--accent); }
|
||||
.cart {
|
||||
color: var(--text-secondary);
|
||||
text-decoration: none;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.container {
|
||||
max-width: 1100px;
|
||||
margin: 0 auto;
|
||||
padding: 3rem 2rem;
|
||||
}
|
||||
h1 {
|
||||
font-size: 2.5rem;
|
||||
text-align: center;
|
||||
margin-bottom: 0.5rem;
|
||||
background: linear-gradient(135deg, var(--accent), var(--accent2));
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
.subtitle {
|
||||
text-align: center;
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
.products {
|
||||
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;
|
||||
overflow: hidden;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
.product:hover {
|
||||
border-color: var(--accent);
|
||||
transform: translateY(-4px);
|
||||
}
|
||||
.product-image {
|
||||
height: 180px;
|
||||
background: linear-gradient(135deg, var(--accent), var(--accent2));
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 4rem;
|
||||
}
|
||||
.product-info {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
.product-name {
|
||||
font-size: 1.25rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
.product-desc {
|
||||
font-size: 0.9rem;
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.product-price {
|
||||
font-size: 1.5rem;
|
||||
font-weight: 700;
|
||||
color: var(--accent2);
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.btn {
|
||||
display: block;
|
||||
text-align: center;
|
||||
padding: 0.75rem;
|
||||
background: var(--accent);
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
border-radius: 8px;
|
||||
font-weight: 600;
|
||||
}
|
||||
.btn:hover {
|
||||
background: var(--accent2);
|
||||
color: #000;
|
||||
}
|
||||
.coming-soon {
|
||||
text-align: center;
|
||||
padding: 4rem 2rem;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
.footer {
|
||||
padding: 2rem;
|
||||
text-align: center;
|
||||
border-top: 1px solid var(--border);
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
.footer a { color: var(--accent2); text-decoration: none; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header class="header">
|
||||
<div class="logo"><span>BlackRoad</span> Quantum Shop</div>
|
||||
<a href="#" class="cart">🛒</a>
|
||||
</header>
|
||||
|
||||
<div class="container">
|
||||
<h1>Quantum Products</h1>
|
||||
<p class="subtitle">Enterprise quantum computing solutions</p>
|
||||
|
||||
<div class="products">
|
||||
<div class="product">
|
||||
<div class="product-image">⚛️</div>
|
||||
<div class="product-info">
|
||||
<div class="product-name">Quantum API Access</div>
|
||||
<div class="product-desc">Access to BlackRoad Quantum processing units for your applications.</div>
|
||||
<div class="product-price">Contact</div>
|
||||
<a href="mailto:sales@blackroad.io" class="btn">Get Quote</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="product">
|
||||
<div class="product-image">🔐</div>
|
||||
<div class="product-info">
|
||||
<div class="product-name">Quantum Security Suite</div>
|
||||
<div class="product-desc">Post-quantum cryptographic security for your infrastructure.</div>
|
||||
<div class="product-price">Contact</div>
|
||||
<a href="mailto:sales@blackroad.io" class="btn">Get Quote</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="product">
|
||||
<div class="product-image">🧠</div>
|
||||
<div class="product-info">
|
||||
<div class="product-name">Quantum ML Platform</div>
|
||||
<div class="product-desc">Quantum-enhanced machine learning for enterprise AI.</div>
|
||||
<div class="product-price">Contact</div>
|
||||
<a href="mailto:sales@blackroad.io" class="btn">Get Quote</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="coming-soon">
|
||||
<p>More products coming soon. <a href="https://blackroadquantum.store" style="color: var(--accent2);">Visit our store</a> for more options.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="footer">
|
||||
<a href="https://blackroadinc.us">BlackRoad Inc.</a> © 2025
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user