const stats = [ { value: "18ms", label: "median read, p50 across all regions" }, { value: "99.98%", label: "uptime over the last twelve months" }, { value: "4.1B", label: "requests served in June" }, { value: "2,400+", label: "teams building on it today" }, ] export default function StatsRow() { return (
{stats.map((stat) => (

{stat.value}

{stat.label}

))}
) }