import { getTranslations } from 'next-intl/server'; import Reveal from './Reveal'; import styles from './HowItWorks.module.css'; const STEPS = ['step_01', 'step_02', 'step_03'] as const; /** * Three-step product story: import history → work in workspaces → memory * compounds. Strings under `landing.how_it_works.*`. */ export default async function HowItWorks() { const t = await getTranslations('landing.how_it_works'); return (

{t('eyebrow')}

{t('headline')}

{STEPS.map((step, i) => (

{t(`${step}.title`)}

{t(`${step}.body`)}

))}
); }