import { getTranslations } from 'next-intl/server'; import DownloadCTA from './DownloadCTA'; import styles from './FinalCTA.module.css'; const WAGGLE_REPO_URL = 'https://github.com/marolinik/waggle-os'; const KVARK_CONTACT = 'mailto:kvark@egzakta.com?subject=Waggle%20%E2%86%92%20KVARK%20sovereign%20deployment'; /** * Closing CTA — echoes the hero promise, then routes to Download or GitHub, * with the KVARK sovereign-deployment escape hatch underneath. Strings * under `landing.final_cta.*`. */ export default async function FinalCTA() { const t = await getTranslations('landing.final_cta'); return (
); }