From 5400a657eef0f2b003666fb315198bdc1d2c0d4f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 13:15:55 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 29 +++++++++++++---------------- 1 file changed, 13 insertions(+), 16 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 2e5f6a5..e1d66dc 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -6,24 +6,25 @@ import ContactSplit from "@/components/sections/contact/ContactSplit"; import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; import { Phone, CheckCircle } from "lucide-react"; +import Link from "next/link"; export default function ContactPage() { const navItems = [ { name: "Inicio", id: "/" }, - { name: "El Doctor", id: "#doctor" }, - { name: "Especialidades", id: "#specialties" }, - { name: "Opiniones", id: "#reviews" }, - { name: "Contacto", id: "#contact" }, + { name: "El Doctor", id: "/doctor" }, + { name: "Especialidades", id: "/specialties" }, + { name: "Opiniones", id: "/reviews" }, + { name: "Contacto", id: "/contact" }, ]; const footerColumns = [ { items: [ { label: "Inicio", href: "/" }, - { label: "El Doctor", href: "#doctor" }, - { label: "Especialidades", href: "#specialties" }, - { label: "Opiniones", href: "#reviews" }, - { label: "Contacto", href: "#contact" }, + { label: "El Doctor", href: "/doctor" }, + { label: "Especialidades", href: "/specialties" }, + { label: "Opiniones", href: "/reviews" }, + { label: "Contacto", href: "/contact" }, ], }, { @@ -74,7 +75,6 @@ export default function ContactPage() { description="Contáctanos para agendar tu consulta. Atención personalizada y respuesta rápida garantizada. Puedes comunicarte por teléfono, WhatsApp o a través de este formulario." background={{ variant: "sparkles-gradient" }} useInvertedBackground={false} - imageAlt="Consultorio moderno" mediaAnimation="opacity" mediaPosition="right" inputPlaceholder="Tu correo electrónico" @@ -91,14 +91,11 @@ export default function ContactPage() { tagIcon={CheckCircle} metrics={[ { - id: "1", value: "📞", title: "Teléfono", description: "Llamadas directas: 0341 481-3209", videoSrc: "/videos/contact1.mp4", videoAriaLabel: "Contact method 1 video" - }, + id: "1", value: "📞", title: "Teléfono", description: "Llamadas directas: 0341 481-3209"}, { - id: "2", value: "💬", title: "WhatsApp", description: "Mensajería rápida: +54 9 341 481-3209", videoSrc: "/videos/contact2.mp4", videoAriaLabel: "Contact method 2 video" - }, + id: "2", value: "💬", title: "WhatsApp", description: "Mensajería rápida: +54 9 341 481-3209"}, { - id: "3", value: "📧", title: "Email", description: "Correo electrónico: info@neurorosario.com", videoSrc: "/videos/contact3.mp4", videoAriaLabel: "Contact method 3 video" - }, + id: "3", value: "📧", title: "Email", description: "Correo electrónico: info@neurorosario.com"}, ]} animationType="slide-up" textboxLayout="default" @@ -115,4 +112,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +}