diff --git a/src/app/page.tsx b/src/app/page.tsx index 0808fb8..ed96f5d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,335 +1,128 @@ -"use client"; - -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; +import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; -import TeamCardTen from '@/components/sections/team/TeamCardTen'; -import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; -import { ShieldCheck } from "lucide-react"; +import TeamCardTen from '@/components/sections/team/TeamCardTen'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { ShieldCheck } from 'lucide-react'; + +export default function Home() { + const navItems = [ + { name: "Home", id: "hero" }, + { name: "Promise", id: "trust" }, + { name: "Services", id: "services" }, + { name: "Gallery", id: "gallery" }, + { name: "Reviews", id: "reviews" }, + { name: "Team", id: "team" } + ]; -export default function LandingPage() { return ( - - - - -
- -
- -
- -
- -
- -
- - - -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
); -} +} \ No newline at end of file