--- // biome-ignore-all lint/correctness/noUnusedVariables: Astro template consumes frontmatter values. import { formatCompact, getImagePulls, getStarCount } from "@/lib/stats"; // Fetched at build time; refreshed by the scheduled landing rebuild. const starCount = await getStarCount(); const { display: pullsDisplay } = await getImagePulls(); const stats = [ { value: "200+", label: "Processing Tools", sublabel: "Across 5 file modalities", }, { value: formatCompact(starCount), label: "GitHub Stars", sublabel: "Open-source & growing", }, { value: pullsDisplay, label: "Image Pulls", sublabel: "Deployed worldwide", }, { value: "20+", label: "Languages", sublabel: "Speaks your language", }, ]; ---
{stat.value}
{stat.label}
{stat.sublabel}