import { getTranslations } from 'next-intl/server'; import Reveal from './Reveal'; import { LOCOMO_BARS } from '../_data/proof-points'; import styles from './ProofBand.module.css'; const HIVE_MIND_URL = 'https://github.com/marolinik/hive-mind'; /** * Benchmark proof band. The chart is honest by construction: bar widths are * raw scores on a 0–100 axis (no truncated baseline), the protocol footnote * names the judge, N, and significance, and both CTAs lead to verification * paths (methodology page, reproducible repo). Data from `_data/proof-points`. */ export default async function ProofBand() { const t = await getTranslations('landing.proof'); return (

{t('eyebrow')}

{t('headline')}

{t('body')}

{LOCOMO_BARS.map((bar) => (
{bar.system} {bar.detail} {bar.score.toFixed(2)}%
))}

{t('footnote')}

{t('cta_methodology')} {t('cta_reproduce')}
); }