Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>@Harley-ml joined us | SupraLabs Blog</title> | |
| <style> | |
| :root { | |
| --bg: #0f0f0f; | |
| --surface: #1a1a1a; | |
| --border: #333; | |
| --text: #e0e0e0; | |
| --accent: #536bfe; | |
| --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 { | |
| border-bottom: 2px solid var(--border); | |
| padding-bottom: 2rem; | |
| margin-bottom: 3rem; | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: flex-end; | |
| } | |
| .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; | |
| } | |
| .logo-area a { text-decoration: none; color: inherit; } | |
| .logo-area { | |
| display: flex; | |
| align-items: center; | |
| gap: 10px; | |
| font-weight: bold; | |
| font-size: 1.2rem; | |
| } | |
| 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); } | |
| .post-header { margin-bottom: 3rem; } | |
| .post-header h2 { | |
| font-size: 3rem; | |
| line-height: 1.1; | |
| margin-bottom: 1rem; | |
| font-weight: 800; | |
| } | |
| .post-meta { | |
| font-family: var(--font-mono); | |
| color: var(--accent); | |
| font-size: 0.9rem; | |
| margin-bottom: 2rem; | |
| } | |
| .post-content { | |
| background: var(--surface); | |
| border: 1px solid var(--border); | |
| padding: 3rem; | |
| margin-bottom: 4rem; | |
| } | |
| .post-content h2 { | |
| font-size: 1.8rem; | |
| margin: 2.5rem 0 1rem 0; | |
| color: var(--accent); | |
| } | |
| .post-content h2:first-child { margin-top: 0; } | |
| .post-content p { | |
| margin-bottom: 1.5rem; | |
| font-size: 1.1rem; | |
| color: var(--text); | |
| } | |
| .post-content ul { | |
| margin-bottom: 1.5rem; | |
| padding-left: 1.5rem; | |
| } | |
| .post-content li { margin-bottom: 0.5rem; font-size: 1.1rem; } | |
| .post-content strong { color: #fff; } | |
| .post-content code { | |
| background: #111; | |
| border: 1px solid var(--border); | |
| padding: 2px 6px; | |
| border-radius: 3px; | |
| font-size: 0.95em; | |
| color: var(--accent); | |
| } | |
| .code-block { | |
| background: #111; | |
| border: 1px solid var(--border); | |
| padding: 1.5rem; | |
| margin: 2rem 0; | |
| overflow-x: auto; | |
| font-family: var(--font-mono); | |
| font-size: 0.88rem; | |
| line-height: 1.7; | |
| color: #ccc; | |
| } | |
| .code-block .comment { color: var(--muted); } | |
| .code-block .keyword { color: var(--accent); } | |
| .callout { | |
| border-left: 3px solid var(--accent); | |
| background: #111; | |
| padding: 1rem 1.5rem; | |
| margin: 2rem 0; | |
| font-family: var(--font-mono); | |
| font-size: 0.95rem; | |
| color: #ccc; | |
| } | |
| .callout span { | |
| display: block; | |
| color: var(--muted); | |
| font-size: 0.8rem; | |
| margin-bottom: 0.4rem; | |
| } | |
| .output-example { | |
| border: 1px solid var(--border); | |
| background: #111; | |
| padding: 1.5rem; | |
| margin: 1.5rem 0; | |
| } | |
| .output-example .prompt-label { | |
| font-family: var(--font-mono); | |
| font-size: 0.75rem; | |
| color: var(--accent); | |
| margin-bottom: 0.4rem; | |
| } | |
| .output-example .prompt-text { | |
| font-weight: 700; | |
| color: #fff; | |
| margin-bottom: 1rem; | |
| font-size: 1rem; | |
| } | |
| .output-example .output-label { | |
| font-family: var(--font-mono); | |
| font-size: 0.75rem; | |
| color: var(--muted); | |
| margin-bottom: 0.4rem; | |
| } | |
| .output-example .output-text { | |
| color: var(--text); | |
| font-size: 0.95rem; | |
| font-style: italic; | |
| line-height: 1.7; | |
| } | |
| .table-wrap { overflow-x: auto; margin: 2rem 0; } | |
| table { | |
| width: 100%; | |
| border-collapse: collapse; | |
| font-family: var(--font-mono); | |
| font-size: 0.9rem; | |
| } | |
| th { | |
| background: #111; | |
| color: var(--accent); | |
| padding: 0.75rem 1rem; | |
| text-align: left; | |
| border: 1px solid var(--border); | |
| } | |
| td { | |
| padding: 0.7rem 1rem; | |
| border: 1px solid var(--border); | |
| color: var(--text); | |
| } | |
| tr:nth-child(even) td { background: #111; } | |
| .tags { display: flex; gap: 0.5rem; margin-top: 2rem; flex-wrap: wrap; } | |
| .tag { | |
| font-family: var(--font-mono); | |
| font-size: 0.7rem; | |
| padding: 2px 8px; | |
| border: 1px solid var(--border); | |
| border-radius: 4px; | |
| color: var(--muted); | |
| } | |
| footer { | |
| margin-top: 6rem; | |
| padding-bottom: 2rem; | |
| font-size: 0.8rem; | |
| color: var(--muted); | |
| text-align: center; | |
| } | |
| @media (max-width: 600px) { | |
| .post-header h2 { font-size: 2rem; } | |
| .post-content { padding: 1.5rem; } | |
| header { flex-direction: column; align-items: flex-start; gap: 1rem; } | |
| nav a { margin-left: 0; margin-right: 1rem; } | |
| } | |
| </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="./index.html#news">News</a> | |
| <a href="https://huggingface.co/SupraLabs" target="blank">HuggingFace</a> | |
| <a href="./index.html#hardware">Hardware</a> | |
| </nav> | |
| </header> | |
| <article> | |
| <div class="post-header"> | |
| <div class="post-meta">// 2026-05-17 | Team</div> | |
| <h2>@Harley-ml joined us<br>We are increasing our team!</h2> | |
| </div> | |
| <div class="post-content"> | |
| <h2>We have a new team member!<br>@Harley-ml</h2> | |
| <p>He also makes small models. And now he is here. With us. At SupraLabs.</p> | |
| <h2>Why this is important</h2> | |
| <p>Making cool small models that revolutionize the world of ML isn't easy. Two persons aren't enough. Three persons are. That's why we are "hunting" for other people to join us!</p> | |
| <h2>Final thought</h2> | |
| <p>Yes, today's blog isn't long. But it's important. @Harley-ml joined us and that's great. With his help we will keep making our models better.<br> | |
| We are still searching people to join us. So feel free to ask!</p> | |
| <div class="tags"> | |
| <span class="tag">#join</span> | |
| <span class="tag">#team</span> | |
| <span class="tag">#harley-ml</span> | |
| </div> | |
| </div> | |
| </article> | |
| <footer> | |
| <p class="mono">© 2026 SupraLabs // Built for the community.</p> | |
| </footer> | |
| </div> | |
| </body> | |
| </html> |