feat: navbar
CI / 🔍 Lint & Type Check (push) Successful in 1m11s
CI / 🐳 Build & Push Image (push) Successful in 27s

This commit is contained in:
2026-07-19 19:20:36 +02:00
parent 1542a991b9
commit 448450908b
4 changed files with 114 additions and 22 deletions
+15 -13
View File
@@ -10,23 +10,31 @@ import { astroneerServer, siteConfig } from "./lib/server-config";
export default function Home() {
return (
<main className="stellar-page home-page">
<section className="home-shell" aria-labelledby="home-title">
<section className="home-shell lg:justify-center" aria-label="Services privés de Leon">
<nav className="home-nav" aria-label="Navigation principale">
<Link href="/" className="brand-lockup" aria-label="Accueil">
<span className="brand-mark">L</span>
<span>{siteConfig.name}</span>
</Link>
<div className="home-nav-links">
<Link href="/" className="home-nav-link" aria-current="page">
Accueil
</Link>
<Link href="/docs" className="home-nav-link home-nav-link--docs">
Documentation
</Link>
</div>
</nav>
<div className="home-hero">
<h1 id="home-title">{siteConfig.title}</h1>
<p>{siteConfig.description}</p>
</div>
{/*<div className="home-hero">*/}
{/* <h1 id="home-title">{siteConfig.title}</h1>*/}
{/*</div>*/}
<div className="service-grid" aria-label="Services disponibles">
<HomeElement
title="Jellyfin"
description="Films, séries et bibliothèque privée."
title="Momostreaming"
description="Films et Séries"
href={siteConfig.jellyfinUrl}
actionLabel="Ouvrir"
variant="jellyfin"
@@ -66,12 +74,6 @@ export default function Home() {
<AstroneerIcon />
</HomeElement>
</div>
<div className="home-footer-hint" aria-hidden="true">
<span />
<strong>Services privés</strong>
<span />
</div>
</section>
</main>
);