From c1d0c2e4ea16c24488b2bd15420c5a9cf970c626 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 30 Apr 2026 14:22:34 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 184 +++++++++++------------------------------------ 1 file changed, 40 insertions(+), 144 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b5f7d90..c7a82b8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,152 +1,48 @@ "use client"; - import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; -import MediaAbout from '@/components/sections/about/MediaAbout'; -import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; +import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; +import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import MediaAbout from '@/components/sections/about/MediaAbout'; +import FaqBase from '@/components/sections/faq/FaqBase'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +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