import { getTranslations } from 'next-intl/server'; import DownloadCTA from './DownloadCTA'; import HeroVisual from './HeroVisual'; import styles from './Hero.module.css'; const MICROCOPY_KEYS = [ 'microcopy_free', 'microcopy_platforms', 'microcopy_oss', ] as const; /** * Hero — single committed headline (the A/B variant infra was removed with * the 2026-07 rebuild). Two columns: positioning copy left, the memory-core * window visual right. All strings under `landing.hero.*`. */ export default async function Hero() { const t = await getTranslations('landing.hero'); return (
); }