diff --git a/components/services.tsx b/components/services.tsx index dac7a7a..03a2a8e 100644 --- a/components/services.tsx +++ b/components/services.tsx @@ -1,50 +1,65 @@ +"use client"; import { Container } from "@/components/container"; import { Heading } from "@/components/heading"; import { Subheading } from "@/components/subheading"; import { Sparkles, Droplets, Shield, Clock } from "lucide-react"; +import { CardBody, CardContainer, CardItem } from "@/components/ui/3d-card"; const services = [ { title: "Full Interior Deep Clean", description: "Vacuuming, floor mats, dashboard wipe-down, and window cleaning. We get into all the cracks and crevices.", - icon: Droplets + icon: Droplets, + price: "$80" }, { title: "Exterior Hand Wash", description: "Safe hand wash and dry. No scratchy automatic brushes—just soft microfiber and premium soap.", - icon: Sparkles + icon: Sparkles, + price: "$40" }, { title: "Wheel & Tire Shine", description: "We scrub the brake dust off your rims and apply a long-lasting tire shine for that showroom look.", - icon: Shield + icon: Shield, + price: "$25" }, { - title: "Quick Turnaround", - description: "We work efficiently right in your driveway or ours. Most jobs done in 2-3 hours.", - icon: Clock + title: "Full Detail Package", + description: "The ultimate treatment. Interior deep clean plus exterior wash and tire shine for a complete refresh.", + icon: Clock, + price: "$110" } ]; export function Services() { return ( -
+
- What We Do + What I Do - Real human service. We use professional-grade tools and a lot of patience to get your car spotless. + Professional results. I use top-tier pressure washers, steam cleaners, and premium chemicals to get your car spotless.
{services.map((service, i) => ( -
-
- -
-

{service.title}

-

{service.description}

-
+ + + + + + + {service.title} + + + {service.description} + + + {service.price} + + + ))}