diff --git a/src/app/page.tsx b/src/app/page.tsx index fbcf8be..3a0cd76 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,405 +1,53 @@ -"use client"; +'use client'; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import HeroBillboard from '@/components/sections/hero/HeroBillboard'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; -import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import Link from 'next/link'; + +export default function Page() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } + ]; -export default function LandingPage() { return ( - - - - -
- -
- -
- -
- -
- -
- - - -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
); -} +} \ No newline at end of file