diff --git a/src/app/page.tsx b/src/app/page.tsx index f9c3af0..c9862e8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,367 +1,141 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; -import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; -import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; -import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import TextAbout from '@/components/sections/about/TextAbout'; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; +import TextAbout from "@/components/sections/about/TextAbout"; +import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen"; +import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; +import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; +import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; +import FaqDouble from "@/components/sections/faq/FaqDouble"; +import ContactText from "@/components/sections/contact/ContactText"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; + +export default function HomePage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "#about" }, + { name: "Services", id: "#services" }, + { name: "Contact", id: "#contact" } + ]; -export default function LandingPage() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); }