Update src/app/reviews/page.tsx

This commit is contained in:
2026-04-18 01:09:08 +00:00
parent abf2d36da2
commit bb6d7cfc98

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>
);
}
}