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