From 7c9883aea2abf0113f96d420f1a98e24a49994c3 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 16:25:29 +0000 Subject: [PATCH] Update app/contact/page.tsx --- app/contact/page.tsx | 72 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 app/contact/page.tsx diff --git a/app/contact/page.tsx b/app/contact/page.tsx new file mode 100644 index 0000000..e3ce7d5 --- /dev/null +++ b/app/contact/page.tsx @@ -0,0 +1,72 @@ +"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

+
+
+
+ +
+ +
+
+
+
+
+ ); +}