From c838cc884b67d9fb0bbfc8b2a8e6409755b91761 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 2 Apr 2026 23:00:23 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 386 ++++++++++++----------------------------------- 1 file changed, 96 insertions(+), 290 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e5d6471..5d891d2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,301 +1,107 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; -import FooterBase from '@/components/sections/footer/FooterBase'; -import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; -import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; +import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import Link from "next/link"; -export default function LandingPage() { +const navItems = [{ name: "Home", id: "/" }]; + +export default function Page() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); } -- 2.49.1