export function StatsStripBlock({ stats }: StatsStripProps) { if (!Array.isArray(stats) || stats.length === 0) return null return ( // Wrap in a container to match the max-width of your other blocks
{stats.map((stat, i) => (

{stat.value}

{stat.label}

))}
) }