diff --git a/src/app/page.tsx b/src/app/page.tsx index f2bc7b1..d14ba60 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,495 +1,161 @@ -"use client"; +'use client'; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; -import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; import TextAbout from '@/components/sections/about/TextAbout'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import Link from 'next/link'; -export default function LandingPage() { +export default function Page() { + const navItems = [{ name: "Home", id: "/" }]; + return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); -} +} \ No newline at end of file