195 lines
9.5 KiB
TypeScript
195 lines
9.5 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
|
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
|
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
|
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
|
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
|
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
|
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
|
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
|
|
import { Shield, Sparkles, Star, Users } from "lucide-react";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-shift"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="soft"
|
|
contentWidth="mediumLarge"
|
|
sizing="mediumLarge"
|
|
background="floatingGradient"
|
|
cardStyle="solid"
|
|
primaryButtonStyle="primary-glow"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="semibold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleApple
|
|
navItems={[
|
|
{
|
|
name: "Inicio", id: "hero"},
|
|
{
|
|
name: "Servicios", id: "servicios"},
|
|
{
|
|
name: "Tarifas", id: "tarifas"},
|
|
{
|
|
name: "Contacto", id: "contacto"},
|
|
]}
|
|
brandName="Barbería Amigos"
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroBillboardGallery
|
|
background={{
|
|
variant: "gradient-bars"}}
|
|
title="Barbería Amigos: Expertos en Degradados y Estilo Urbano"
|
|
description="Cortes de precisión, dibujos artísticos y el mejor ambiente de Castro Urdiales."
|
|
buttons={[
|
|
{
|
|
text: "Llamar Ahora", href: "tel:602379374"},
|
|
]}
|
|
mediaItems={[
|
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CzYNOTiy0BZsY6vcMVRwm5zodr/uploaded-1777391509896-3ng95hh5.png", imageAlt: "barber shop skin fade" },
|
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CzYNOTiy0BZsY6vcMVRwm5zodr/uploaded-1777391623718-okrx9vjx.png", imageAlt: "skin fade close up" },
|
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CzYNOTiy0BZsY6vcMVRwm5zodr/uploaded-1777391637182-x682uwax.png", imageAlt: "barber cutting kids hair" },
|
|
]}
|
|
mediaAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="servicios" data-section="servicios">
|
|
<FeatureCardTwentyFive
|
|
animationType="slide-up"
|
|
textboxLayout="split"
|
|
useInvertedBackground={true}
|
|
features={[
|
|
{
|
|
title: "Degradados Modernos", description: "Especialistas en Skin Fade y acabados de alta definición.", icon: Sparkles,
|
|
mediaItems: [
|
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CzYNOTiy0BZsY6vcMVRwm5zodr/uploaded-1777391781956-10by0kvr.png", imageAlt: "skin fade close up" },
|
|
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-hairdresser-trimming-hair_23-2148256872.jpg", imageAlt: "skin fade close up" },
|
|
]
|
|
},
|
|
{
|
|
title: "Corte Infantil", description: "Expertos en los más pequeños, con paciencia y estilo.", icon: Star,
|
|
mediaItems: [
|
|
{ imageSrc: "http://img.b2bpic.net/free-photo/smiling-preschooler-boy-getting-haircut-older-sister-cuts-her-little-brother-with-trimmer-against-brick-wall_613910-5738.jpg", imageAlt: "barber cutting kids hair" },
|
|
{ imageSrc: "http://img.b2bpic.net/free-photo/children-hairdresser-with-scissors-is-cutting-little-boy-against-dark-background-contented-cute-preschooler-boy-getting-haircut_613910-19721.jpg", imageAlt: "barber cutting kids hair" },
|
|
]
|
|
},
|
|
{
|
|
title: "Arreglo de Barba", description: "Perfilado y cuidado tradicional para un look impecable.", icon: Shield,
|
|
mediaItems: [
|
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CzYNOTiy0BZsY6vcMVRwm5zodr/uploaded-1777391430496-iaeddtfv.png", imageAlt: "hair tattoo pattern" },
|
|
{ imageSrc: "http://img.b2bpic.net/free-vector/linear-flat-abstract-lines-pattern_23-2148953433.jpg", imageAlt: "hair tattoo pattern" },
|
|
]
|
|
},
|
|
]}
|
|
title="Nuestros Servicios"
|
|
description="Expertos en estilo urbano y cuidado profesional masculino."
|
|
/>
|
|
</div>
|
|
|
|
<div id="tarifas" data-section="tarifas">
|
|
<PricingCardThree
|
|
animationType="slide-up"
|
|
title="Servicio sin Citas"
|
|
description="Atención por orden de llegada. Ven a vernos directamente en el salón."
|
|
textboxLayout="split"
|
|
useInvertedBackground={false}
|
|
plans={[
|
|
{ id: "p1", name: "Corte de Caballero", price: "10€", badge: "Popular", badgeIcon: Users, features: ["Degradado moderno", "Perfilado incluido", "Atención inmediata"], buttons: [{ text: "Ven ahora" }] },
|
|
{ id: "p2", name: "Corte Infantil", price: "10€", features: ["Corte con paciencia", "Estilo personalizado", "Atención inmediata"], buttons: [{ text: "Ven ahora" }] }
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="metrics" data-section="metrics">
|
|
<MetricCardEleven
|
|
animationType="blur-reveal"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
metrics={[
|
|
{ id: "m1", value: "Wi-Fi", title: "Conectividad", description: "Wi-Fi Gratis para clientes.", imageSrc: "http://img.b2bpic.net/free-photo/man-having-his-hair-fixed-with-comb-hairdryer_23-2148256901.jpg", imageAlt: "barber shop skin fade" },
|
|
{ id: "m2", value: "Tarjeta", title: "Pagos", description: "Pago con Móvil/NFC rápido.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-preschooler-boy-getting-haircut-older-sister-cuts-her-little-brother-with-trimmer-against-brick-wall_613910-19671.jpg", imageAlt: "barber cutting kids hair" },
|
|
{ id: "m3", value: "20:30", title: "Horario", description: "Abierto hasta las 20:30.", imageSrc: "http://img.b2bpic.net/free-photo/digital-art-style-illustration-mental-health-day-awareness_23-2151813238.jpg", imageAlt: "hair tattoo pattern" },
|
|
]}
|
|
title="Compromiso con el Cliente"
|
|
description="Tecnología y servicios modernos a tu disposición."
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardTwelve
|
|
useInvertedBackground={true}
|
|
testimonials={[
|
|
{ id: "1", name: "Juan García", imageSrc: "http://img.b2bpic.net/free-photo/young-bearded-man-getting-haircut-by-hairdresser-while-sitting-chair-barbershop-barber-soul_627829-6410.jpg", imageAlt: "happy customer barber" },
|
|
{ id: "2", name: "Pedro López", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-barbershop-concept_23-2148506210.jpg", imageAlt: "clean beard fade" },
|
|
{ id: "3", name: "Carlos Ruiz", imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-man-listening-music-headphone_23-2147892843.jpg", imageAlt: "trendy male haircut" },
|
|
]}
|
|
cardTitle="Lo que dicen nuestros amigos"
|
|
cardTag="Opiniones"
|
|
cardAnimation="blur-reveal"
|
|
/>
|
|
</div>
|
|
|
|
<div id="faq" data-section="faq">
|
|
<FaqSplitText
|
|
useInvertedBackground={false}
|
|
faqs={[
|
|
{ id: "f1", title: "¿Necesito cita previa?", content: "No, trabajamos exclusivamente por orden de llegada para ofrecer atención inmediata." },
|
|
{ id: "f2", title: "¿Aceptan tarjetas?", content: "Sí, aceptamos tarjetas y pagos móviles/NFC." },
|
|
{ id: "f3", title: "¿Dónde están ubicados?", content: "En Calle Santander, 14, Castro-Urdiales." },
|
|
]}
|
|
sideTitle="Preguntas frecuentes"
|
|
faqsAnimation="blur-reveal"
|
|
/>
|
|
</div>
|
|
|
|
<div id="social" data-section="social">
|
|
<SocialProofOne
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
names={["Productos Premium", "Calidad Garantizada", "Excelencia", "Innovación", "Estilo Moderno"]}
|
|
title="Nuestros Aliados en Estilo"
|
|
description="La excelencia y calidad respaldan nuestro trabajo día a día."
|
|
/>
|
|
</div>
|
|
|
|
<div id="contacto" data-section="contacto">
|
|
<ContactSplitForm
|
|
useInvertedBackground={false}
|
|
title="Contáctanos"
|
|
description="Estamos listos para renovar tu estilo. Llámanos o visítanos directamente en C. Santander, 14."
|
|
inputs={[
|
|
{ name: "nombre", type: "text", placeholder: "Tu nombre", required: true },
|
|
{ name: "mensaje", type: "text", placeholder: "Tu mensaje" },
|
|
]}
|
|
buttonText="Llamar Ahora"
|
|
onSubmit={() => window.location.href = 'tel:602379374'}
|
|
imageSrc="http://img.b2bpic.net/free-photo/full-shot-man-getting-groomed_23-2149141754.jpg"
|
|
imageAlt="barber shop interior"
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterLogoEmphasis
|
|
columns={[
|
|
{ items: [{ label: "Calle Santander, 14", href: "#" }, { label: "Castro-Urdiales", href: "#" }] },
|
|
{ items: [{ label: "Abierto hasta las 20:30", href: "#" }, { label: "Llamar: 602379374", href: "tel:602379374" }] },
|
|
]}
|
|
logoText="Barbería Amigos"
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|