--- import BaseLayout from '../layouts/BaseLayout.astro'; import Reveal from '../components/islands/Reveal'; import Crate from '../components/islands/Crate'; import { loadContent } from '../lib/content'; const projects = await loadContent('projects'); const featured = projects.items.filter((p) => p.featured); const others = projects.items.filter((p) => !p.featured); ---

// crate v1.0 · digging

Mes projets

{featured.length + others.length} skeuds · {featured.length} featured

> une sélection de réalisations — live, archivées, privées. Scroll pour feuilleter le bac.

{ featured.length > 0 && (

★ Featured

) } { others.length > 0 && (

Autres skeuds

) }