From 24300e858c162c03e9b0c4ffe3c838a908c8d1c7 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 11:55:57 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 138 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 138 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..1095aa8 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,138 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Mail, MapPin, Phone, MessageCircle } from "lucide-react"; + +export default function ContactPage() { + return ( + + + +
+ console.log("Email submitted:", email)} + /> +
+ +
+
+
+
+
+
+ +
+
+

Email

+

support@airpods.com

+

We'll respond within 24 hours

+
+
+ +
+
+ +
+
+

Phone

+

1-800-MY-APPLE

+

Available Monday to Friday, 9am-6pm EST

+
+
+ +
+
+ +
+
+

Visit Us

+

Apple Retail Stores

+

Find your nearest store worldwide

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