Initial commit: BlackRoad LocalAI - Product #75
Self-hosted AI platform Features: - Fully self-hosted (zero cloud dependency) - Multiple model support (Llama, Mistral, GPT-J, Falcon) - OpenAI-compatible API (drop-in replacement) - GPU acceleration (CUDA, ROCm, Metal) - 100% private (no data sent to cloud) - Easy deployment (Docker, Kubernetes) Pricing: FREE personal → /mo business → Enterprise 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
260
index.html
Normal file
260
index.html
Normal file
@@ -0,0 +1,260 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>BlackRoad LocalAI - Self-Hosted AI Platform</title>
|
||||||
|
<style>
|
||||||
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
font-family: 'SF Pro Display', -apple-system, sans-serif;
|
||||||
|
background: #000;
|
||||||
|
color: #FFF;
|
||||||
|
line-height: 1.618;
|
||||||
|
}
|
||||||
|
.hero {
|
||||||
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
padding: 89px 34px;
|
||||||
|
background: linear-gradient(135deg, rgba(41,121,255,0.1) 0%, rgba(245,166,35,0.1) 100%);
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 55px;
|
||||||
|
font-weight: 700;
|
||||||
|
background: linear-gradient(135deg, #2979FF 38.2%, #F5A623 61.8%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
margin-bottom: 21px;
|
||||||
|
}
|
||||||
|
.subtitle {
|
||||||
|
font-size: 24px;
|
||||||
|
opacity: 0.8;
|
||||||
|
margin-bottom: 55px;
|
||||||
|
max-width: 900px;
|
||||||
|
}
|
||||||
|
.btn {
|
||||||
|
padding: 21px 55px;
|
||||||
|
background: linear-gradient(135deg, #2979FF 38.2%, #F5A623 61.8%);
|
||||||
|
color: #FFF;
|
||||||
|
border: none;
|
||||||
|
border-radius: 13px;
|
||||||
|
font-size: 18px;
|
||||||
|
font-weight: 600;
|
||||||
|
cursor: pointer;
|
||||||
|
text-decoration: none;
|
||||||
|
display: inline-block;
|
||||||
|
transition: all 0.3s;
|
||||||
|
}
|
||||||
|
.btn:hover {
|
||||||
|
transform: translateY(-3px);
|
||||||
|
box-shadow: 0 13px 34px rgba(41,121,255,0.4);
|
||||||
|
}
|
||||||
|
.features {
|
||||||
|
padding: 144px 34px;
|
||||||
|
max-width: 1400px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
.section-title {
|
||||||
|
font-size: 55px;
|
||||||
|
font-weight: 700;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 89px;
|
||||||
|
background: linear-gradient(135deg, #2979FF 38.2%, #F5A623 61.8%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
}
|
||||||
|
.features-grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
||||||
|
gap: 34px;
|
||||||
|
}
|
||||||
|
.feature-card {
|
||||||
|
background: rgba(255,255,255,0.03);
|
||||||
|
border: 1px solid rgba(255,255,255,0.1);
|
||||||
|
border-radius: 13px;
|
||||||
|
padding: 34px;
|
||||||
|
transition: all 0.3s;
|
||||||
|
}
|
||||||
|
.feature-card:hover {
|
||||||
|
border-color: #2979FF;
|
||||||
|
transform: translateY(-5px);
|
||||||
|
box-shadow: 0 13px 34px rgba(41,121,255,0.2);
|
||||||
|
}
|
||||||
|
.feature-icon { font-size: 55px; margin-bottom: 21px; }
|
||||||
|
.feature-title { font-size: 24px; font-weight: 600; margin-bottom: 13px; color: #F5A623; }
|
||||||
|
.feature-desc { font-size: 16px; opacity: 0.8; line-height: 1.618; }
|
||||||
|
.pricing {
|
||||||
|
padding: 144px 34px;
|
||||||
|
background: rgba(255,255,255,0.02);
|
||||||
|
}
|
||||||
|
.pricing-grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
||||||
|
gap: 34px;
|
||||||
|
max-width: 1400px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
.pricing-card {
|
||||||
|
background: rgba(255,255,255,0.03);
|
||||||
|
border: 1px solid rgba(255,255,255,0.1);
|
||||||
|
border-radius: 13px;
|
||||||
|
padding: 34px;
|
||||||
|
text-align: center;
|
||||||
|
transition: all 0.3s;
|
||||||
|
}
|
||||||
|
.pricing-card:hover {
|
||||||
|
border-color: #2979FF;
|
||||||
|
transform: translateY(-5px);
|
||||||
|
}
|
||||||
|
.plan-name {
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: 600;
|
||||||
|
margin-bottom: 13px;
|
||||||
|
color: #2979FF;
|
||||||
|
}
|
||||||
|
.plan-price {
|
||||||
|
font-size: 55px;
|
||||||
|
font-weight: 700;
|
||||||
|
background: linear-gradient(135deg, #2979FF 38.2%, #F5A623 61.8%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
margin-bottom: 21px;
|
||||||
|
}
|
||||||
|
.plan-features {
|
||||||
|
list-style: none;
|
||||||
|
text-align: left;
|
||||||
|
margin-bottom: 34px;
|
||||||
|
}
|
||||||
|
.plan-features li {
|
||||||
|
padding: 13px 0;
|
||||||
|
border-bottom: 1px solid rgba(255,255,255,0.05);
|
||||||
|
opacity: 0.8;
|
||||||
|
}
|
||||||
|
.plan-features li::before {
|
||||||
|
content: '✓ ';
|
||||||
|
color: #2ECC71;
|
||||||
|
font-weight: 600;
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
footer {
|
||||||
|
padding: 89px 34px;
|
||||||
|
border-top: 1px solid rgba(255,255,255,0.1);
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<section class="hero">
|
||||||
|
<div style="font-size: 89px; margin-bottom: 21px;">🤖</div>
|
||||||
|
<h1>BlackRoad LocalAI</h1>
|
||||||
|
<p class="subtitle">Self-Hosted AI Platform. Run LLMs Locally. Zero Cloud Dependency. Complete Privacy.</p>
|
||||||
|
<a href="#features" class="btn">Explore Features</a>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="features" id="features">
|
||||||
|
<h2 class="section-title">Self-Hosted AI Power</h2>
|
||||||
|
<div class="features-grid">
|
||||||
|
<div class="feature-card">
|
||||||
|
<div class="feature-icon">🏠</div>
|
||||||
|
<h3 class="feature-title">Fully Self-Hosted</h3>
|
||||||
|
<p class="feature-desc">Run on your hardware. Zero cloud dependency. Complete data privacy. Air-gapped deployment.</p>
|
||||||
|
</div>
|
||||||
|
<div class="feature-card">
|
||||||
|
<div class="feature-icon">🤖</div>
|
||||||
|
<h3 class="feature-title">Multiple Model Support</h3>
|
||||||
|
<p class="feature-desc">Llama, Mistral, GPT-J, Falcon, Alpaca. GGML/GGUF formats. Automatic model downloads.</p>
|
||||||
|
</div>
|
||||||
|
<div class="feature-card">
|
||||||
|
<div class="feature-icon">🔌</div>
|
||||||
|
<h3 class="feature-title">OpenAI-Compatible API</h3>
|
||||||
|
<p class="feature-desc">Drop-in replacement for OpenAI API. Use existing tools. Easy migration. RESTful endpoints.</p>
|
||||||
|
</div>
|
||||||
|
<div class="feature-card">
|
||||||
|
<div class="feature-icon">⚡</div>
|
||||||
|
<h3 class="feature-title">GPU Acceleration</h3>
|
||||||
|
<p class="feature-desc">CUDA, ROCm, Metal support. Multi-GPU inference. CPU fallback. Optimized performance.</p>
|
||||||
|
</div>
|
||||||
|
<div class="feature-card">
|
||||||
|
<div class="feature-icon">🔒</div>
|
||||||
|
<h3 class="feature-title">100% Private</h3>
|
||||||
|
<p class="feature-desc">No data sent to cloud. No telemetry. Offline operation. GDPR compliant by design.</p>
|
||||||
|
</div>
|
||||||
|
<div class="feature-card">
|
||||||
|
<div class="feature-icon">🐳</div>
|
||||||
|
<h3 class="feature-title">Easy Deployment</h3>
|
||||||
|
<p class="feature-desc">Docker containers. Kubernetes manifests. One-command install. Auto-updates.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="pricing">
|
||||||
|
<h2 class="section-title">Flexible Licensing</h2>
|
||||||
|
<div class="pricing-grid">
|
||||||
|
<div class="pricing-card">
|
||||||
|
<div class="plan-name">Personal</div>
|
||||||
|
<div class="plan-price">FREE</div>
|
||||||
|
<ul class="plan-features">
|
||||||
|
<li>Self-hosted deployment</li>
|
||||||
|
<li>All open-source models</li>
|
||||||
|
<li>OpenAI-compatible API</li>
|
||||||
|
<li>GPU acceleration</li>
|
||||||
|
<li>Community support</li>
|
||||||
|
</ul>
|
||||||
|
<button class="btn">Download Free</button>
|
||||||
|
</div>
|
||||||
|
<div class="pricing-card">
|
||||||
|
<div class="plan-name">Business</div>
|
||||||
|
<div class="plan-price">$99<span style="font-size: 18px; opacity: 0.7;">/mo</span></div>
|
||||||
|
<ul class="plan-features">
|
||||||
|
<li>Everything in Personal</li>
|
||||||
|
<li>Commercial license</li>
|
||||||
|
<li>Priority support</li>
|
||||||
|
<li>Advanced features</li>
|
||||||
|
<li>Custom models</li>
|
||||||
|
</ul>
|
||||||
|
<button class="btn">Get Business</button>
|
||||||
|
</div>
|
||||||
|
<div class="pricing-card">
|
||||||
|
<div class="plan-name">Enterprise</div>
|
||||||
|
<div class="plan-price">Custom</div>
|
||||||
|
<ul class="plan-features">
|
||||||
|
<li>Everything in Business</li>
|
||||||
|
<li>On-premise deployment</li>
|
||||||
|
<li>Custom training</li>
|
||||||
|
<li>24/7 dedicated support</li>
|
||||||
|
<li>SLA guarantees</li>
|
||||||
|
</ul>
|
||||||
|
<button class="btn">Contact Sales</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<div style="font-size: 34px; margin-bottom: 21px;">🤖 BlackRoad LocalAI</div>
|
||||||
|
<p style="opacity: 0.6; font-size: 14px;">Built by BlackRoad OS | Self-hosted AI platform</p>
|
||||||
|
<p style="opacity: 0.6; font-size: 14px; margin-top: 13px;">🖤🛣️ Private. Powerful. Yours.</p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
const observer = new IntersectionObserver((entries) => {
|
||||||
|
entries.forEach(entry => {
|
||||||
|
if (entry.isIntersecting) {
|
||||||
|
entry.target.style.opacity = '1';
|
||||||
|
entry.target.style.transform = 'translateY(0)';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}, { threshold: 0.1 });
|
||||||
|
|
||||||
|
document.querySelectorAll('.feature-card, .pricing-card').forEach(card => {
|
||||||
|
card.style.opacity = '0';
|
||||||
|
card.style.transform = 'translateY(30px)';
|
||||||
|
card.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
|
||||||
|
observer.observe(card);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user