Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
27 lines
979 B
TypeScript
27 lines
979 B
TypeScript
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 (
|
|
<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>
|
|
)
|
|
}
|