Merge version_2 into main #1
308
src/app/page.tsx
308
src/app/page.tsx
@@ -31,22 +31,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Inicio",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Sobre Nosotros",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Servicios",
|
||||
id: "services",
|
||||
},
|
||||
{
|
||||
name: "Reservar",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Inicio", id: "hero" },
|
||||
{ name: "Sobre Nosotros", id: "about" },
|
||||
{ name: "Servicios", id: "services" },
|
||||
{ name: "Contacto", id: "contact" },
|
||||
]}
|
||||
brandName="PeluqueríaPro"
|
||||
/>
|
||||
@@ -54,67 +42,20 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Tu estilo, en manos de expertos"
|
||||
description="Reserva tu hora en línea fácilmente y disfruta de una experiencia única en nuestro salón. Calidad, profesionalismo y dedicación en cada corte."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-pretty-woman-posing-blue-wall_273443-3901.jpg",
|
||||
alt: "Cliente 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-young-elegant-man-smiling_23-2148332976.jpg",
|
||||
alt: "Cliente 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/side-view-happy-bride-holding-smartphone_23-2149722007.jpg",
|
||||
alt: "Cliente 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/baking-time-with-best-grandmother_329181-17830.jpg",
|
||||
alt: "Cliente 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/friendly-young-interracial-girls-good-mood-wear-nightgowns-pajama-party-leisure-lifestyle-beauty-concept_197531-31732.jpg",
|
||||
alt: "Cliente 5",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-pretty-woman-posing-blue-wall_273443-3901.jpg", alt: "Cliente 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/happy-young-elegant-man-smiling_23-2148332976.jpg", alt: "Cliente 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/side-view-happy-bride-holding-smartphone_23-2149722007.jpg", alt: "Cliente 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/baking-time-with-best-grandmother_329181-17830.jpg", alt: "Cliente 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/friendly-young-interracial-girls-good-mood-wear-nightgowns-pajama-party-leisure-lifestyle-beauty-concept_197531-31732.jpg", alt: "Cliente 5" },
|
||||
]}
|
||||
avatarText="+2000 clientes felices"
|
||||
buttons={[
|
||||
{
|
||||
text: "Reservar Ahora",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "Ver Servicios",
|
||||
href: "#services",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Reservar Ahora", href: "#contact" }, { text: "Ver Servicios", href: "#services" }]}
|
||||
buttonAnimation="slide-up"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Corte de Dama",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Coloración",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Tratamientos",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Perfilado",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Peinados",
|
||||
},
|
||||
]}
|
||||
marqueeItems={[{ type: "text", text: "Corte de Dama" }, { type: "text", text: "Coloración" }, { type: "text", text: "Tratamientos" }, { type: "text", text: "Perfilado" }, { type: "text", text: "Peinados" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -124,18 +65,9 @@ export default function LandingPage() {
|
||||
title="Más de una década de estilo"
|
||||
description="En PeluqueríaPro, transformamos el cuidado personal en un momento de relajación y transformación. Nuestro equipo combina técnicas modernas con la atención al detalle que buscas."
|
||||
metrics={[
|
||||
{
|
||||
value: "15+",
|
||||
title: "Años de Experiencia",
|
||||
},
|
||||
{
|
||||
value: "10k+",
|
||||
title: "Cortes Realizados",
|
||||
},
|
||||
{
|
||||
value: "98%",
|
||||
title: "Clientes Satisfechos",
|
||||
},
|
||||
{ value: "15+", title: "Años de Experiencia" },
|
||||
{ value: "10k+", title: "Cortes Realizados" },
|
||||
{ value: "98%", title: "Clientes Satisfechos" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-young-beautiful-woman-looking-camera-while-standing-counter-movie-house_613910-21690.jpg"
|
||||
imageAlt="Salon experto"
|
||||
@@ -150,36 +82,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "f1",
|
||||
label: "Calidad",
|
||||
title: "Productos Premium",
|
||||
items: [
|
||||
"Productos orgánicos",
|
||||
"Cuidado capilar avanzado",
|
||||
"Resultados duraderos",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
label: "Experiencia",
|
||||
title: "Equipo Calificado",
|
||||
items: [
|
||||
"Estilistas certificados",
|
||||
"Actualización constante",
|
||||
"Trato personalizado",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
label: "Conveniencia",
|
||||
title: "Reserva Rápida",
|
||||
items: [
|
||||
"Disponibilidad 24/7",
|
||||
"Sin esperas",
|
||||
"Notificaciones de cita",
|
||||
],
|
||||
},
|
||||
{ id: "f1", label: "Calidad", title: "Productos Premium", items: ["Productos orgánicos", "Cuidado capilar avanzado", "Resultados duraderos"] },
|
||||
{ id: "f2", label: "Experiencia", title: "Equipo Calificado", items: ["Estilistas certificados", "Actualización constante", "Trato personalizado"] },
|
||||
{ id: "f3", label: "Conveniencia", title: "Reserva Rápida", items: ["Disponibilidad 24/7", "Sin esperas", "Notificaciones de cita"] },
|
||||
]}
|
||||
title="Por qué elegirnos"
|
||||
description="Ofrecemos beneficios que marcan la diferencia en tu visita."
|
||||
@@ -193,48 +98,10 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Corte de Dama",
|
||||
price: "$25.000",
|
||||
variant: "60 min",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lady-with-phone-standing-panoramic-kitchen-with-bright-walls-high-table-bar-chairs_231208-2962.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Corte de Caballero",
|
||||
price: "$15.000",
|
||||
variant: "30 min",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-hairdresser-cutting-hair-bearded-hipster-male-saloon_613910-5643.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Coloración Completa",
|
||||
price: "$45.000",
|
||||
variant: "120 min",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-cosmetic-products-frame-with-copy-space_23-2148261054.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Tratamiento Capilar",
|
||||
price: "$20.000",
|
||||
variant: "45 min",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/content-client-with-hair-dye_23-2147769778.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Peinado de Fiesta",
|
||||
price: "$30.000",
|
||||
variant: "60 min",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-eco-friendly-cleaning-products-with-baking-soda-brushes_23-2148818459.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Barba y Perfilado",
|
||||
price: "$12.000",
|
||||
variant: "20 min",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-artist-painting-studio_1303-11433.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Corte de Dama", price: "$25.000", variant: "60 min", imageSrc: "http://img.b2bpic.net/free-photo/lady-with-phone-standing-panoramic-kitchen-with-bright-walls-high-table-bar-chairs_231208-2962.jpg" },
|
||||
{ id: "p2", name: "Corte de Caballero", price: "$15.000", variant: "30 min", imageSrc: "http://img.b2bpic.net/free-photo/female-hairdresser-cutting-hair-bearded-hipster-male-saloon_613910-5643.jpg" },
|
||||
{ id: "p3", name: "Coloración Completa", price: "$45.000", variant: "120 min", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-cosmetic-products-frame-with-copy-space_23-2148261054.jpg" },
|
||||
{ id: "p4", name: "Tratamiento Capilar", price: "$20.000", variant: "45 min", imageSrc: "http://img.b2bpic.net/free-photo/content-client-with-hair-dye_23-2147769778.jpg" },
|
||||
]}
|
||||
title="Nuestros Servicios"
|
||||
description="Conoce todo lo que podemos hacer por tu imagen."
|
||||
@@ -247,63 +114,17 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "María González",
|
||||
role: "Cliente frecuente",
|
||||
company: "Cliente local",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-young-beautiful-woman-hairdresser-apron-looking-front-feeling-positive-emotions-with-hands-her-cheeks-standing-green-wall_141793-71508.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Juan Pérez",
|
||||
role: "Cliente frecuente",
|
||||
company: "Cliente local",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/preparing-day-work_329181-4770.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Sofía López",
|
||||
role: "Cliente frecuente",
|
||||
company: "Cliente local",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-choosing-color-hair-dye_329181-1928.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Pedro García",
|
||||
role: "Cliente frecuente",
|
||||
company: "Cliente local",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-blue-eyed-romantic-girl-playing-with-wavy-hair-winsome-tanned-female-model_197531-9118.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Lucía Martínez",
|
||||
role: "Cliente frecuente",
|
||||
company: "Cliente local",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friendly-young-interracial-girls-good-mood-wear-nightgowns-pajama-party-leisure-lifestyle-beauty-concept_197531-31732.jpg",
|
||||
},
|
||||
{ id: "t1", name: "Elena R.", role: "Reserva Online", company: "Cliente frecuente", rating: 5 },
|
||||
{ id: "t2", name: "Carlos M.", role: "Sistema de citas", company: "Nuevo cliente", rating: 5 },
|
||||
{ id: "t3", name: "Ana P.", role: "Facilidad de uso", company: "Cliente fiel", rating: 5 },
|
||||
]}
|
||||
kpiItems={[
|
||||
{
|
||||
value: "4.9/5",
|
||||
label: "Google Rating",
|
||||
},
|
||||
{
|
||||
value: "95%",
|
||||
label: "Recomendación",
|
||||
},
|
||||
{
|
||||
value: "2.5k",
|
||||
label: "Reservas Mensuales",
|
||||
},
|
||||
{ value: "99%", label: "Citas Online Exitosas" },
|
||||
{ value: "24/7", label: "Disponibilidad Reserva" },
|
||||
{ value: "5 Min", label: "Tiempo Promedio de Gestión" },
|
||||
]}
|
||||
title="Lo que dicen de nosotros"
|
||||
description="Nuestros clientes avalan nuestro compromiso con la excelencia."
|
||||
title="Clientes Satisfechos con nuestro Sistema"
|
||||
description="Gracias a nuestra plataforma, reservar tu cita nunca fue tan fácil y rápido."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -313,33 +134,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "24/7",
|
||||
title: "Reservas Abiertas",
|
||||
items: [
|
||||
"Reserva cuando quieras",
|
||||
"Cancelaciones fáciles",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "30min",
|
||||
title: "Tiempo Promedio",
|
||||
items: [
|
||||
"Servicio eficiente",
|
||||
"Calidad sin demoras",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "100%",
|
||||
title: "Compromiso",
|
||||
items: [
|
||||
"Satisfacción garantizada",
|
||||
"Atención humana",
|
||||
],
|
||||
},
|
||||
{ id: "m1", value: "24/7", title: "Reservas Abiertas", items: ["Reserva cuando quieras", "Cancelaciones fáciles"] },
|
||||
{ id: "m2", value: "30min", title: "Tiempo Promedio", items: ["Servicio eficiente", "Calidad sin demoras"] },
|
||||
{ id: "m3", value: "100%", title: "Compromiso", items: ["Satisfacción garantizada", "Atención humana"] },
|
||||
]}
|
||||
title="Cifras que inspiran confianza"
|
||||
description="Tu confianza nos impulsa a seguir mejorando cada día."
|
||||
@@ -351,24 +148,12 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "¿Cómo reservo una hora?",
|
||||
content: "Puedes reservar a través de nuestra web seleccionando tu servicio y horario deseado.",
|
||||
},
|
||||
{
|
||||
id: "q2",
|
||||
title: "¿Puedo cancelar mi cita?",
|
||||
content: "Sí, puedes cancelar hasta 24 horas antes sin recargo alguno.",
|
||||
},
|
||||
{
|
||||
id: "q3",
|
||||
title: "¿Atienden fines de semana?",
|
||||
content: "Sí, contamos con horario extendido sábados y domingos bajo reserva previa.",
|
||||
},
|
||||
{ id: "q1", title: "¿Cómo gestiono mi reserva online?", content: "Simplemente elige tu servicio y el horario disponible desde nuestra sección de reservas." },
|
||||
{ id: "q2", title: "¿Recibiré confirmación de mi cita?", content: "Sí, recibirás un correo automático confirmando tu cita tras completar el proceso en nuestro sistema." },
|
||||
{ id: "q3", title: "¿Puedo reprogramar mi hora de salón?", content: "Absolutamente. Puedes hacerlo directamente desde el enlace en tu correo de confirmación de reserva." },
|
||||
]}
|
||||
title="Preguntas frecuentes"
|
||||
description="Resolvemos tus dudas sobre el proceso de reserva."
|
||||
description="Resolvemos tus dudas sobre nuestro sistema de reserva online."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -376,18 +161,11 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
tag="Reserva ya"
|
||||
title="¡Agenda tu hora hoy mismo!"
|
||||
description="Estamos listos para transformar tu estilo. Selecciona tu servicio y elige el horario que más te convenga."
|
||||
buttons={[
|
||||
{
|
||||
text: "Reservar Ahora",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
tag="Ubicación y Reserva"
|
||||
title="PeluqueríaPro | Visítanos"
|
||||
description="Estamos en Av. Principal 123, Ciudad. Reserva tu hora hoy mismo y disfruta de una experiencia inolvidable."
|
||||
buttons={[{ text: "Reservar Online Ahora", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -400,4 +178,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user