import { Container } from "@/components/container"; import { Heading } from "@/components/heading"; import { Subheading } from "@/components/subheading"; import { KleapForm } from "@/components/kleap-form"; import { Phone, Mail, MapPin, Clock } from "lucide-react"; export function Contact() { const fields = [ { name: "name", label: "Full Name", type: "text", required: true }, { name: "email", label: "Email Address", type: "email", required: true }, { name: "phone", label: "Phone Number", type: "tel", required: true }, { name: "service", label: "Service Interested In", type: "select", options: [ { label: "Interior Detailing", value: "interior" }, { label: "Exterior Detailing", value: "exterior" }, { label: "Full Detail Package", value: "full" }, { label: "Ceramic Coating", value: "ceramic" }, { label: "Other", value: "other" } ], required: true }, { name: "message", label: "Vehicle Make/Model & Details", type: "textarea", required: true } ]; return (
Get a Free Quote Ready to give your car the treatment it deserves? Fill out the form and we'll get back to you with a custom quote.

Call or Text

(319) 555-0123

Email Us

info@apexdetailingcr.com

Location

Cedar Rapids, IA

Hours

Mon-Sat: 8:00 AM - 6:00 PM

); }