From 165c02b0f6efcc0d26e93348e25c7aaef62ffc7f Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 05:58:27 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 543 ++++++++++------------------------------------- 1 file changed, 113 insertions(+), 430 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6a62f8d..0fbaa39 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,438 +1,121 @@ -"use client"; - +'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; -import FooterCard from '@/components/sections/footer/FooterCard'; -import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; -import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import SplitAbout from '@/components/sections/about/SplitAbout'; +import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; +import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import Link from 'next/link'; -export default function LandingPage() { +const navItems = [{ name: "Home", id: "/" }]; + +export default function Page() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - - -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
); -} +} \ No newline at end of file -- 2.49.1