From 67a3cc01e01b8a24c7797de5da7d691583385261 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 5 Apr 2026 06:05:26 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 237 ++++++++++++++++++++--------------------------- 1 file changed, 103 insertions(+), 134 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 039f4f3..d10f048 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,142 +1,111 @@ -"use client"; +'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; -import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; -import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; -import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; +import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import Link from "next/link"; -export default function LandingPage() { +const navItems = [{ name: "Home", id: "/" }]; + +export default function Home() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); -} +} \ No newline at end of file -- 2.49.1