From b10604468b79c13fdccccba1fba7d025c8ad1223 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 17:18:50 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 445 +++++------------------------------------------ 1 file changed, 41 insertions(+), 404 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d3a0b7c..2b2c165 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,413 +1,50 @@ "use client"; - import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial'; -import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; -import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial'; +import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import FaqBase from '@/components/sections/faq/FaqBase'; +import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -export default function LandingPage() { +export default function Page() { + const navItems = [{ name: "Home", id: "/" }]; return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); -} +} \ No newline at end of file -- 2.49.1