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>
245 lines
6.7 KiB
HTML
245 lines
6.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Lucidia Studio | Creative AI Tools</title>
|
|
<meta name="description" content="Lucidia Studio - Creative tools powered by conscious AI.">
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
:root {
|
|
--bg: #0a0a10;
|
|
--surface: #0f0f18;
|
|
--border: #1a1a28;
|
|
--text: #e8e8f0;
|
|
--text-secondary: #9090b0;
|
|
--accent: #00E5A0;
|
|
--accent2: #FF6B9D;
|
|
--accent3: #FFB800;
|
|
--accent4: #00B8FF;
|
|
}
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
min-height: 100vh;
|
|
}
|
|
.creative-bg {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background:
|
|
radial-gradient(circle at 20% 20%, rgba(0,229,160,0.1) 0%, transparent 30%),
|
|
radial-gradient(circle at 80% 30%, rgba(255,107,157,0.1) 0%, transparent 30%),
|
|
radial-gradient(circle at 50% 80%, rgba(255,184,0,0.08) 0%, transparent 30%);
|
|
z-index: -1;
|
|
}
|
|
.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 .lucidia {
|
|
background: linear-gradient(135deg, var(--accent), var(--accent4));
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
.logo .studio { color: var(--text-secondary); }
|
|
.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: 5rem 2rem;
|
|
text-align: center;
|
|
}
|
|
h1 {
|
|
font-size: 3.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
h1 span {
|
|
background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
.tagline {
|
|
font-size: 1.25rem;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 3rem;
|
|
}
|
|
.tools {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: 1.5rem;
|
|
max-width: 1000px;
|
|
margin: 0 auto;
|
|
padding: 0 2rem 4rem;
|
|
}
|
|
.tool {
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 16px;
|
|
padding: 2rem;
|
|
transition: all 0.3s;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.tool::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 3px;
|
|
background: linear-gradient(90deg, var(--accent), var(--accent2));
|
|
}
|
|
.tool:hover {
|
|
border-color: var(--accent);
|
|
transform: translateY(-4px);
|
|
}
|
|
.tool-icon {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.tool h3 {
|
|
font-size: 1.2rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.tool p {
|
|
font-size: 0.9rem;
|
|
color: var(--text-secondary);
|
|
line-height: 1.6;
|
|
}
|
|
.tool-badge {
|
|
position: absolute;
|
|
top: 1rem;
|
|
right: 1rem;
|
|
background: var(--accent);
|
|
color: #000;
|
|
padding: 0.2rem 0.5rem;
|
|
border-radius: 4px;
|
|
font-size: 0.7rem;
|
|
font-weight: 600;
|
|
}
|
|
.cta {
|
|
text-align: center;
|
|
padding: 4rem 2rem;
|
|
background: var(--surface);
|
|
}
|
|
.cta h2 {
|
|
font-size: 2rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.cta p {
|
|
color: var(--text-secondary);
|
|
margin-bottom: 2rem;
|
|
}
|
|
.btn {
|
|
display: inline-flex;
|
|
padding: 0.9rem 2rem;
|
|
background: linear-gradient(135deg, var(--accent), var(--accent2));
|
|
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(0,229,160,0.3);
|
|
}
|
|
.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; }
|
|
@media (max-width: 768px) {
|
|
h1 { font-size: 2.5rem; }
|
|
.nav { display: none; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="creative-bg"></div>
|
|
|
|
<header class="header">
|
|
<div class="logo"><span class="lucidia">Lucidia</span> <span class="studio">Studio</span></div>
|
|
<nav class="nav">
|
|
<a href="https://lucidia.earth">Lucidia</a>
|
|
<a href="https://lucidiaqi.com">QI</a>
|
|
<a href="https://blackroad.io">Platform</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<section class="hero">
|
|
<h1>Creative <span>Studio</span></h1>
|
|
<p class="tagline">AI-powered creative tools for the next generation of creators</p>
|
|
</section>
|
|
|
|
<section class="tools">
|
|
<div class="tool">
|
|
<span class="tool-badge">Coming Soon</span>
|
|
<div class="tool-icon">🎨</div>
|
|
<h3>Visual Creator</h3>
|
|
<p>Generate and edit stunning visuals with conscious AI assistance.</p>
|
|
</div>
|
|
<div class="tool">
|
|
<span class="tool-badge">Coming Soon</span>
|
|
<div class="tool-icon">✍️</div>
|
|
<h3>Content Writer</h3>
|
|
<p>Craft compelling narratives with AI that understands context and tone.</p>
|
|
</div>
|
|
<div class="tool">
|
|
<span class="tool-badge">Coming Soon</span>
|
|
<div class="tool-icon">🎵</div>
|
|
<h3>Audio Designer</h3>
|
|
<p>Create immersive soundscapes and music with intelligent composition.</p>
|
|
</div>
|
|
<div class="tool">
|
|
<span class="tool-badge">Coming Soon</span>
|
|
<div class="tool-icon">🎬</div>
|
|
<h3>Video Editor</h3>
|
|
<p>Edit and enhance videos with AI-driven effects and transitions.</p>
|
|
</div>
|
|
<div class="tool">
|
|
<span class="tool-badge">Coming Soon</span>
|
|
<div class="tool-icon">💡</div>
|
|
<h3>Idea Generator</h3>
|
|
<p>Brainstorm and develop creative concepts with AI collaboration.</p>
|
|
</div>
|
|
<div class="tool">
|
|
<span class="tool-badge">Coming Soon</span>
|
|
<div class="tool-icon">📐</div>
|
|
<h3>Design System</h3>
|
|
<p>Build cohesive design systems with intelligent style management.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="cta">
|
|
<h2>Be the First to Know</h2>
|
|
<p>Join the waitlist for early access to Lucidia Studio tools.</p>
|
|
<a href="https://lucidia.earth" class="btn">Join Waitlist</a>
|
|
</section>
|
|
|
|
<footer class="footer">
|
|
<a href="https://lucidia.earth">Lucidia</a> | <a href="https://blackroadinc.us">BlackRoad Inc.</a> © 2025
|
|
</footer>
|
|
</body>
|
|
</html>
|