From e72a9d12b491d94ced7aee2ce3989438d8a63073 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 2 Apr 2026 21:53:08 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 402 ++++++++++++++--------------------------------- 1 file changed, 117 insertions(+), 285 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3ff6a4b..b6e17df 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,304 +1,136 @@ -"use client"; - +'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import Link from "next/link"; -export default function LandingPage() { +const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } +]; + +export default function HomePage() { return ( - - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
- - -
+
); } -- 2.49.1