import { Container } from "@/components/container"; import { Heading } from "@/components/heading"; import { Subheading } from "@/components/subheading"; import { Card, CardHeader, CardTitle, CardContent, CardFooter } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Check } from "lucide-react"; import Link from "next/link"; const packages = [ { name: "Express Detail", price: "Starting at $149", description: "Perfect for regular maintenance.", features: ["Hand Wash & Dry", "Interior Vacuum", "Window Cleaning", "Tire Shine", "Spray Wax"], }, { name: "The Apex Signature", price: "Starting at $299", description: "Our most popular comprehensive package.", features: ["Everything in Express", "Clay Bar Treatment", "Interior Steam Clean", "Leather Conditioning", "6-Month Sealant"], popular: true, }, { name: "Ceramic Pro", price: "Starting at $899", description: "Ultimate protection and gloss.", features: ["Single Stage Correction", "Ceramic Coating (3yr)", "Wheel Coating", "Glass Coating", "Interior Protection"], }, ]; export function Pricing() { return (
Detailing Packages Transparent pricing for every level of care. Mobile service available in Cedar Rapids and surrounding areas.
{packages.map((pkg, index) => ( {pkg.popular && (
Most Popular
)} {pkg.name}
{pkg.price}

{pkg.description}

    {pkg.features.map((feature, i) => (
  • {feature}
  • ))}
))}
); }