diff --git a/src/app/page.tsx b/src/app/page.tsx index f0d6135..594d92a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,361 +1,104 @@ "use client"; - import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; -import FooterBase from '@/components/sections/footer/FooterBase'; -import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; +import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterBase from '@/components/sections/footer/FooterBase'; + +export default function HomePage() { + const navItems = [ + { name: "Home", id: "#hero" }, + { name: "Tables", id: "#tables" }, + { name: "Reviews", id: "#reviews" }, + { name: "Contact", id: "#contact" } + ]; -export default function LandingPage() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); -} +} \ No newline at end of file