Update src/app/contact/page.tsx

This commit is contained in:
2026-03-11 13:03:33 +00:00
parent a406e708db
commit cd2d3af1cc

View File

@@ -6,25 +6,24 @@ 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" },
],
},
{
@@ -75,7 +74,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}
imageSrc="https://images.unsplash.com/photo-1631217314830-4275b6ba2f41?w=800&h=600&fit=crop&_wi=5"
imageAlt="Consultorio moderno"
mediaAnimation="opacity"
mediaPosition="right"
@@ -93,11 +91,11 @@ export default function ContactPage() {
tagIcon={CheckCircle}
metrics={[
{
id: "1", value: "📞", title: "Teléfono", description: "Llamadas directas: 0341 481-3209", imageSrc: "https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=400&h=400&fit=crop&_wi=2", imageAlt: "Contacto telefónico"},
id: "1", value: "📞", title: "Teléfono", description: "Llamadas directas: 0341 481-3209", imageAlt: "Contacto telefónico"},
{
id: "2", value: "💬", title: "WhatsApp", description: "Mensajería rápida: +54 9 341 481-3209", imageSrc: "https://images.unsplash.com/photo-1631217314830-4275b6ba2f41?w=400&h=400&fit=crop", imageAlt: "WhatsApp"},
id: "2", value: "💬", title: "WhatsApp", description: "Mensajería rápida: +54 9 341 481-3209", imageAlt: "WhatsApp"},
{
id: "3", value: "📧", title: "Email", description: "Correo electrónico: info@neurorosario.com", imageSrc: "https://images.unsplash.com/photo-1576091160550-112173f7f869?w=400&h=400&fit=crop", imageAlt: "Email"},
id: "3", value: "📧", title: "Email", description: "Correo electrónico: info@neurorosario.com", imageAlt: "Email"},
]}
animationType="slide-up"
textboxLayout="default"
@@ -114,4 +112,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}