import { getTranslations } from 'next-intl/server'; import Reveal from './Reveal'; import styles from './SovereigntyBand.module.css'; const ITEMS = ['device', 'egress', 'erasure', 'injection'] as const; /** * Data-sovereignty band: four specific, verifiable statements about where * data lives and what leaves the machine. Trust through specificity — no * compliance badges we don't hold. Strings under `landing.sovereignty.*`. */ export default async function SovereigntyBand() { const t = await getTranslations('landing.sovereignty'); return (

{t('eyebrow')}

{t('headline')}

{ITEMS.map((item, i) => (

{t(`items.${item}.title`)}

{t(`items.${item}.body`)}

))}
{t('cta')}
); }