"use client"; const stats = [ { value: "$150-200", label: "Average Savings Per Order", }, { value: "1-2 Days", label: "Delivery Turnaround", }, { value: "Since 2018", label: "Serving Colorado", }, { value: "100%", label: "Customer Satisfaction", }, ]; export default function Stats() { return (
{stats.map((stat, index) => (
{stat.value}
{stat.label}
))}
); }