From cc9a17a5cdb3876e1b5e99392da12c1a8bf37da9 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 2 Jun 2026 23:51:28 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 122 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 122 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..7cbc1ad --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,122 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FaqDouble from '@/components/sections/faq/FaqDouble'; +import { MessageSquare, Sparkles } from "lucide-react"; + +// Define common navigation items and footer columns for consistency across pages +const APP_NAV_ITEMS = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, { name: "Services", id: "/#features" }, + { name: "Portfolio", id: "/#products" }, + { name: "Pricing", id: "/#pricing" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "Contact", id: "/contact" }, +]; + +const APP_FOOTER_COLUMNS = [ + { + title: "Services", items: [ + { label: "Web Development", href: "/#features" }, + { label: "Mobile Apps", href: "/#features" }, + { label: "Source Code", href: "/#products" }, + { label: "UI/UX Design", href: "/#features" }, + ], + }, + { + title: "Company", items: [ + { label: "About Us", href: "/about" }, + { label: "Portfolio", href: "/#products" }, + { label: "Pricing", href: "/#pricing" }, + { label: "Testimonials", href: "/#testimonials" }, + ], + }, + { + title: "Connect", items: [ + { label: "Contact", href: "/contact" }, + { label: "LinkedIn", href: "https://linkedin.com/albertdev" }, + { label: "Twitter", href: "https://twitter.com/albertdev" }, + ], + }, +]; + +export default function ContactPage() { + return ( + + + + +
+ console.log("Contact form submitted with email:", email)} // Placeholder + /> +
+ +
+ +
+ + +
+
+ ); +}