diff --git a/src/app/page.tsx b/src/app/page.tsx index 88d082d..924c130 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,342 +1,138 @@ -"use client"; +'use client'; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import HeroCentered from '@/components/sections/hero/HeroCentered'; -import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroCentered from '@/components/sections/hero/HeroCentered'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; -import { Award, CheckCircle, MapPin, Percent, Shield, ShieldCheck, Star } from "lucide-react"; +import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; +import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { ShieldCheck, MapPin, Star, Award, CheckCircle } from 'lucide-react'; -export default function LandingPage() { +const navItems = [ + { name: 'Home', id: '/' }, +]; + +export default function Page() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
-
- -
- -
- - -
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
); -} +} \ No newline at end of file