Update src/app/reviews/page.tsx
This commit is contained in:
@@ -26,32 +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: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Reviews", id: "/reviews" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Imperio"
|
||||
button={{
|
||||
text: "BOOK NOW",
|
||||
href: "https://booksy.com/en-us/606766_imperio-barber-salon_barber-shop_20722_kansas-city",
|
||||
}}
|
||||
text: "BOOK NOW", href: "https://booksy.com/en-us/606766_imperio-barber-salon_barber-shop_20722_kansas-city"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -60,47 +43,13 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
description="Our customers love our service."
|
||||
testimonials={[
|
||||
{
|
||||
id: "r1",
|
||||
name: "Jorge Luis",
|
||||
handle: "Google",
|
||||
testimonial: "Great place.",
|
||||
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",
|
||||
testimonial: "Very professional.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-hair-salon_23-2150665449.jpg",
|
||||
},
|
||||
{
|
||||
id: "r3",
|
||||
name: "Carlos",
|
||||
handle: "Google",
|
||||
testimonial: "Excellent service and atmosphere.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-barber-working-with-client-hairdressing-salon-styling-beard-with-trimmer_613910-5073.jpg",
|
||||
},
|
||||
{
|
||||
id: "r4",
|
||||
name: "Maria",
|
||||
handle: "Google",
|
||||
testimonial: "My son loves his new haircut.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-sitting-chair_23-2149220526.jpg",
|
||||
},
|
||||
{
|
||||
id: "r5",
|
||||
name: "David",
|
||||
handle: "Google",
|
||||
testimonial: "Top notch professionalism.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-getting-his-hair-cut-barber-shop4_23-2149186458.jpg",
|
||||
},
|
||||
{ id: "r1", name: "Jorge Luis", handle: "Google", testimonial: "Great place.", 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", testimonial: "Very professional.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-hair-salon_23-2150665449.jpg" },
|
||||
{ id: "r3", name: "Carlos", handle: "Google", testimonial: "Excellent service and atmosphere.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/professional-barber-working-with-client-hairdressing-salon-styling-beard-with-trimmer_613910-5073.jpg" },
|
||||
{ id: "r4", name: "Maria", handle: "Google", testimonial: "My son loves his new haircut.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-sitting-chair_23-2149220526.jpg" },
|
||||
{ id: "r5", name: "David", handle: "Google", testimonial: "Top notch professionalism.", 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"
|
||||
@@ -115,30 +64,10 @@ export default function LandingPage() {
|
||||
title="Our Standards"
|
||||
description="Kansas City's most trusted shop."
|
||||
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: "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" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -146,62 +75,10 @@ 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: "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/" }] },
|
||||
]}
|
||||
bottomLeftText="© 2025 Imperio Barber & Salon LLC"
|
||||
bottomRightText="English & Spanish"
|
||||
|
||||
Reference in New Issue
Block a user