Blog / index.html
LH-Tech-AI's picture
Update index.html
a8476f9 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SupraLabs | Small Models, Big Impact</title>
<style>
:root {
--bg: #0f0f0f;
--surface: #1a1a1a;
--border: #333;
--text: #e0e0e0;
--accent: #536bfe; /* Supra Blue */
--muted: #888;
--font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--bg);
color: var(--text);
font-family: 'Inter', -apple-system, sans-serif;
line-height: 1.6;
padding: 2rem;
}
code, pre, .mono {
font-family: var(--font-mono);
}
.container {
max-width: 900px;
margin: 0 auto;
}
/* --- Header --- */
header {
border-bottom: 2px solid var(--border);
padding-bottom: 2rem;
margin-bottom: 3rem;
display: flex;
justify-content: space-between;
align-items: flex-end;
}
.logo-area a {
text-decoration: none;
color: inherit;
}
.logo-area h1 {
font-size: 1.2rem;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--accent);
line-height: 1;
display: flex;
align-items: center;
gap: 10px;
}
nav a {
color: var(--text);
text-decoration: none;
margin-left: 1.5rem;
font-size: 0.9rem;
border-bottom: 1px solid transparent;
}
nav a:hover {
border-bottom: 1px solid var(--accent);
}
/* --- Hero Section --- */
.hero {
margin-bottom: 4rem;
}
.hero h2 {
font-size: 3rem;
line-height: 1.1;
margin-bottom: 1.5rem;
font-weight: 800;
}
.hero p {
font-size: 1.2rem;
color: var(--muted);
max-width: 600px;
}
/* --- Feed / Posts --- */
.section-label {
display: block;
font-family: var(--font-mono);
color: var(--accent);
font-size: 0.8rem;
margin-bottom: 1rem;
text-transform: uppercase;
}
.post-card {
background: var(--surface);
border: 1px solid var(--border);
padding: 2rem;
margin-bottom: 1.5rem;
transition: transform 0.2s ease, border-color 0.2s ease;
text-decoration: none;
display: block;
color: inherit;
}
.post-card:hover {
border-color: var(--accent);
transform: translateY(-2px);
}
.post-date {
font-family: var(--font-mono);
font-size: 0.8rem;
color: var(--muted);
margin-bottom: 0.5rem;
}
.post-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}
.tags {
display: flex;
gap: 0.5rem;
}
.tag {
font-family: var(--font-mono);
font-size: 0.7rem;
padding: 2px 8px;
border: 1px solid var(--border);
border-radius: 4px;
}
/* --- Hardware Stats --- */
.stats-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
margin-top: 4rem;
border-top: 1px solid var(--border);
padding-top: 2rem;
}
.stat-box {
padding: 1rem;
border-left: 2px solid var(--accent);
}
.stat-box small {
display: block;
color: var(--muted);
font-family: var(--font-mono);
}
footer {
margin-top: 6rem;
padding-bottom: 2rem;
font-size: 0.8rem;
color: var(--muted);
text-align: center;
}
@media (max-width: 600px) {
.hero h2 { font-size: 2rem; }
header { flex-direction: column; align-items: flex-start; gap: 1rem; }
nav a { margin-left: 0; margin-right: 1rem; }
.stats-grid { grid-template-columns: 1fr; }
}
.logo-area {
display: flex;
align-items: center;
gap: 10px;
font-weight: bold;
font-size: 1.2rem;
}
</style>
</head>
<body>
<div class="container">
<header>
<div class="logo-area" style="font-size: 1.5em;">
<a href="./index.html"><h1><img src="./image.png" style="height: 2em"> SupraLabs_</h1></a>
</div>
<nav>
<a href="#news">News</a>
<a href="https://huggingface.co/SupraLabs" target="blank">HuggingFace</a>
<a href="#hardware">Hardware</a>
</nav>
</header>
<section class="hero">
<h2>Small weights.<br>Huge potential.</h2>
<p>We're democratizing AI by training high-performance models on consumer hardware. 100% Open Source. 0% Slop.</p>
</section>
<span class="section-label" id="news">// Latest_Updates</span>
<a href="why-we-chose-llama.html" class="post-card">
<div class="post-date">2026-05-12</div>
<h3>Why we chose Llama over Mistral, DeepSeek, Qwen and Mamba for Supra Mini v3</h3>
<p>Researching the best architecture for small scale language models...</p>
<div class="tags" style="margin-top: 1.5rem;">
<span class="tag">#research</span>
<span class="tag">#architecture</span>
<span class="tag">#llama</span>
<span class="tag">#open-source</span>
<span class="tag">#tinyml</span>
</div>
</a>
<a href="we-released-our-now-model.html" class="post-card">
<div class="post-date">2026-05-12</div>
<h3>Our new model is out: Supra Mini <b>v2</b> 0.1M</h3>
<p>Check it out! It's cool!</p>
<div class="tags" style="margin-top: 1.5rem;">
<span class="tag">#new</span>
<span class="tag">#model</span>
<span class="tag">#open-source</span>
</div>
</a>
<a href="our-first-model-ever.html" class="post-card">
<div class="post-date">2026-05-12</div>
<h3>Our first model ever is there: Supra Mini 0.1M</h3>
<p>This is our first model at SupraLabs. Free. Tiny. Open Source.</p>
<div class="tags" style="margin-top: 1.5rem;">
<span class="tag">#model</span>
<span class="tag">#new</span>
<span class="tag">#open-source</span>
</div>
</a>
<a href="we-founded-supralabs.html" class="post-card">
<div class="post-date">2026-05-11</div>
<h3>We founded SupraLabs: Real Open Source AI</h3>
<p>Today marks the beginning of our journey. No corporate gatekeeping, just pure optimization on accessible hardware.</p>
<div class="tags" style="margin-top: 1.5rem;">
<span class="tag">#announcement</span>
<span class="tag">#roadmap</span>
<span class="tag">#open-source</span>
</div>
</a>
<div class="stats-grid" id="hardware">
<div class="stat-box">
<small>Main Node</small>
<strong>RTX 5060 Ti 16GB</strong>
<p class="mono" style="font-size: 0.8rem; color: var(--accent);">[LH-Tech AI]</p>
</div>
<div class="stat-box">
<small>Secondary Node</small>
<strong>GTX 750Ti 4GB</strong>
<p class="mono" style="font-size: 0.8rem; color: var(--accent);">[AxionLab]</p>
</div>
</div>
<footer>
<p class="mono">&copy; 2026 SupraLabs // Built for the community.</p>
</footer>
</div>
</body>
</html>