From c4c91d7866beddde1dd73ccc211e522ed55b7e66 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 14 May 2026 23:03:19 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 264 ++++++++++++++++------------------------------- 1 file changed, 88 insertions(+), 176 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index acf7c42..e8e49f7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,185 +1,97 @@ -"use client"; +'use client'; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import FeatureBento from '@/components/sections/feature/FeatureBento'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import BlogCardThree from '@/components/sections/blog/BlogCardThree'; import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FeatureBento from '@/components/sections/feature/FeatureBento'; import FooterMedia from '@/components/sections/footer/FooterMedia'; -import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import SplitAbout from '@/components/sections/about/SplitAbout'; -import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import { Feather, Palette, User } from "lucide-react"; -export default function LandingPage() { +export default function Home() { + const navItems = [ + { name: 'Home', id: '/' }, + { name: 'About', id: '/about' }, + { name: 'Contact', id: '/contact' } + ]; + return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); } \ No newline at end of file -- 2.49.1