From f577ac231e1f77277e3b848fc997603350dba5e3 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 12 Apr 2026 10:54:05 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 237 ++++++++++++++++++++--------------------------- 1 file changed, 102 insertions(+), 135 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9621ba0..1887fb4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,7 +1,6 @@ -"use client"; +'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; import TextAbout from '@/components/sections/about/TextAbout'; @@ -11,140 +10,108 @@ import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCar import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -export default function LandingPage() { +export default function HomePage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } + ]; + return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); -} +} \ No newline at end of file -- 2.49.1