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

+
+ + Facebook + + + Instagram + + + Twitter + + + LinkedIn + +
+
+
+
+ + +
+ ); +}