Files
blackroad-os-docs/public/index.html
Alexa Amundson 2eaafe95c2 fix: Add working static docs landing page
- Replace broken Docusaurus build with clean static HTML
- Add links to all major BlackRoad OS resources
- Ensure docs.blackroad.io loads without errors

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-15 03:41:20 -06:00

119 lines
3.8 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 Documentation</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.container {
max-width: 1200px;
padding: 2rem;
text-align: center;
}
h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.subtitle {
font-size: 1.5rem;
margin-bottom: 3rem;
opacity: 0.9;
}
.links {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.link-card {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
padding: 2.5rem;
border-radius: 1rem;
border: 1px solid rgba(255,255,255,0.2);
transition: all 0.3s;
text-decoration: none;
color: white;
display: block;
}
.link-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
border-color: rgba(255,255,255,0.4);
}
.link-card h3 {
font-size: 1.8rem;
margin-bottom: 0.75rem;
}
.link-card p {
opacity: 0.8;
line-height: 1.6;
}
.status {
margin-top: 3rem;
padding: 1rem;
background: rgba(0,255,0,0.1);
border-radius: 0.5rem;
border: 1px solid rgba(0,255,0,0.3);
}
</style>
</head>
<body>
<div class="container">
<h1>BlackRoad OS Documentation</h1>
<p class="subtitle">The AI Operating System That Pays You</p>
<div class="status">
<strong>Status:</strong> <span style="color: #00ff00;">● All Systems Operational</span>
</div>
<div class="links">
<a href="https://github.com/BlackRoad-OS/blackroad-os-core" class="link-card">
<h3>📚 Core Library</h3>
<p>TypeScript & Python packages for building on BlackRoad OS</p>
</a>
<a href="https://api.blackroad.io" class="link-card">
<h3>🔧 API Reference</h3>
<p>Complete REST API documentation and interactive explorer</p>
</a>
<a href="https://blackroad.io" class="link-card">
<h3>🏠 Main Site</h3>
<p>Learn about BlackRoad OS features and pricing</p>
</a>
<a href="https://app.blackroad.io" class="link-card">
<h3>🎛️ Console</h3>
<p>Access your BlackRoad OS control center</p>
</a>
<a href="https://github.com/BlackRoad-OS" class="link-card">
<h3>💻 GitHub</h3>
<p>Browse all BlackRoad OS repositories</p>
</a>
<a href="https://blackroad-dashboard.pages.dev" class="link-card">
<h3>📊 Dashboard</h3>
<p>Monitor agents and system performance</p>
</a>
</div>
<div style="margin-top: 4rem; opacity: 0.7; font-size: 0.9rem;">
<p>30,000+ AI Agents | 27 Models | PS-SHA∞ Truth Engine | Lucidia Breath</p>
</div>
</div>
</body>
</html>