import { Card, CardContent } from "@/components/ui/card" export function StatsSection() { const stats = [ { value: "6+", label: "Years of Experience" }, { value: "3", label: "Counties Served" }, { value: "20+", label: "Cities Served in Utah" }, { value: "Full", label: "Service Support" }, ] return (
{stats.map((stat, index) => (
{stat.value}
{stat.label}
))}
) }