diff --git a/src/app/page.tsx b/src/app/page.tsx index f6a4ee3..5064c9b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,443 +1,129 @@ -"use client"; +'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; -import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import TeamCardSix from '@/components/sections/team/TeamCardSix'; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; +import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; +import TeamCardSix from '@/components/sections/team/TeamCardSix'; +import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import Link from 'next/link'; -export default function LandingPage() { +const navItems = [{ name: "Home", id: "/" }]; + +export default function HomePage() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); }