From 184ac7f3132e40909cab465d73defe2f280ebb50 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 14 May 2026 23:14:00 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 199 ++++++----------------------------------------- 1 file changed, 24 insertions(+), 175 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1cd5ddc..3117bd8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,185 +1,34 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; +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 HomePage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } + ]; + return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
); -} +} \ No newline at end of file