diff --git a/src/app/page.tsx b/src/app/page.tsx index 92bdd37..79be216 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,7 +7,7 @@ import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import ContactFaq from '@/components/sections/contact/ContactFaq'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterMedia from '@/components/sections/footer/FooterMedia'; import { Leaf, TreePine, Hammer, Fence, Wind, Sparkles } from "lucide-react"; @@ -19,6 +19,11 @@ const navItems = [ ]; const HomePage = () => { + const handleSubmit = (data: Record) => { + console.log("Form submitted with data:", data); + alert("Form submitted! We will get back to you soon."); + }; + return ( {
-