diff --git a/src/app/page.tsx b/src/app/page.tsx index 058e1a0..fa048f3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,338 +1,130 @@ "use client"; - +import React from 'react'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; -import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; +import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -export default function LandingPage() { +const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } +]; + +export default function Page() { return ( - - - - -
-
- -
- -
- -
- -
- -
-
- -
- -
- -
- -
- - -
+ + +
+
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
); -} +} \ No newline at end of file