diff --git a/src/app/page.tsx b/src/app/page.tsx index 7f8e46c..2b80d18 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; +import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi"; +import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; import FeatureCardNine from "@/components/sections/feature/FeatureCardNine"; import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; @@ -357,7 +358,6 @@ export default function LandingPage() { const handleBookingSubmit = (data: any) => { console.log('Booking submitted:', data); - // Here you would typically send this to your backend alert(`Booking confirmed for ${data.name} on ${data.date} at ${data.time}`); }; @@ -386,6 +386,7 @@ export default function LandingPage() { navItems={[ { name: "Services", id: "services" }, { name: "About", id: "about" }, + { name: "Features", id: "features" }, { name: "Testimonials", id: "testimonials" }, { name: "Contact", id: "contact" }, ]} @@ -397,56 +398,28 @@ export default function LandingPage() {