From ffd8d88e8228860e19ab9127e6a06d9ab62953d9 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 16:25:51 +0000 Subject: [PATCH] Update components/pricing.tsx --- components/pricing.tsx | 77 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 components/pricing.tsx diff --git a/components/pricing.tsx b/components/pricing.tsx new file mode 100644 index 0000000..3beea86 --- /dev/null +++ b/components/pricing.tsx @@ -0,0 +1,77 @@ +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} +
  • + ))} +
+
+ + + +
+ ))} +
+
+
+ ); +}