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