diff --git a/src/app/page.tsx b/src/app/page.tsx index b9180e9..c6fba53 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,10 +30,14 @@ export default function LandingPage() { @@ -63,9 +67,15 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} metrics={[ - { id: "m1", value: "4.5", title: "Calificación Google", description: "Basado en 295 opiniones", icon: Star }, - { id: "m2", value: "10+", title: "Años de Experiencia", description: "Expertos en estética integral", icon: Award }, - { id: "m3", value: "5k+", title: "Clientes Satisfechos", description: "Tu confianza es nuestra prioridad", icon: Heart }, + { + id: "m1", value: "4.5", title: "Calificación Google", description: "Basado en 295 opiniones", icon: Star, + }, + { + id: "m2", value: "10+", title: "Años de Experiencia", description: "Expertos en estética integral", icon: Award, + }, + { + id: "m3", value: "5k+", title: "Clientes Satisfechos", description: "Tu confianza es nuestra prioridad", icon: Heart, + }, ]} title="Nuestra Trayectoria" description="Calidad respaldada por nuestros clientes." @@ -78,10 +88,38 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} plans={[ - { id: "p1", badge: "Corte", price: "$350", subtitle: "Corte de Dama", features: ["Lavado incluído", "Diseño de corte", "Secado técnico"], buttons: [{ text: "Reservar", href: "tel:2221138865" }] }, - { id: "p2", badge: "Corte", price: "$200", subtitle: "Corte de Caballero", features: ["Corte con tijera o máquina", "Perfilado", "Estilizado"], buttons: [{ text: "Reservar", href: "tel:2221138865" }] }, - { id: "p3", badge: "Color", price: "Desde $900", subtitle: "Color y Mechas", features: ["Diagnóstico capilar", "Aplicación profesional", "Tratamiento hidratante"], buttons: [{ text: "Reservar", href: "tel:2221138865" }] }, - { id: "p4", badge: "Especial", price: "$500", subtitle: "Estética Integral", features: ["Peinados especiales", "Maquillaje profesional", "Tratamientos capilares"], buttons: [{ text: "Reservar", href: "tel:2221138865" }] }, + { + id: "p1", badge: "Corte", price: "$350", subtitle: "Corte de Dama", features: [ + "Lavado incluído", "Diseño de corte", "Secado técnico"], + buttons: [ + { + text: "Reservar", href: "tel:2221138865"}, + ], + }, + { + id: "p2", badge: "Corte", price: "$200", subtitle: "Corte de Caballero", features: [ + "Corte con tijera o máquina", "Perfilado", "Estilizado"], + buttons: [ + { + text: "Reservar", href: "tel:2221138865"}, + ], + }, + { + id: "p3", badge: "Color", price: "Desde $900", subtitle: "Color y Mechas", features: [ + "Diagnóstico capilar", "Aplicación profesional", "Tratamiento hidratante"], + buttons: [ + { + text: "Reservar", href: "tel:2221138865"}, + ], + }, + { + id: "p4", badge: "Especial", price: "$500", subtitle: "Estética Integral", features: [ + "Peinados especiales", "Maquillaje profesional", "Tratamientos capilares"], + buttons: [ + { + text: "Reservar", href: "tel:2221138865"}, + ], + }, ]} title="Nuestros Servicios" description="Belleza personalizada para tu estilo de vida." @@ -101,9 +139,16 @@ export default function LandingPage() { @@ -130,13 +182,30 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/minimal-amazing-interior-design_23-2150534518.jpg" logoText="NUDO" columns={[ - { title: "Ubicación", items: [{ label: "Calle 39 Ote 1612, Col. Mirador, Puebla", href: "#" }] }, - { title: "Contacto", items: [{ label: "222 113 8865", href: "tel:2221138865" }] }, - { title: "Enlaces", items: [{ label: "Facebook", href: "#" }, { label: "Instagram", href: "#" }] }, + { + title: "Ubicación", items: [ + { + label: "Calle 39 Ote 1612, Col. Mirador, Puebla", href: "#"}, + ], + }, + { + title: "Contacto", items: [ + { + label: "222 113 8865", href: "tel:2221138865"}, + ], + }, + { + title: "Enlaces", items: [ + { + label: "Facebook", href: "#"}, + { + label: "Instagram", href: "#"}, + ], + }, ]} /> ); -} \ No newline at end of file +}