From 94cfb7710d88fbca27e0c8feb2dd9d478ccc2926 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 12:12:58 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 204 +++++++++------------------------------ 1 file changed, 46 insertions(+), 158 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 2c7fdc0..760702b 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,37 +2,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; import ContactFaq from "@/components/sections/contact/ContactFaq"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Phone, Mail } from "lucide-react"; -import { useState } from "react"; +import { Phone, Mail, MapPin, MessageCircle } from "lucide-react"; export default function ContactPage() { - const [formData, setFormData] = useState({ - name: "", email: "", subject: "", message: ""}); - const [submitted, setSubmitted] = useState(false); - - const handleInputChange = ( - e: React.ChangeEvent - ) => { - const { name, value } = e.target; - setFormData((prev) => ({ - ...prev, - [name]: value, - })); - }; - - const handleSubmit = (e: React.FormEvent) => { - e.preventDefault(); - // Here you would typically send the form data to a backend - console.log("Form submitted:", formData); - setSubmitted(true); - setTimeout(() => { - setFormData({ name: "", email: "", subject: "", message: "" }); - setSubmitted(false); - }, 3000); - }; - return ( -
-
-
- {/* Contact Information Section */} -
-
-
-
- -
-

Call Us

-
-

+1 (800) 275-2273

-

Available Monday to Friday, 9AM to 6PM EST

-
- -
-
-
- -
-

Email Us

-
-

support@airpods.com

-

We'll get back to you within 24 hours

-
- -
-
-
- -
-

Live Chat

-
-

Chat with our support team

-

Available 24/7 for immediate assistance

-
-
- - {/* Contact Form Section */} -
-

Send us a Message

-

Have a question or feedback? Fill out the form below and we'll get back to you as soon as possible.

- -
-
-
- - -
-
- - -
-
- -
- - -
- -
- -