Update src/app/reviews/page.tsx

This commit is contained in:
2026-04-20 00:58:35 +00:00
parent 7b665f0e60
commit f19f06bb34

View File

@@ -26,25 +26,15 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "Reviews",
id: "/reviews",
},
name: "Reviews", id: "/reviews"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="The Plumbing Company"
/>
@@ -56,24 +46,12 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
title="Client Stories"
description="Hear from our satisfied customers."
description="Hear from our satisfied customers. Questions? Call (517) 899-5499."
testimonials={[
{
id: "tr1",
name: "John Doe",
handle: "@johndoe",
testimonial: "Excellent service and very fast response.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-talking-mobile-phone-cafe_1170-547.jpg",
imageAlt: "clean plumbing service van",
},
id: "tr1", name: "John Doe", handle: "@johndoe", testimonial: "Excellent service and very fast response.", imageSrc: "http://img.b2bpic.net/free-photo/happy-man-talking-mobile-phone-cafe_1170-547.jpg", imageAlt: "clean plumbing service van"},
{
id: "tr2",
name: "Jane Smith",
handle: "@janesmith",
testimonial: "Very professional and clean work.",
imageSrc: "http://img.b2bpic.net/free-photo/white-modern-sink-faucet-bathroom_74190-6105.jpg?_wi=2",
imageAlt: "clean plumbing service van",
},
id: "tr2", name: "Jane Smith", handle: "@janesmith", testimonial: "Very professional and clean work.", imageSrc: "http://img.b2bpic.net/free-photo/white-modern-sink-faucet-bathroom_74190-6105.jpg?_wi=2", imageAlt: "clean plumbing service van"},
]}
/>
</div>
@@ -87,15 +65,7 @@ export default function LandingPage() {
description="Recent community updates."
blogs={[
{
id: "b1",
category: "News",
title: "Serving Lansing for 10 years",
excerpt: "Celebrating a decade of excellence.",
imageSrc: "http://img.b2bpic.net/free-photo/people-meeting-discussing-neighbourhood_23-2149447184.jpg",
authorName: "The Team",
authorAvatar: "http://img.b2bpic.net/free-photo/close-up-portrait-smiling-brunette-asian-woman-sitting-with-graphic-pen-looking-happy-drawing_1258-199033.jpg",
date: "Jan 2025",
},
id: "b1", category: "News", title: "Serving Lansing for 10 years", excerpt: "Celebrating a decade of excellence.", imageSrc: "http://img.b2bpic.net/free-photo/people-meeting-discussing-neighbourhood_23-2149447184.jpg", authorName: "The Team", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-portrait-smiling-brunette-asian-woman-sitting-with-graphic-pen-looking-happy-drawing_1258-199033.jpg", date: "Jan 2025"},
]}
/>
</div>
@@ -104,40 +74,23 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Navigation",
items: [
{
label: "Home",
href: "/",
},
{
label: "About",
href: "/about",
},
{
label: "Services",
href: "/services",
},
title: "Navigation", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "/about" },
{ label: "Services", href: "/services" },
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms",
href: "#",
},
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms", href: "#" },
],
},
]}
logoText="The Plumbing Company"
logoText="The Plumbing Company (517) 899-5499"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}