Update src/app/contact/page.tsx

This commit is contained in:
2026-03-11 13:15:55 +00:00
parent e205669055
commit 5400a657ee

View File

@@ -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() {
</div>
</ThemeProvider>
);
}
}