import type { Stats } from "@/lib/types"; export function StatsStrip({ stats }: { stats: Stats | null }) { const item = (label: string, value: number | null) => ( {label} {value === null ? "-" : value} ); return (