From db10c0c85ed04043fa0caccc3eeb87f8b459f71a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 23:37:55 +0000 Subject: [PATCH 1/2] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 202 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 202 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..bec9076 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,202 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { Mail, MapPin, Phone, Clock, Facebook, Twitter, Linkedin, Instagram } from "lucide-react"; +import { useState } from "react"; + +export default function ContactPage() { + const [formData, setFormData] = useState({ + name: "", email: "", phone: "" + }); + + const handleFormSubmit = (data: Record) => { + console.log("Contact form submitted:", data); + setFormData({ name: "", email: "", phone: "" }); + }; + + return ( + + + +
+
+ {/* Left Column - Contact Info */} +
+
+

Get in Touch

+

Have questions about our services? We're here to help. Contact us through any of the methods below or fill out the form.

+
+ + {/* Phone */} +
+
+ +
+
+

Phone

+

Call us for immediate assistance

+ + +1 (972) 272-8000 + +
+
+ + {/* Location */} +
+
+ +
+
+

Location

+

Visit us at our facility

+

+ Dallas Automotive
+ 1234 Motor Lane
+ Dallas, TX 75001 +

+
+
+ + {/* Hours */} +
+
+ +
+
+

Business Hours

+
+

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

+

Saturday: 9:00 AM - 4:00 PM

+

Sunday: Closed

+
+
+
+ + {/* Email */} +
+
+ +
+
+

Email

+

Send us your inquiry

+ + info@dallasautomotive.com + +
+
+ + {/* Social Media */} +
+

Follow Us

+ +
+
+ + {/* Right Column - Contact Form & Map */} +
+ {/* Contact Form */} + + + {/* Google Map Placeholder */} +
+