From 66d9a6bdc02d853fc5b51ae868dbcdf33bf6dce5 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:40:18 +0000 Subject: [PATCH] Add src/app/contact-us/page.tsx --- src/app/contact-us/page.tsx | 87 +++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 src/app/contact-us/page.tsx diff --git a/src/app/contact-us/page.tsx b/src/app/contact-us/page.tsx new file mode 100644 index 0000000..4c6108b --- /dev/null +++ b/src/app/contact-us/page.tsx @@ -0,0 +1,87 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import { Twitter, Linkedin, Instagram } from "lucide-react"; + +export default function ContactUsPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "#about" }, + { name: "Features", id: "#features" }, + { name: "Explore", id: "#explore" }, + { name: "Metrics", id: "#metrics" }, + { name: "Testimonials", id: "#testimonials" }, + { name: "Partners", id: "#partners" }, + { name: "FAQ", id: "#faq" }, + { name: "Contact Us", id: "/contact-us" }, + { name: "Privacy Policy", id: "/privacy-policy" }, + { name: "Terms of Service", id: "/terms-of-service" }, + ]; + + return ( + + + + +
+ { + console.log("Contact form submitted:", data); + alert("Your message has been sent!"); + }} + /> +
+ + +
+
+ ); +}