31 lines
1 KiB
TypeScript
31 lines
1 KiB
TypeScript
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 (
|
|
<section className="py-16 md:py-24 bg-card/30">
|
|
<div className="container mx-auto px-4">
|
|
<div className="grid grid-cols-2 gap-8 md:grid-cols-4">
|
|
{stats.map((stat, index) => (
|
|
<Card key={index} className="border-0 shadow-none bg-transparent">
|
|
<CardContent className="p-0 text-center">
|
|
<div className="text-4xl md:text-5xl font-bold text-primary mb-2">
|
|
{stat.value}
|
|
</div>
|
|
<div className="text-sm md:text-base text-muted-foreground">
|
|
{stat.label}
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
)
|
|
}
|