"use client"; import { Container } from "@/components/container"; import { Heading } from "@/components/heading"; import { Subheading } from "@/components/subheading"; import { KleapForm } from "@/components/kleap-form"; import { Footer } from "@/components/footer"; export default function ContactPage() { 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: "vehicle", label: "Vehicle Make & Model", type: "text", required: true }, { name: "service", label: "Service Interested In", type: "select", options: [ { label: "Express Detail", value: "express" }, { label: "Apex Signature", value: "signature" }, { label: "Ceramic Coating", value: "ceramic" }, { label: "Paint Correction", value: "correction" }, { label: "Other", value: "other" } ], required: true }, { name: "message", label: "Additional Details", type: "textarea", required: false }, ]; return (
Book Your Appointment Fill out the form below and we'll get back to you within 24 hours with a quote and availability.

Location

Serving Cedar Rapids, Marion, Hiawatha, and surrounding areas.

Hours

Monday - Friday: 8:00 AM - 6:00 PM

Saturday: 9:00 AM - 4:00 PM

Contact Info

(319) 555-0123

hello@apexdetailing.com

); }