From 39583c86e0a403a03e8c42a733085ee777367fc1 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 16:25:27 +0000 Subject: [PATCH] Update components/contact.tsx --- components/contact.tsx | 92 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 components/contact.tsx diff --git a/components/contact.tsx b/components/contact.tsx new file mode 100644 index 0000000..9b7f036 --- /dev/null +++ b/components/contact.tsx @@ -0,0 +1,92 @@ +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

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