src/app/(hero)/about/_blocks/stats.tsximport { Section } from '@/components/section'import { Heading } from '@/components/heading'import { Paragraph } from '@/components/paragraph'import { StatisticsStrip } from '@/components/statistics-strip'import { extendedStats } from '@/config'/** Key figures for the About page, driven by `extendedStats` in @/config. */export default function Stats() {return (<Section className="bg-body2 py-20 md:py-28"><div className="mb-12 max-w-3xl"><Heading as="h2">By the Numbers</Heading><Heading as="h3">Capability, Measured</Heading><Paragraphcolor="text-contrast-light"margin="mb-0">Figures reflect typical recent performance and are reviewed as theoperation changes.</Paragraph></div><StatisticsStripstats={extendedStats}cols="sm:grid-cols-2 lg:grid-cols-3"/></Section>)}