lvl0-website/templates/index.html
myrmidex 9452190d0c
All checks were successful
Build and Push Docker Image / build (push) Successful in 8m59s
CI / build (push) Successful in 20s
Redesign: red-digital theme, custom layout, drop linkita, docker dev setup
2026-05-10 16:54:34 +02:00

101 lines
3.9 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>lvl0</title>
<link rel="stylesheet" href="{{ get_url(path='style.css') }}">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@900&display=swap" rel="stylesheet">
</head>
<body>
<!-- HEADER -->
<header class="site-header">
<div class="container">
<a href="/" class="site-logo">LVL0</a>
<nav>
<a href="#projects">Projects</a>
<a href="#about">About</a>
<a href="https://forge.lvl0.xyz/lvl0" target="_blank">Forge</a>
</nav>
</div>
</header>
<!-- HERO -->
<section class="hero">
<div class="container hero__inner">
<div class="hero__logo">LVL0</div>
<p class="hero__tagline">Tools without ceilings.</p>
<p class="hero__sub">Open source, self-hosted software. No accounts, no platforms, no gatekeepers — your server, your data, your rules.</p>
</div>
</section>
<!-- PROJECTS -->
<section class="section section--alt" id="projects">
<div class="container">
<h2 class="section-title">// projects</h2>
<div class="projects">
<div class="project-card">
<div class="project-card__header">
<span class="project-card__name">incr</span>
<span class="badge badge--live">LIVE</span>
</div>
<p class="project-card__desc">Track what you accumulate. Quantity milestones, unit tracking, no financial noise.</p>
<a href="https://incr.lvl0.xyz" class="project-card__link" target="_blank">incr.lvl0.xyz →</a>
</div>
<div class="project-card">
<div class="project-card__header">
<span class="project-card__name">buckets</span>
<span class="badge badge--live">LIVE</span>
</div>
<p class="project-card__desc">Bucket-based budgeting. Income flows in, fills up, trickles down.</p>
<a href="https://forge.lvl0.xyz/lvl0/buckets-budget" class="project-card__link" target="_blank">forge →</a>
</div>
<div class="project-card">
<div class="project-card__header">
<span class="project-card__name">fedi-feed-router</span>
<span class="badge badge--live">LIVE</span>
</div>
<p class="project-card__desc">Route and filter fediverse feeds. Tame the firehose.</p>
<a href="https://forge.lvl0.xyz/lvl0/fedi-feed-router" class="project-card__link" target="_blank">forge →</a>
</div>
<div class="project-card project-card--wip">
<div class="project-card__header">
<span class="project-card__name">convox</span>
<span class="badge badge--wip">WIP</span>
</div>
<p class="project-card__desc">A federated application platform. Early design.</p>
</div>
</div>
</div>
</section>
<!-- ABOUT -->
<section class="section" id="about">
<div class="container about">
<h2 class="section-title">// about</h2>
<div class="about__body">
<p>lvl0 is an independent studio building small, self-hostable software. We believe your tools should be yours — to run, to inspect, to modify.</p>
<p>We favour focus over features, longevity over growth, and ownership over convenience. Every project starts at level zero and earns its complexity.</p>
<p>All code is open source and lives on our <a href="https://forge.lvl0.xyz/lvl0" target="_blank">Forge</a>.</p>
</div>
</div>
</section>
<!-- FOOTER -->
<footer class="site-footer">
<div class="container footer__inner">
<span class="muted">lvl0 — all code open source</span>
<a href="https://forge.lvl0.xyz/lvl0" target="_blank">forge.lvl0.xyz</a>
</div>
</footer>
</body>
</html>