import { Card, CardContent } from "@/components/ui/card" export function StatsSection() { const stats = [ { value: "6+", label: "Years of Experience" }, { value: "100+", label: "Machines Installed" }, { value: "20+", label: "Cities Served in Utah" }, { value: "100%", label: "FREE Installation" }, ] return (
{stats.map((stat, index) => (
{stat.value}
{stat.label}
))}
) }