diff --git a/src/app/page.tsx b/src/app/page.tsx index 26edd69..9adeb47 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,150 +30,43 @@ export default function LandingPage() {
@@ -186,45 +79,13 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={true} products={[ - { - id: "1", - name: "L'Oreal Absolute Repair", - price: "$85.000", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3By4CFDzydjhv4jgWUQPDjrLHhu/uploaded-1775448119693-mlmotzcw.jpg", - }, - { - id: "2", - name: "Olaplex Bond Repair", - price: "$120.000", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3By4CFDzydjhv4jgWUQPDjrLHhu/uploaded-1775448119694-ia96xp6c.jpg", - }, - { - id: "3", - name: "Schwarzkopf Fibre Clinix", - price: "$95.000", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3By4CFDzydjhv4jgWUQPDjrLHhu/uploaded-1775448119694-vgpbi2zq.jpg", - }, - { - id: "4", - name: "Oil Ultime Serum", - price: "$70.000", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3By4CFDzydjhv4jgWUQPDjrLHhu/uploaded-1775448119694-sp9r9wxa.jpg", - }, - { - id: "5", - name: "Professional Styling Balm", - price: "$65.000", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3By4CFDzydjhv4jgWUQPDjrLHhu/uploaded-1775448119694-x77y35vr.jpg", - }, - { - id: "6", - name: "Repair Oil Treatment", - price: "$90.000", - imageSrc: "http://img.b2bpic.net/free-photo/natural-jojoba-oil-composition_23-2149047771.jpg", - }, + { id: "1", name: "Reparación Profunda", price: "$85.000", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3By4CFDzydjhv4jgWUQPDjrLHhu/uploaded-1775448119693-mlmotzcw.jpg" }, + { id: "2", name: "Bond Builder", price: "$120.000", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3By4CFDzydjhv4jgWUQPDjrLHhu/uploaded-1775448119694-ia96xp6c.jpg" }, + { id: "3", name: "Clinix Treatment", price: "$95.000", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3By4CFDzydjhv4jgWUQPDjrLHhu/uploaded-1775448119694-vgpbi2zq.jpg" }, ]} - title="Cuidado Capilar Exclusivo" - description="Selección de productos profesionales de alta gama para mantener tu look siempre perfecto en casa." + title="Catálogo de Productos" + description="Adquiere los mismos productos profesionales que usamos en el salón para tu rutina en casa." + buttons={[{ text: "Ver Catálogo", href: "#products" }]} />
@@ -234,73 +95,21 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} plans={[ - { - id: "p1", - badge: "Popular", - price: "$250.000", - subtitle: "Técnica de balayage premium", - features: [ - "Diseño personalizado", - "Tratamiento incluido", - "Sellado de cutícula", - ], - }, - { - id: "p2", - badge: "Básico", - price: "$80.000", - subtitle: "Corte y peinado experto", - features: [ - "Lavado profundo", - "Corte estilo", - "Secado profesional", - ], - }, - { - id: "p3", - badge: "Plus", - price: "$150.000", - subtitle: "Alisados permanentes", - features: [ - "Producto sin formol", - "Brillo extremo", - "Hidratación molecular", - ], - }, + { id: "p1", badge: "Premium", price: "$250.000", subtitle: "Balayage & Color Design", features: ["Diagnóstico capilar", "Técnica personalizada", "Hidratación profunda"] }, + { id: "p2", badge: "Essential", price: "$80.000", subtitle: "Corte & Estilo", features: ["Lavado spa", "Corte personalizado", "Secado profesional"] }, + { id: "p3", badge: "Advanced", price: "$150.000", subtitle: "Tratamientos Capilares", features: ["Alisados sin formol", "Reparación estructural", "Brillo espejo"] }, ]} - title="Servicios Especializados" - description="Desde coloraciones de vanguardia hasta cortes modernos." + title="Nuestros Servicios" + description="Precios transparentes para servicios de alta calidad, realizados por estilistas expertos." />
@@ -309,12 +118,10 @@ export default function LandingPage() {
@@ -323,27 +130,15 @@ export default function LandingPage() { ); -} +} \ No newline at end of file diff --git a/src/app/servicios/balayage/page.tsx b/src/app/servicios/balayage/page.tsx new file mode 100644 index 0000000..6051014 --- /dev/null +++ b/src/app/servicios/balayage/page.tsx @@ -0,0 +1,24 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; + +export default function BalayagePage() { + return ( + + +
+ +
+ +
+ ); +} \ No newline at end of file