diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..0b08cfd --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,108 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function ContactPage() { + const updatedNavItems = [ + { name: "Home", id: "/" }, + { name: "Features", id: "#features" }, + { name: "How It Works", id: "#how-it-works" }, + { name: "Impact", id: "#metrics" }, + { name: "Testimonials", id: "#testimonials" }, + { name: "FAQ", id: "#faq" }, + { name: "Contact", id: "/contact" }, + ]; + + return ( + + + + +
+ { + console.log("Contact form submitted:", data); + alert("Your message has been sent!"); + }} + /> +
+ + +
+
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index d234217..9cc393f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,6 +16,16 @@ import TestimonialCardThirteen from '@/components/sections/testimonial/Testimoni import { CheckCircle, DollarSign, FileText, LineChart, Recycle, Sparkles, TrendingUp, Trophy } from "lucide-react"; export default function LandingPage() { + const updatedNavItems = [ + { name: "Home", id: "/" }, + { name: "Features", id: "#features" }, + { name: "How It Works", id: "#how-it-works" }, + { name: "Impact", id: "#metrics" }, + { name: "Testimonials", id: "#testimonials" }, + { name: "FAQ", id: "#faq" }, + { name: "Contact", id: "/contact" }, + ]; + return (