--- // biome-ignore-all lint/correctness/noUnusedVariables: Astro template consumes frontmatter values. import { formatCompact, getStarCount } from "@/lib/stats"; // Fetched at build time; refreshed by the scheduled landing rebuild. const starCount = formatCompact(await getStarCount()); const links = [ { label: "Features", href: "/#features" }, { label: "Enterprise", href: "/#enterprise" }, { label: "Pricing", href: "/#pricing" }, { label: "Alternatives", href: "/alternatives" }, { label: "Docs", href: "https://docs.snapotter.com", external: true }, { label: "Contact", href: "/contact" }, ]; ---