From 858c365710c3576aaf92abe8afa05ca7e7ca1dcc Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 10:56:38 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 143 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 143 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..f593333 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,143 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import ContactFaq from "@/components/sections/contact/ContactFaq"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Mail, Phone, MessageCircle } from "lucide-react"; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+
+

Contact Information

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

Email

+

support@timelux.com

+

Response time: Within 24 hours

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

Phone

+

+41 (0) 44 XXX XXXX

+

Mon-Fri, 9:00 AM - 6:00 PM CET

+
+ + {/* WhatsApp */} +
+ +

WhatsApp

+

+41 XXXX XXXXX

+

Quick replies & support

+
+
+ + {/* Social Links Section */} +
+

Follow Us

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