From 6270e56521d49f0b20588e790b5bacf82dcc929a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 04:37:26 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 263 +++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 218 insertions(+), 45 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5cd1c11..6160dd1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,50 +1,223 @@ -'use client'; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard"; -import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; -import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; -import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; -import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; -import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; -import FaqSplitText from "@/components/sections/faq/FaqSplitText"; -import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; -import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import { Shield, Users, Zap, CheckCircle } from "lucide-react"; +"use client"; -export default function Page() { +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; +import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import { Coffee, CheckCircle, Leaf, Zap, Heart } from "lucide-react"; + +export default function LandingPage() { return ( - - -
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
- + + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
); } \ No newline at end of file -- 2.49.1