import { getTranslations } from 'next-intl/server'; import Reveal from './Reveal'; import styles from './ProblemTurn.module.css'; const BEATS = ['reintroduce', 'tabs', 'compound'] as const; /** * The problem statement ("every AI session starts from zero") in three * beats, then the turn — Waggle's opposite bet — as a pull-quote with a * honey rule. Strings under `landing.problem.*`. */ export default async function ProblemTurn() { const t = await getTranslations('landing.problem'); return (

{t('eyebrow')}

{t('headline')}

{BEATS.map((beat, i) => (

{t(`beats.${beat}.title`)}

{t(`beats.${beat}.body`)}

))}

{t('turn')}

); }