import { getTranslations } from 'next-intl/server'; import Reveal from './Reveal'; import styles from './OpenSource.module.css'; const HIVE_MIND_URL = 'https://github.com/marolinik/hive-mind'; const NPM_URL = 'https://www.npmjs.com/package/@hive-mind/core'; /** * Open-source section: hive-mind (the memory substrate) with a terminal * showing the offline benchmark reproduction path. Command + output are * verbatim from the OSS repo (benchmarks/locomo/artifacts/w4-n1540/ * recount.mjs — verified against the local clone 2026-07-03); if that * script moves, update this terminal. Strings under `landing.open_source.*`. */ export default async function OpenSource() { const t = await getTranslations('landing.open_source'); return (

{t('eyebrow')}

{t('headline')}

{t('body')}

{t('cta_github')} {t('cta_npm')}
                
                  $ 
                  git clone https://github.com/marolinik/hive-mind{'\n'}
                  $ 
                  cd hive-mind/benchmarks/locomo{'\n'}
                  
                    # recount the committed judgments — no API keys, no network
                  
                  {'\n'}
                  $ 
                  node artifacts/w4-n1540/recount.mjs{'\n'}
                  
                    overall 1332/1540 = 86.49%{'\n'}
                    RECOUNT OK — committed judgments reproduce 86.49%.
                  
                
              
); }