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

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