10 Commits

Author SHA1 Message Date
7ed95481d6 Update src/app/page.tsx 2026-04-18 01:32:07 +00:00
f7f8f84b53 Update src/app/contact/page.tsx 2026-04-18 01:31:28 +00:00
3c42257e6d Update src/app/page.tsx 2026-04-18 01:26:16 +00:00
4881056f03 Update src/app/gallery/page.tsx 2026-04-18 01:15:35 +00:00
3a3be8e714 Update src/app/services/page.tsx 2026-04-18 01:09:09 +00:00
bb6d7cfc98 Update src/app/reviews/page.tsx 2026-04-18 01:09:08 +00:00
abf2d36da2 Update src/app/page.tsx 2026-04-18 01:09:08 +00:00
d8035a5c55 Update src/app/gallery/page.tsx 2026-04-18 01:09:07 +00:00
bbfada8e40 Update src/app/contact/page.tsx 2026-04-18 01:09:07 +00:00
af6633278e Merge version_2 into main
Merge version_2 into main
2026-04-18 01:07:14 +00:00
5 changed files with 123 additions and 236 deletions

View File

@@ -26,15 +26,15 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Gallery", id: "/gallery" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" },
{ name: "Inicio", id: "/" },
{ name: "Servicios", id: "/services" },
{ name: "Galería", id: "/gallery" },
{ name: "Reseñas", id: "/reviews" },
{ name: "Contacto", id: "/contact" },
]}
brandName="Imperio"
button={{
text: "BOOK NOW", href: "https://booksy.com/en-us/606766_imperio-barber-salon_barber-shop_20722_kansas-city"}}
text: "RESERVAR", href: "https://booksy.com/en-us/606766_imperio-barber-salon_barber-shop_20722_kansas-city"}}
/>
</div>
@@ -42,10 +42,10 @@ export default function LandingPage() {
<ContactSplit
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Contact Us"
title="Come See Us"
tag="Contáctanos"
title="Visítanos"
description="939 Central Ave, Kansas City."
imageSrc="http://img.b2bpic.net/free-photo/pov-diverse-men-hotel-lobby-meeting-abroad-create-new-parnership-collaborate-project-team-businessmen-attend-videocall-conference-together-lounge-area_482257-69534.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CPwVd0jQscksaBNfJgkefA8T7s/uploaded-1776475850191-xnj4ehom.jpg"
/>
</div>
@@ -54,13 +54,13 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Visit Details"
description="Easy access, parking available."
title="Detalles de la Visita"
description="Fácil acceso, estacionamiento disponible."
metrics={[
{ id: "ex-13", icon: MapPin, title: "Location", value: "Central" },
{ id: "ex-14", icon: Car, title: "Parking", value: "Easy" },
{ id: "ex-15", icon: Wifi, title: "Amenities", value: "Free" },
{ id: "ex-16", icon: Phone, title: "Support", value: "Active" },
{ id: "ex-13", icon: MapPin, title: "Ubicación", value: "Central" },
{ id: "ex-14", icon: Car, title: "Estacionamiento", value: "Fácil" },
{ id: "ex-15", icon: Wifi, title: "Amenidades", value: "Gratis" },
{ id: "ex-16", icon: Phone, title: "Soporte", value: "Activo" },
]}
/>
</div>
@@ -69,15 +69,15 @@ export default function LandingPage() {
<FooterSimple
columns={[
{ title: "Imperio Barber & Salon LLC", items: [{ label: "939 Central Ave, Kansas City, KS 66101", href: "#" }, { label: "(913) 232-9779", href: "tel:9132329779" }] },
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Gallery", href: "/gallery" }] },
{ title: "Hours", items: [{ label: "Mon-Sat: 9am-8pm", href: "#" }, { label: "Sun: 9am-5pm", href: "#" }] },
{ title: "Enlaces Rápidos", items: [{ label: "Inicio", href: "/" }, { label: "Servicios", href: "/services" }, { label: "Galería", href: "/gallery" }] },
{ title: "Horario", items: [{ label: "Lun-Sáb: 9am-8pm", href: "#" }, { label: "Dom: 9am-5pm", href: "#" }] },
{ title: "Social", items: [{ label: "Instagram", href: "https://www.instagram.com/imperiokansascity/" }, { label: "Facebook", href: "https://www.facebook.com/p/Imperio-Barber-Salon-100069939092676/" }] },
]}
bottomLeftText="© 2025 Imperio Barber & Salon LLC"
bottomRightText="English & Spanish"
bottomRightText="Inglés y Español"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -26,32 +26,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "Reviews",
id: "/reviews",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Inicio", id: "/" },
{ name: "Servicios", id: "/services" },
{ name: "Galería", id: "/gallery" },
{ name: "Reseñas", id: "/reviews" },
{ name: "Contacto", id: "/contact" },
]}
brandName="Imperio"
button={{
text: "BOOK NOW",
href: "https://booksy.com/en-us/606766_imperio-barber-salon_barber-shop_20722_kansas-city",
}}
button={{ text: "RESERVAR", href: "https://booksy.com/en-us/606766_imperio-barber-salon_barber-shop_20722_kansas-city" }}
/>
</div>
@@ -62,33 +44,13 @@ export default function LandingPage() {
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
{
id: "p1",
name: "Transformation 1",
price: "Fade",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-scissors-dispenser_23-2148108757.jpg",
},
{
id: "p2",
name: "Transformation 2",
price: "Beard",
imageSrc: "http://img.b2bpic.net/free-photo/silver-machine-haircut_140725-8078.jpg",
},
{
id: "p3",
name: "Transformation 3",
price: "Cut",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-getting-haircut_23-2150665403.jpg",
},
{
id: "p4",
name: "Transformation 4",
price: "Shave",
imageSrc: "http://img.b2bpic.net/free-photo/bearded-african-american-hipster-guy-fleece-shirt-cap-getting-haircut-by-old-fashioned-professional-hairdresser-does-haircut_613910-6495.jpg",
},
{ id: "p1", name: "Transformación 1", price: "Fade", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CPwVd0jQscksaBNfJgkefA8T7s/uploaded-1776474692742-3frqgvbh.jpg" },
{ id: "p2", name: "Transformación 2", price: "Barba", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CPwVd0jQscksaBNfJgkefA8T7s/uploaded-1776474897761-jbb8cmrp.jpg" },
{ id: "p3", name: "Transformación 3", price: "Corte", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CPwVd0jQscksaBNfJgkefA8T7s/uploaded-1776474913456-xuaikbnp.jpg" },
{ id: "p4", name: "Transformación 4", price: "Rasurado", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CPwVd0jQscksaBNfJgkefA8T7s/uploaded-1776474886458-4uw3gzry.jpg" },
]}
title="The Work Speaks"
description="Transformations by Imperio."
title="Nuestro Trabajo"
description="Transformaciones por Imperio."
/>
</div>
@@ -97,33 +59,13 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Gallery Stats"
description="Our work speaks for itself."
title="Estadísticas de la Galería"
description="Nuestro trabajo habla por sí mismo."
metrics={[
{
id: "ex-5",
icon: Camera,
title: "Photos",
value: "100+",
},
{
id: "ex-6",
icon: Users,
title: "Clients",
value: "5000+",
},
{
id: "ex-7",
icon: CheckCircle,
title: "Styles",
value: "20+",
},
{
id: "ex-8",
icon: Award,
title: "Years",
value: "5",
},
{ id: "ex-5", icon: Camera, title: "Fotos", value: "100+" },
{ id: "ex-6", icon: Users, title: "Clientes", value: "5000+" },
{ id: "ex-7", icon: CheckCircle, title: "Estilos", value: "20+" },
{ id: "ex-8", icon: Award, title: "Años", value: "5" },
]}
/>
</div>
@@ -131,68 +73,16 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Imperio Barber & Salon LLC",
items: [
{
label: "939 Central Ave, Kansas City, KS 66101",
href: "#",
},
{
label: "(913) 232-9779",
href: "tel:9132329779",
},
],
},
{
title: "Quick Links",
items: [
{
label: "Home",
href: "/",
},
{
label: "Services",
href: "/services",
},
{
label: "Gallery",
href: "/gallery",
},
],
},
{
title: "Hours",
items: [
{
label: "Mon-Sat: 9am-8pm",
href: "#",
},
{
label: "Sun: 9am-5pm",
href: "#",
},
],
},
{
title: "Social",
items: [
{
label: "Instagram",
href: "https://www.instagram.com/imperiokansascity/",
},
{
label: "Facebook",
href: "https://www.facebook.com/p/Imperio-Barber-Salon-100069939092676/",
},
],
},
{ title: "Imperio Barber & Salon LLC", items: [{ label: "939 Central Ave, Kansas City, KS 66101", href: "#" }, { label: "(913) 232-9779", href: "tel:9132329779" }] },
{ title: "Enlaces Rápidos", items: [{ label: "Inicio", href: "/" }, { label: "Servicios", href: "/services" }, { label: "Galería", href: "/gallery" }] },
{ title: "Horario", items: [{ label: "Lun-Sáb: 9am-8pm", href: "#" }, { label: "Dom: 9am-5pm", href: "#" }] },
{ title: "Social", items: [{ label: "Instagram", href: "https://www.instagram.com/imperiokansascity/" }, { label: "Facebook", href: "https://www.facebook.com/p/Imperio-Barber-Salon-100069939092676/" }] },
]}
bottomLeftText="© 2025 Imperio Barber & Salon LLC"
bottomRightText="English & Spanish"
bottomRightText="Inglés y Español"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -30,34 +30,33 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Gallery", id: "/gallery" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" },
{ name: "Inicio", id: "/" },
{ name: "Servicios", id: "/services" },
{ name: "Galería", id: "/gallery" },
{ name: "Reseñas", id: "/reviews" },
{ name: "Contacto", id: "/contact" },
]}
brandName="Imperio"
button={{
text: "BOOK NOW", href: "https://booksy.com/en-us/606766_imperio-barber-salon_barber-shop_20722_kansas-city"}}
button={{ text: "RESERVAR", href: "https://booksy.com/en-us/606766_imperio-barber-salon_barber-shop_20722_kansas-city" }}
/>
</div>
<div id="hero" data-section="hero">
<HeroSplitDualMedia
background={{ variant: "gradient-bars" }}
title="Walk In. Transform. Walk Out Ready."
description="Kansas City's premier barbershop — expert fades, beard work, and full grooming since 2019."
title="Entra. Transfórmate. Sal Listo."
description="La mejor barbería de Kansas City: cortes expertos, arreglos de barba y peluquería completa desde 2019."
tag="Est. 2019"
buttons={[
{ text: "BOOK YOUR APPOINTMENT", href: "https://booksy.com/en-us/606766_imperio-barber-salon_barber-shop_20722_kansas-city" },
{ text: "VIEW OUR WORK", href: "#gallery" },
{ text: "RESERVAR TU CITA", href: "https://booksy.com/en-us/606766_imperio-barber-salon_barber-shop_20722_kansas-city" },
{ text: "VER NUESTRO TRABAJO", href: "/gallery" },
]}
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/handsome-bearded-man-barbershop-barber-work_627829-7242.jpg", imageAlt: "Barber shop interior" },
{ imageSrc: "http://img.b2bpic.net/free-photo/front-view-baber-shop-chiar_23-2148506341.jpg", imageAlt: "Barber work" }
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CPwVd0jQscksaBNfJgkefA8T7s/uploaded-1776475542805-z55qzz7i.jpg", imageAlt: "Interior de la barbería" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CPwVd0jQscksaBNfJgkefA8T7s/uploaded-1776475560129-5shi2yxu.jpg", imageAlt: "Trabajo de barbero" }
]}
rating={5}
ratingText="4.7 Stars on Booksy"
ratingText="4.7 Estrellas en Booksy"
/>
</div>
@@ -65,8 +64,8 @@ export default function LandingPage() {
<InlineImageSplitTextAbout
useInvertedBackground={false}
heading={[
{ type: "text", content: "Built for Kansas City. Built to Last." },
{ type: "image", src: "http://img.b2bpic.net/free-photo/young-man-barber-s-shop-getting-his-beard-trimmed_23-2149186494.jpg", alt: "Imperio Team" },
{ type: "text", content: "Hecho para Kansas City. Hecho para durar." },
{ type: "image", src: "http://img.b2bpic.net/free-photo/young-man-barber-s-shop-getting-his-beard-trimmed_23-2149186494.jpg", alt: "Equipo Imperio" },
]}
/>
</div>
@@ -78,29 +77,29 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
title: "Men's Haircut", description: "Classic cuts, modern styles, tapers, and textures.", icon: Scissors,
title: "Corte de Caballero", description: "Cortes clásicos, estilos modernos, desvanecidos y texturas.", icon: Scissors,
mediaItems: [
{ imageSrc: "http://img.b2bpic.net/free-photo/tools-from-barbershop-wooden-background_1303-10377.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-holding-painting-brush_23-2149529894.jpg" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CPwVd0jQscksaBNfJgkefA8T7s/uploaded-1776475153991-8nskloi0.jpg" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CPwVd0jQscksaBNfJgkefA8T7s/uploaded-1776475140879-nwmvqz0k.jpg" },
]
},
{
title: "Skin Fade", description: "Zero to seamless blend.", icon: Zap,
title: "Skin Fade", description: "Desvanecido impecable desde cero.", icon: Zap,
mediaItems: [
{ imageSrc: "http://img.b2bpic.net/free-photo/mechanic-repairing-bicycle_23-2148138404.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-face-pores-texture_23-2149444101.jpg" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CPwVd0jQscksaBNfJgkefA8T7s/uploaded-1776475128887-ocsv6d4c.jpg" },
]
},
{
title: "Beard Trim", description: "Shape, line, and define.", icon: User,
title: "Arreglo de Barba", description: "Dale forma, perfila y define.", icon: User,
mediaItems: [
{ imageSrc: "http://img.b2bpic.net/free-photo/handsome-hipster-bearded-male-sitting-armchair-barber-shop-while-hairdresser-shaves-his-beard-with-dangerous-razor_613910-18507.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-barber-wearing-uniform-shaving-his-beard-with-straight-razor-touching-his-neck-looking-side-isolated-olive-green-background_141793-85009.jpg" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CPwVd0jQscksaBNfJgkefA8T7s/uploaded-1776475250751-o6gcb412.jpg" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CPwVd0jQscksaBNfJgkefA8T7s/uploaded-1776475260682-vf7p9xgp.jpg" },
]
}
]}
title="Services We Provide"
description="Expert grooming services in Kansas City."
title="Nuestros Servicios"
description="Servicios de peluquería expertos en Kansas City."
/>
</div>
@@ -109,7 +108,7 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
description="Real feedback from our valued clients at Imperio."
description="Opiniones reales de nuestros clientes en Imperio."
testimonials={[
{ id: "1", name: "Jorge Luis", handle: "Google Maps", testimonial: "El mejor servicio de Kansas City, muy profesional y atento a los detalles.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-young-man_158595-276.jpg" },
{ id: "2", name: "Alvarezhermis", handle: "Google Maps", testimonial: "La calidad de los fades es increíble, regresaré siempre.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-man-walks-around-city_1321-4646.jpg" },
@@ -118,7 +117,7 @@ export default function LandingPage() {
{ id: "5", name: "Carlos V.", handle: "Google Maps", testimonial: "Excelente lugar para un corte de calidad en KCK.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-barber-shop-concept_23-2148506366.jpg" },
]}
showRating={true}
title="What Kansas City Is Saying"
title="Lo que dice Kansas City"
/>
</div>
@@ -127,14 +126,14 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
description="We offer consistent quality."
description="Ofrecemos calidad consistente."
metrics={[
{ id: "m1", icon: Scissors, title: "Expert Barbers", value: "5+ Years" },
{ id: "m2", icon: MessageCircle, title: "Languages", value: "Eng/Esp" },
{ id: "m3", icon: Calendar, title: "Open", value: "7 Days" },
{ id: "m4", icon: Award, title: "Community", value: "Since 2019" },
{ id: "m1", icon: Scissors, title: "Barberos Expertos", value: "5+ Años" },
{ id: "m2", icon: MessageCircle, title: "Idiomas", value: "Ing/Esp" },
{ id: "m3", icon: Calendar, title: "Abierto", value: "7 Días" },
{ id: "m4", icon: Award, title: "Comunidad", value: "Desde 2019" },
]}
title="Why Kansas City Chooses Imperio"
title="Por qué Kansas City elige Imperio"
/>
</div>
@@ -142,11 +141,11 @@ export default function LandingPage() {
<ContactSplit
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Contact Us"
title="Your Best Look Is One Appointment Away"
description="Book online in under 2 minutes. No call required."
imageSrc="http://img.b2bpic.net/free-photo/full-shot-man-barber-shop_23-2149141768.jpg"
buttonText="BOOK ON BOOKSY"
tag="Contáctanos"
title="Tu mejor estilo está a una cita de distancia"
description="Reserva online en menos de 2 minutos. No requiere llamada."
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CPwVd0jQscksaBNfJgkefA8T7s/uploaded-1776475906627-k2uzgndl.jpg"
buttonText="RESERVAR EN BOOKSY"
/>
</div>
@@ -154,15 +153,15 @@ export default function LandingPage() {
<FooterSimple
columns={[
{ title: "Imperio Barber & Salon LLC", items: [{ label: "939 Central Ave, Kansas City, KS 66101", href: "#" }, { label: "(913) 232-9779", href: "tel:9132329779" }] },
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Gallery", href: "/gallery" }] },
{ title: "Hours", items: [{ label: "Mon-Sat: 9am-8pm", href: "#" }, { label: "Sun: 9am-5pm", href: "#" }] },
{ title: "Enlaces Rápidos", items: [{ label: "Inicio", href: "/" }, { label: "Servicios", href: "/services" }, { label: "Galería", href: "/gallery" }] },
{ title: "Horario", items: [{ label: "Lun-Sáb: 9am-8pm", href: "#" }, { label: "Dom: 9am-5pm", href: "#" }] },
{ title: "Social", items: [{ label: "Instagram", href: "https://www.instagram.com/imperiokansascity/" }, { label: "Facebook", href: "https://www.facebook.com/p/Imperio-Barber-Salon-100069939092676/" }] },
]}
bottomLeftText="© 2025 Imperio Barber & Salon LLC"
bottomRightText="English & Spanish"
bottomRightText="Inglés y Español"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -26,15 +26,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Gallery", id: "/gallery" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" },
{ name: "Inicio", id: "/" },
{ name: "Servicios", id: "/services" },
{ name: "Galería", id: "/gallery" },
{ name: "Reseñas", id: "/reviews" },
{ name: "Contacto", id: "/contact" },
]}
brandName="Imperio"
button={{
text: "BOOK NOW", href: "https://booksy.com/en-us/606766_imperio-barber-salon_barber-shop_20722_kansas-city"}}
button={{ text: "RESERVAR", href: "https://booksy.com/en-us/606766_imperio-barber-salon_barber-shop_20722_kansas-city" }}
/>
</div>
@@ -43,7 +42,7 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
description="Our customers love our service."
description="Nuestros clientes aman nuestro servicio."
testimonials={[
{ id: "r1", name: "Jorge Luis", handle: "Google Maps", testimonial: "El mejor servicio de Kansas City, muy profesional.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-cutting-man-s-hair-barber-shop_23-2149186462.jpg" },
{ id: "r2", name: "Alvarez", handle: "Google Maps", testimonial: "Muy profesional, ambiente genial.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-hair-salon_23-2150665449.jpg" },
@@ -52,7 +51,7 @@ export default function LandingPage() {
{ id: "r5", name: "David", handle: "Google Maps", testimonial: "Top notch professionalism, definitely returning.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-getting-his-hair-cut-barber-shop4_23-2149186458.jpg" },
]}
showRating={true}
title="Kansas City Speaks"
title="Lo que dice Kansas City"
/>
</div>
@@ -61,13 +60,13 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Our Standards"
description="Kansas City's most trusted shop."
title="Nuestros Estándares"
description="La tienda más confiable de Kansas City."
metrics={[
{ id: "ex-9", icon: Star, title: "Google Rating", value: "4.9" },
{ id: "ex-10", icon: ThumbsUp, title: "Satisfied", value: "99%" },
{ id: "ex-11", icon: Repeat, title: "Retention", value: "High" },
{ id: "ex-12", icon: MessageSquare, title: "Feedback", value: "Active" },
{ id: "ex-9", icon: Star, title: "Rating Google", value: "4.9" },
{ id: "ex-10", icon: ThumbsUp, title: "Satisfechos", value: "99%" },
{ id: "ex-11", icon: Repeat, title: "Retención", value: "Alta" },
{ id: "ex-12", icon: MessageSquare, title: "Feedback", value: "Activo" },
]}
/>
</div>
@@ -76,15 +75,15 @@ export default function LandingPage() {
<FooterSimple
columns={[
{ title: "Imperio Barber & Salon LLC", items: [{ label: "939 Central Ave, Kansas City, KS 66101", href: "#" }, { label: "(913) 232-9779", href: "tel:9132329779" }] },
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Gallery", href: "/gallery" }] },
{ title: "Hours", items: [{ label: "Mon-Sat: 9am-8pm", href: "#" }, { label: "Sun: 9am-5pm", href: "#" }] },
{ title: "Enlaces Rápidos", items: [{ label: "Inicio", href: "/" }, { label: "Servicios", href: "/services" }, { label: "Galería", href: "/gallery" }] },
{ title: "Horario", items: [{ label: "Lun-Sáb: 9am-8pm", href: "#" }, { label: "Dom: 9am-5pm", href: "#" }] },
{ title: "Social", items: [{ label: "Instagram", href: "https://www.instagram.com/imperiokansascity/" }, { label: "Facebook", href: "https://www.facebook.com/p/Imperio-Barber-Salon-100069939092676/" }] },
]}
bottomLeftText="© 2025 Imperio Barber & Salon LLC"
bottomRightText="English & Spanish"
bottomRightText="Inglés y Español"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -26,15 +26,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Gallery", id: "/gallery" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" },
{ name: "Inicio", id: "/" },
{ name: "Servicios", id: "/services" },
{ name: "Galería", id: "/gallery" },
{ name: "Reseñas", id: "/reviews" },
{ name: "Contacto", id: "/contact" },
]}
brandName="Imperio"
button={{
text: "BOOK NOW", href: "https://booksy.com/en-us/606766_imperio-barber-salon_barber-shop_20722_kansas-city"}}
button={{ text: "RESERVAR", href: "https://booksy.com/en-us/606766_imperio-barber-salon_barber-shop_20722_kansas-city" }}
/>
</div>
@@ -45,22 +44,22 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
title: "Full Grooming Package", description: "Haircut + beard + hot towel + razor.", icon: Crown,
title: "Paquete de Peluquería Completo", description: "Corte + barba + toalla caliente + rasurado.", icon: Crown,
mediaItems: [
{ imageSrc: "http://img.b2bpic.net/free-photo/barber-tools-wallpaper-pattern-wooden-background-job-career-concept_53876-143260.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/set-black-makeup-brushes-isolated-white_1385-2784.jpg" },
]
},
{
title: "Straight Razor Shave", description: "Old school luxury.", icon: Scissors,
title: "Rasurado con Navaja", description: "Lujo de la vieja escuela.", icon: Scissors,
mediaItems: [
{ imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-composition-shaving-objects_23-2148122002.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/stylish-man-sitting-barbershop_1157-21510.jpg" },
]
}
]}
title="Excellence in Every Cut"
description="Full grooming services at 939 Central Ave."
title="Excelencia en cada corte"
description="Servicios de peluquería en 939 Central Ave."
/>
</div>
@@ -69,13 +68,13 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Why Book With Us"
description="We prioritize quality, hygiene, and your time."
title="¿Por qué reservar con nosotros?"
description="Priorizamos la calidad, la higiene y tu tiempo."
metrics={[
{ id: "ex-1", icon: Clock, title: "Precision Work", value: "45 Min" },
{ id: "ex-2", icon: Smile, title: "Client Care", value: "High" },
{ id: "ex-3", icon: ShieldCheck, title: "Cleanliness", value: "100%" },
{ id: "ex-4", icon: Coffee, title: "Experience", value: "Elite" },
{ id: "ex-1", icon: Clock, title: "Trabajo de Precisión", value: "45 Min" },
{ id: "ex-2", icon: Smile, title: "Atención al Cliente", value: "Alta" },
{ id: "ex-3", icon: ShieldCheck, title: "Limpieza", value: "100%" },
{ id: "ex-4", icon: Coffee, title: "Experiencia", value: "Elite" },
]}
/>
</div>
@@ -84,15 +83,15 @@ export default function LandingPage() {
<FooterSimple
columns={[
{ title: "Imperio Barber & Salon LLC", items: [{ label: "939 Central Ave, Kansas City, KS 66101", href: "#" }, { label: "(913) 232-9779", href: "tel:9132329779" }] },
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Gallery", href: "/gallery" }] },
{ title: "Hours", items: [{ label: "Mon-Sat: 9am-8pm", href: "#" }, { label: "Sun: 9am-5pm", href: "#" }] },
{ title: "Enlaces Rápidos", items: [{ label: "Inicio", href: "/" }, { label: "Servicios", href: "/services" }, { label: "Galería", href: "/gallery" }] },
{ title: "Horario", items: [{ label: "Lun-Sáb: 9am-8pm", href: "#" }, { label: "Dom: 9am-5pm", href: "#" }] },
{ title: "Social", items: [{ label: "Instagram", href: "https://www.instagram.com/imperiokansascity/" }, { label: "Facebook", href: "https://www.facebook.com/p/Imperio-Barber-Salon-100069939092676/" }] },
]}
bottomLeftText="© 2025 Imperio Barber & Salon LLC"
bottomRightText="English & Spanish"
bottomRightText="Inglés y Español"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}