145 lines
6.0 KiB
TypeScript
145 lines
6.0 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
|
import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern";
|
|
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
|
|
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
|
import { Scissors, Palette, Droplet, Sparkles, Zap, Heart } from "lucide-react";
|
|
|
|
export default function GaleriaPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="hover-bubble"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="rounded"
|
|
contentWidth="compact"
|
|
sizing="medium"
|
|
background="floatingGradient"
|
|
cardStyle="soft-shadow"
|
|
primaryButtonStyle="shadow"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="normal"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleFullscreen
|
|
navItems={[
|
|
{ name: "Inicio", id: "home" },
|
|
{ name: "Servicios", id: "services" },
|
|
{ name: "Nosotros", id: "about" },
|
|
{ name: "Contacto", id: "contact" },
|
|
{ name: "Reservar", id: "booking" },
|
|
]}
|
|
brandName="Hair Peluquería"
|
|
bottomLeftText="Alto NOA Shopping"
|
|
bottomRightText="0387 543-1113"
|
|
/>
|
|
</div>
|
|
|
|
<div id="services" data-section="services">
|
|
<FeatureHoverPattern
|
|
title="Nuestros Servicios Premium"
|
|
description="Descubre la gama completa de servicios profesionales diseñados para realzar tu belleza natural"
|
|
tag="Servicios"
|
|
features={[
|
|
{
|
|
icon: Scissors,
|
|
title: "Corte de Cabello",
|
|
description: "Cortes modernos y clásicos adaptados a tu estilo personal. Nuestros expertos crean líneas precisas que enmarcan tu rostro perfectamente.",
|
|
},
|
|
{
|
|
icon: Palette,
|
|
title: "Coloración Profesional",
|
|
description: "Transformaciones de color con técnicas avanzadas. Desde tonos naturales hasta cambios radicales, siempre manteniendo la salud de tu cabello.",
|
|
},
|
|
{
|
|
icon: Droplet,
|
|
title: "Tratamientos Capilares",
|
|
description: "Tratamientos profundos que restauran vitalidad. Keratin, hidratación intensiva y terapias de reparación para cabello radiante.",
|
|
},
|
|
{
|
|
icon: Sparkles,
|
|
title: "Peinados Especiales",
|
|
description: "Estilos elegantes para eventos especiales. Novias, eventos corporativos o citas importantes, creamos tu look perfecto.",
|
|
},
|
|
{
|
|
icon: Zap,
|
|
title: "Barbería Profesional",
|
|
description: "Servicios de barbería tradicional y moderna. Cortes precisos, afeitadas clásicas y diseño de barba con técnica experta.",
|
|
},
|
|
{
|
|
icon: Heart,
|
|
title: "Cuidado Capilar",
|
|
description: "Asesoramiento personalizado y productos premium. Rutinas diseñadas especialmente para mantener tu cabello siempre en perfecto estado.",
|
|
},
|
|
]}
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardTwelve
|
|
cardTitle="Más de 195 clientes satisfechos confían en Hair Peluquería para sus transformaciones de belleza"
|
|
cardTag="Opiniones de Clientes"
|
|
cardTagIcon={Heart}
|
|
cardAnimation="slide-up"
|
|
useInvertedBackground={false}
|
|
testimonials={[
|
|
{
|
|
id: "1",
|
|
name: "María González",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-red-haired-man_158595-3781.jpg",
|
|
imageAlt: "professional woman confident smile portrait",
|
|
},
|
|
{
|
|
id: "2",
|
|
name: "Carlos Ruiz",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/man-corrects-belt-fees-groom-man-s-hands-dressing-man-buttons-pants-jeans_8353-5893.jpg",
|
|
imageAlt: "man professional portrait confident smile",
|
|
},
|
|
{
|
|
id: "3",
|
|
name: "Sofía Rodríguez",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/woman-s-front-portrait-about-ideal-skin-straight-healthy-shiny-hair_633478-1298.jpg",
|
|
imageAlt: "woman portrait professional satisfied smile",
|
|
},
|
|
{
|
|
id: "4",
|
|
name: "Juan Martínez",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/joyful-handsome-man-blinks-eye-gestures-ok-hand-sign-with-two-hands-isolated-white-wall_141793-68419.jpg",
|
|
imageAlt: "man portrait professional satisfied expression",
|
|
},
|
|
{
|
|
id: "5",
|
|
name: "Lucía Fernández",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-businesswoman-pointing-finger-left-showing-corporate-banner-logo-standing-brown-suit_1258-118860.jpg",
|
|
imageAlt: "woman professional portrait happy expression",
|
|
},
|
|
{
|
|
id: "6",
|
|
name: "Diego López",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1605.jpg",
|
|
imageAlt: "man portrait professional happy expression",
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterLogoReveal
|
|
logoText="Hair Peluquería"
|
|
leftLink={{
|
|
text: "Instagram",
|
|
href: "https://instagram.com",
|
|
}}
|
|
rightLink={{
|
|
text: "Google Maps",
|
|
href: "https://maps.google.com/?q=Hair+Peluqueria,Salta",
|
|
}}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |