From bf607f7aa67f962ef70a7c6f329e96f3d235863e Mon Sep 17 00:00:00 2001 From: Marco Gallegos Date: Fri, 16 Jan 2026 15:45:28 -0600 Subject: [PATCH] feat: Implementar frontend completo de anchor23.mx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Crear landing page con hero, fundamento, servicios y testimoniales - Crear página de servicios con grid y descripciones - Crear página de historia con filosofía de la marca - Crear página de contacto con formulario - Crear página de franchises con solicitud - Crear página de membresías con 3 tiers (Gold, Black, VIP) - Crear páginas de Privacy Policy y Legal - Implementar header y footer global - Estilos con Tailwind CSS según especificaciones - HTML semántico y estructura clara - Conversión silenciosa hacia booking.anchor23.mx --- app/contacto/page.tsx | 175 ++++++++++++++++++++++ app/franchises/page.tsx | 274 ++++++++++++++++++++++++++++++++++ app/globals.css | 216 ++++++++++++++++++++++++--- app/historia/page.tsx | 88 +++++++++++ app/layout.tsx | 52 ++++++- app/legal/page.tsx | 160 ++++++++++++++++++++ app/membresias/page.tsx | 290 ++++++++++++++++++++++++++++++++++++ app/page.tsx | 95 ++++++++++++ app/privacy-policy/page.tsx | 122 +++++++++++++++ app/servicios/page.tsx | 65 ++++++++ 10 files changed, 1515 insertions(+), 22 deletions(-) create mode 100644 app/contacto/page.tsx create mode 100644 app/franchises/page.tsx create mode 100644 app/historia/page.tsx create mode 100644 app/legal/page.tsx create mode 100644 app/membresias/page.tsx create mode 100644 app/page.tsx create mode 100644 app/privacy-policy/page.tsx create mode 100644 app/servicios/page.tsx 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. +

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