import { Stat } from '@/components/ui/section'; import { fmtAgo, fmtInt } from '@/lib/format'; import type { StatsSnapshot } from '@/lib/types'; import { GroupTitle, StatGrid } from './shared'; /** Headline tiles of the global statistics dashboard, grouped by theme. All values come straight from the snapshot. */ export function StatsHeadline({ snapshot }: { snapshot: StatsSnapshot }) { const g = snapshot.global; const l = snapshot.launches; return (
Catalogue
Launch activity
Ecosystem
); }