diff --git a/app/contacto/page.tsx b/app/contacto/page.tsx new file mode 100644 index 0000000..748451f --- /dev/null +++ b/app/contacto/page.tsx @@ -0,0 +1,175 @@ +'use client' + +import { useState } from 'react' +import { MapPin, Phone, Mail, Clock } from 'lucide-react' + +export default function ContactoPage() { + const [formData, setFormData] = useState({ + nombre: '', + email: '', + telefono: '', + mensaje: '' + }) + const [submitted, setSubmitted] = useState(false) + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault() + setSubmitted(true) + } + + const handleChange = (e: React.ChangeEvent) => { + setFormData({ + ...formData, + [e.target.name]: e.target.value + }) + } + + return ( +
+
+

Contáctanos

+

+ Estamos aquí para responder tus preguntas y atender tus necesidades. +

+
+ +
+
+
+
+

Información de Contacto

+ +
+
+ +
+

Ubicación

+

Saltillo, Coahuila, México

+
+
+ +
+ +
+

Teléfono

+

+52 844 123 4567

+
+
+ +
+ +
+

Email

+

contacto@anchor23.mx

+
+
+ +
+ +
+

Horario

+

Lunes - Sábado: 10:00 - 21:00

+
+
+
+
+ +
+

¿Necesitas reservar una cita?

+

+ Utiliza nuestro sistema de reservas en línea para mayor comodidad. +

+ + Reservar Cita + +
+
+ +
+

Envíanos un Mensaje

+ + {submitted ? ( +
+

+ Mensaje Enviado +

+

+ Gracias por contactarnos. Te responderemos lo antes posible. +

+
+ ) : ( +
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +