--- // biome-ignore-all lint/correctness/noUnusedImports: Astro template consumes component imports. // biome-ignore-all lint/correctness/noUnusedVariables: Astro template consumes frontmatter values. import { t } from "@/i18n"; import CategoryCards from "./CategoryCards.astro"; import HeroQuickstart from "./HeroQuickstart.astro"; import HeroSearch from "./HeroSearch.astro"; import TrustSignals from "./TrustSignals.astro"; interface Props { locale?: string; } const { locale = "en" } = Astro.props; const trustBadges = [ t(locale, "home.hero.badge.selfHosted"), t(locale, "home.hero.badge.openSource"), t(locale, "home.hero.badge.airGap"), t(locale, "home.hero.badge.compliance"), ]; ---
{trustBadges.map((badge) => ( {badge} ))}

{t(locale, "home.hero.title")}

{t(locale, "home.hero.subtitle")}