--- // biome-ignore-all lint/correctness/noUnusedVariables: Astro template consumes frontmatter values. import { t } from "@/i18n"; import { localizeHref } from "@/lib/i18n-page"; interface Props { locale?: string; } const { locale = "en" } = Astro.props; const features = [ { tag: t(locale, "home.enterprise.tag.identity"), title: t(locale, "home.enterprise.feature.sso.title"), description: t(locale, "home.enterprise.feature.sso.description"), icon: '', }, { tag: t(locale, "home.enterprise.tag.identity"), title: t(locale, "home.enterprise.feature.scim.title"), description: t(locale, "home.enterprise.feature.scim.description"), icon: '', }, { tag: t(locale, "home.enterprise.tag.access"), title: t(locale, "home.enterprise.feature.mfa.title"), description: t(locale, "home.enterprise.feature.mfa.description"), icon: '', }, { tag: t(locale, "home.enterprise.tag.access"), title: t(locale, "home.enterprise.feature.permissions.title"), description: t(locale, "home.enterprise.feature.permissions.description"), icon: '', }, { tag: t(locale, "home.enterprise.tag.isolation"), title: t(locale, "home.enterprise.feature.multiTenancy.title"), description: t(locale, "home.enterprise.feature.multiTenancy.description"), icon: '', }, { tag: t(locale, "home.enterprise.tag.compliance"), title: t(locale, "home.enterprise.feature.audit.title"), description: t(locale, "home.enterprise.feature.audit.description"), icon: '', }, { tag: t(locale, "home.enterprise.tag.infrastructure"), title: t(locale, "home.enterprise.feature.s3.title"), description: t(locale, "home.enterprise.feature.s3.description"), icon: '', }, { tag: t(locale, "home.enterprise.tag.integration"), title: t(locale, "home.enterprise.feature.webhooks.title"), description: t(locale, "home.enterprise.feature.webhooks.description"), icon: '', }, ]; const frameworks = ["SOC 2", "ISO 27001", "HIPAA", "GDPR"]; ---
{t(locale, "home.enterprise.badge")}

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

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

{features.map((feature, i) => (
{feature.tag}

{feature.title}

{feature.description}

))}
{t(locale, "home.enterprise.auditReadyFor")}
{frameworks.map((fw) => ( {fw} ))}
{t(locale, "home.enterprise.bookDemo")}

{t(locale, "home.enterprise.ctaBody")}