"use client"; import { Container } from "@/components/container"; import { Heading } from "@/components/heading"; import { Subheading } from "@/components/subheading"; import { KleapForm, KleapFormField } from "@/components/kleap-form"; import { Footer } from "@/components/footer"; import { Card } from "@/components/ui/card"; import { motion } from "framer-motion"; export default function ContactPage() { const fields: KleapFormField[] = [ { 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: "Full Interior Deep Clean ($80)", value: "interior" }, { label: "Exterior Hand Wash ($40)", value: "exterior" }, { label: "Wheel & Tire Shine ($25)", value: "wheels" }, { label: "Full Detail Package ($110)", value: "full" } ], required: true }, { name: "message", label: "Preferred Date & Time", type: "textarea", required: false }, ]; return (
Book Your Detail Fill out the form below and I'll get back to you within 2 hours with a quote and availability.

Location

Serving Cedar Rapids, IA and surrounding areas. I come to you!

Hours

Mon-Fri: 4:00 PM - 8:00 PM

Sat-Sun: 8:00 AM - 8:00 PM

💳 Secure Payments

After we confirm your time, I'll send a secure Stripe payment link to your email to lock in your spot.

); }