diff --git a/src/app/page.tsx b/src/app/page.tsx index dde6bbe..376cb26 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,172 +2,155 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; -import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; export default function LandingPage() { + const navItems = [ + { name: "Inicio", id: "/" }, + { name: "Servicios", id: "/services" }, + { name: "Dashboard", id: "/dashboard" }, + { name: "Proceso", id: "/process" }, + { name: "Diagnóstico", id: "/diagnosis" } + ]; + return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
);