import { useI18n } from '../i18n' import { Callout } from '../components/ui' /** Research/lab landing. The fingerprint-IMAGE demo lives ONLY here — never in the normal * customer flow — with a prominent disclaimer that a website cannot read a phone's sensor. */ export function BiometricsLabPage({ onNav }: { onNav: (r: string) => void }) { const { t } = useI18n() return (

{t('lab.title')}

{t('lab.subtitle')}

{t('lab.fingerprint.title')}

{t('lab.fingerprint.disclaimer')}

{t('bio.confirmDevice')} — {t('security.device.explain')}

) }