From c1fb2e52fb418b572931a6d3cd1b99b7e4374e81 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 16:25:28 +0000 Subject: [PATCH] Update components/services.tsx --- components/services.tsx | 76 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 components/services.tsx diff --git a/components/services.tsx b/components/services.tsx new file mode 100644 index 0000000..ca70556 --- /dev/null +++ b/components/services.tsx @@ -0,0 +1,76 @@ +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Card, CardHeader, CardTitle, CardDescription, CardContent } from "@/components/ui/card"; +import { CheckCircle2, Sparkles, ShieldCheck, Car } from "lucide-react"; + +const services = [ + { + title: "Interior Detailing", + description: "Deep cleaning of all surfaces, steam cleaning, leather conditioning, and odor removal.", + icon: , + price: "Starting at $149", + features: ["Vacuum & Steam Clean", "Stain Removal", "Leather Treatment", "Dashboard UV Protection"] + }, + { + title: "Exterior Detailing", + description: "Hand wash, clay bar treatment, iron decontamination, and high-quality wax application.", + icon: , + price: "Starting at $129", + features: ["Foam Cannon Wash", "Wheel & Tire Deep Clean", "Clay Bar Treatment", "Hand Wax/Sealant"] + }, + { + title: "Ceramic Coating", + description: "Long-term protection and extreme gloss with professional-grade ceramic coatings.", + icon: , + price: "Starting at $599", + features: ["Multi-year Protection", "Hydrophobic Properties", "UV & Chemical Resistance", "Enhanced Gloss"] + }, + { + title: "Full Detail Package", + description: "The ultimate transformation for your vehicle, combining interior and exterior services.", + icon: , + price: "Starting at $249", + features: ["Complete Interior", "Complete Exterior", "Engine Bay Cleaning", "Paint Sealant"] + } +]; + +export function Services() { + return ( +
+ +
+ Our Premium Services + + Professional detailing solutions tailored to your vehicle's needs in Cedar Rapids and surrounding areas. + +
+ +
+ {services.map((service, index) => ( + + +
{service.icon}
+ {service.title} + {service.price} +
+ +

+ {service.description} +

+
    + {service.features.map((feature, fIndex) => ( +
  • + + {feature} +
  • + ))} +
+
+
+ ))} +
+
+
+ ); +}