From 2dc973a4f242f21c6276a30853e29af0e54f20ec Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Mar 2026 07:01:43 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 65 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 64 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e1eaa6d..7e04cf5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,10 +9,15 @@ import SplitAbout from '@/components/sections/about/SplitAbout'; import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import ContactSplit from '@/components/sections/contact/ContactSplit'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import { Zap, Clock, Heart, Star } from 'lucide-react'; +import { Zap, Clock, Heart, Star, MapPin, Phone, Clock3 } from 'lucide-react'; export default function LandingPage() { + const handleContactSubmit = (data: Record) => { + console.log('Contact form submitted:', data); + }; + return ( @@ -204,6 +210,33 @@ export default function LandingPage() { /> +
+ +
+
+ +
+
+ + + Call + + + + Location + + + + Contact + +
+
); } -- 2.49.1