LH-Tech-AI commited on
Commit
9be2661
·
verified ·
1 Parent(s): 2b83df4

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +89 -56
index.html CHANGED
@@ -3,7 +3,7 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>SupraLabs | Small Models, Big Impact</title>
7
  <style>
8
  :root {
9
  --bg: #0f0f0f;
@@ -55,6 +55,11 @@
55
  color: var(--accent);
56
  }
57
 
 
 
 
 
 
58
  nav a {
59
  color: var(--text);
60
  text-decoration: none;
@@ -67,65 +72,71 @@
67
  border-bottom: 1px solid var(--accent);
68
  }
69
 
70
- /* --- Hero Section --- */
71
- .hero {
72
- margin-bottom: 4rem;
73
  }
74
 
75
- .hero h2 {
76
  font-size: 3rem;
77
  line-height: 1.1;
78
- margin-bottom: 1.5rem;
79
  font-weight: 800;
80
  }
81
 
82
- .hero p {
83
- font-size: 1.2rem;
84
- color: var(--muted);
85
- max-width: 600px;
86
- }
87
-
88
- /* --- Feed / Posts --- */
89
- .section-label {
90
- display: block;
91
  font-family: var(--font-mono);
92
  color: var(--accent);
93
- font-size: 0.8rem;
94
- margin-bottom: 1rem;
95
- text-transform: uppercase;
96
  }
97
 
98
- .post-card {
99
  background: var(--surface);
100
  border: 1px solid var(--border);
101
- padding: 2rem;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  margin-bottom: 1.5rem;
103
- transition: transform 0.2s ease, border-color 0.2s ease;
104
- text-decoration: none;
105
- display: block;
106
- color: inherit;
107
  }
108
 
109
- .post-card:hover {
110
- border-color: var(--accent);
111
- transform: translateY(-2px);
112
  }
113
 
114
- .post-date {
115
- font-family: var(--font-mono);
116
- font-size: 0.8rem;
117
- color: var(--muted);
118
  margin-bottom: 0.5rem;
119
  }
120
 
121
- .post-card h3 {
122
- font-size: 1.5rem;
123
- margin-bottom: 1rem;
124
  }
125
 
 
 
 
 
 
 
126
  .tags {
127
  display: flex;
128
  gap: 0.5rem;
 
129
  }
130
 
131
  .tag {
@@ -134,9 +145,10 @@
134
  padding: 2px 8px;
135
  border: 1px solid var(--border);
136
  border-radius: 4px;
 
137
  }
138
 
139
- /* --- Hardware Stats --- */
140
  .stats-grid {
141
  display: grid;
142
  grid-template-columns: 1fr 1fr;
@@ -166,7 +178,8 @@
166
  }
167
 
168
  @media (max-width: 600px) {
169
- .hero h2 { font-size: 2rem; }
 
170
  header { flex-direction: column; align-items: flex-start; gap: 1rem; }
171
  nav a { margin-left: 0; margin-right: 1rem; }
172
  .stats-grid { grid-template-columns: 1fr; }
@@ -178,34 +191,54 @@
178
  <div class="container">
179
  <header>
180
  <div class="logo-area">
181
- <h1>SupraLabs_</h1>
182
  </div>
183
  <nav>
184
- <a href="#news">News</a>
185
  <a href="https://huggingface.co/SupraLabs">HuggingFace</a>
186
- <a href="#hardware">Hardware</a>
187
  </nav>
188
  </header>
189
 
190
- <section class="hero">
191
- <h2>Small weights.<br>Huge potential.</h2>
192
- <p>We're democratizing AI by training high-performance models on consumer hardware. 100% Open Source. 0% Slop.</p>
193
- </section>
194
-
195
- <span class="section-label" id="news">// Latest_Updates</span>
196
-
197
- <a href="we-founded-supralabs.html" class="post-card">
198
- <div class="post-date">2025-05-11</div>
199
- <h3>We founded SupraLabs: Real Open Source AI</h3>
200
- <p>Today marks the beginning of our journey. No corporate gatekeeping, just pure optimization on accessible hardware.</p>
201
- <div class="tags" style="margin-top: 1.5rem;">
202
- <span class="tag">#announcement</span>
203
- <span class="tag">#roadmap</span>
204
- <span class="tag">#open-source</span>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
205
  </div>
206
- </a>
207
 
208
- <div class="stats-grid" id="hardware">
209
  <div class="stat-box">
210
  <small>Main Node</small>
211
  <strong>RTX 5060 Ti 16GB</strong>
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>We founded SupraLabs | SupraLabs Blog</title>
7
  <style>
8
  :root {
9
  --bg: #0f0f0f;
 
55
  color: var(--accent);
56
  }
57
 
58
+ .logo-area a {
59
+ text-decoration: none;
60
+ color: inherit;
61
+ }
62
+
63
  nav a {
64
  color: var(--text);
65
  text-decoration: none;
 
72
  border-bottom: 1px solid var(--accent);
73
  }
74
 
75
+ /* --- Blog Post Layout --- */
76
+ .post-header {
77
+ margin-bottom: 3rem;
78
  }
79
 
80
+ .post-header h2 {
81
  font-size: 3rem;
82
  line-height: 1.1;
83
+ margin-bottom: 1rem;
84
  font-weight: 800;
85
  }
86
 
87
+ .post-meta {
 
 
 
 
 
 
 
 
88
  font-family: var(--font-mono);
89
  color: var(--accent);
90
+ font-size: 0.9rem;
91
+ margin-bottom: 2rem;
 
92
  }
93
 
94
+ .post-content {
95
  background: var(--surface);
96
  border: 1px solid var(--border);
97
+ padding: 3rem;
98
+ margin-bottom: 4rem;
99
+ }
100
+
101
+ .post-content h2 {
102
+ font-size: 1.8rem;
103
+ margin: 2.5rem 0 1rem 0;
104
+ color: var(--accent);
105
+ }
106
+
107
+ .post-content h2:first-child {
108
+ margin-top: 0;
109
+ }
110
+
111
+ .post-content p {
112
  margin-bottom: 1.5rem;
113
+ font-size: 1.1rem;
114
+ color: var(--text);
 
 
115
  }
116
 
117
+ .post-content ul {
118
+ margin-bottom: 1.5rem;
119
+ padding-left: 1.5rem;
120
  }
121
 
122
+ .post-content li {
 
 
 
123
  margin-bottom: 0.5rem;
124
  }
125
 
126
+ .post-content strong {
127
+ color: #fff;
 
128
  }
129
 
130
+ .post-content img.post-logo {
131
+ margin-bottom: 2rem;
132
+ border: 1px solid var(--border);
133
+ }
134
+
135
+ /* --- Tags --- */
136
  .tags {
137
  display: flex;
138
  gap: 0.5rem;
139
+ margin-top: 2rem;
140
  }
141
 
142
  .tag {
 
145
  padding: 2px 8px;
146
  border: 1px solid var(--border);
147
  border-radius: 4px;
148
+ color: var(--muted);
149
  }
150
 
151
+ /* --- Hardware Stats (Consistent with index) --- */
152
  .stats-grid {
153
  display: grid;
154
  grid-template-columns: 1fr 1fr;
 
178
  }
179
 
180
  @media (max-width: 600px) {
181
+ .post-header h2 { font-size: 2rem; }
182
+ .post-content { padding: 1.5rem; }
183
  header { flex-direction: column; align-items: flex-start; gap: 1rem; }
184
  nav a { margin-left: 0; margin-right: 1rem; }
185
  .stats-grid { grid-template-columns: 1fr; }
 
191
  <div class="container">
192
  <header>
193
  <div class="logo-area">
194
+ <a href="index.html"><h1>SupraLabs_</h1></a>
195
  </div>
196
  <nav>
197
+ <a href="index.html#news">News</a>
198
  <a href="https://huggingface.co/SupraLabs">HuggingFace</a>
199
+ <a href="index.html#hardware">Hardware</a>
200
  </nav>
201
  </header>
202
 
203
+ <article>
204
+ <div class="post-header">
205
+ <div class="post-meta">// 2025-05-11 | Founding_Announcement</div>
206
+ <h2>We founded SupraLabs:<br>Real Open Source AI</h2>
207
+ </div>
208
+
209
+ <div class="post-content">
210
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/697f2832c2c5e4daa93cece7/dLbJid_a6DBmVhoVLKo0m.png" width="300" class="post-logo" alt="SupraLabs Logo">
211
+
212
+ <p>Welcome to SupraLabs! Today marks a pivotal moment in our mission to democratize artificial intelligence.</p>
213
+
214
+ <h2>🤝 Who we are</h2>
215
+ <p>We are <strong>@AxionLab-official</strong> and <strong>@LH-Tech-AI</strong>. Together, we are building a home for high-performance, small-scale models that anyone can run and understand.</p>
216
+
217
+ <h2>🎯 What we do</h2>
218
+ <p>We train, finetune, and explore small models with exceptional results. Our goal is to revolutionize the AI landscape by proving that you don't need a massive data center to create impactful intelligence. We make AI accessible to everyone!</p>
219
+
220
+ <h2>🚫 What we do NOT do</h2>
221
+ <p>We are <strong>not</strong> interested in "slop." We don't release bad, trashy, or unclean models. Most importantly: we do <strong>not</strong> do "open-weights" decoys. Our models are 100% open-source for the community.</p>
222
+
223
+ <h2>🏗️ Future roadmap</h2>
224
+ <ul>
225
+ <li><strong>Supra-10M</strong> - Base, Chat, Reasoning. Trained on RTX 5060 Ti 16GB, leveraging Nvidia technologies and CUDA.</li>
226
+ <li><strong>Supra-1M</strong> - Base, Chat, Reasoning. Trained on GTX 750Ti 4GB, pushing the limits of optimization.</li>
227
+ </ul>
228
+
229
+ <h2>🫶 Feedback and Support</h2>
230
+ <p>Feedback and support are very welcome! We are building this for you. Feel free to reach out or ask to join our organization if you share our vision.</p>
231
+
232
+ <div class="tags">
233
+ <span class="tag">#announcement</span>
234
+ <span class="tag">#roadmap</span>
235
+ <span class="tag">#open-source</span>
236
+ <span class="tag">#AI</span>
237
+ </div>
238
  </div>
239
+ </article>
240
 
241
+ <div class="stats-grid">
242
  <div class="stat-box">
243
  <small>Main Node</small>
244
  <strong>RTX 5060 Ti 16GB</strong>