Update src/app/reviews/page.tsx

This commit is contained in:
2026-04-17 09:38:43 +00:00
parent eb134dcc6f
commit cb7d1a6f05

View File

@@ -25,28 +25,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Reviews",
id: "/reviews",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" },
]}
brandName="Swiftflow"
button={{ text: "Get a Quote", href: "/contact" }}
/>
</div>
@@ -54,31 +40,11 @@ export default function LandingPage() {
<TestimonialCardTwelve
useInvertedBackground={false}
testimonials={[
{
id: "t1",
name: "David M.",
imageSrc: "asset://testimonial-1?_wi=2",
},
{
id: "t2",
name: "Alex L.",
imageSrc: "asset://testimonial-2?_wi=2",
},
{
id: "t3",
name: "Sarah K.",
imageSrc: "asset://testimonial-3",
},
{
id: "t4",
name: "Mark R.",
imageSrc: "asset://testimonial-4",
},
{
id: "t5",
name: "Jane D.",
imageSrc: "asset://testimonial-5",
},
{ id: "t1", name: "David M.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-little-boy-washing_23-2148518619.jpg" },
{ id: "t2", name: "Alex L.", imageSrc: "http://img.b2bpic.net/free-photo/bathtub-faucet-closeup-with-luxury-living-concept_53876-146213.jpg" },
{ id: "t3", name: "Sarah K.", imageSrc: "http://img.b2bpic.net/free-photo/interior-old-house-elegance-shower_1203-4967.jpg" },
{ id: "t4", name: "Mark R.", imageSrc: "http://img.b2bpic.net/free-photo/man-adjusting-water-tap-with-wrench_259150-58269.jpg" },
{ id: "t5", name: "Jane D.", imageSrc: "http://img.b2bpic.net/free-photo/bathtub-old-wall-vintage-bath_1203-6327.jpg" }
]}
cardTitle="Birmingham's Verdict"
cardTag="Verified"
@@ -89,18 +55,11 @@ export default function LandingPage() {
<div id="reviews-cta" data-section="reviews-cta">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Feedback"
title="Your Experience Matters"
description="Left a job with Swiftflow? Help us grow by leaving a review."
buttons={[
{
text: "Review on Google",
href: "#",
},
]}
buttons={[{ text: "Review on Google", href: "#" }]}
/>
</div>
@@ -108,48 +67,8 @@ export default function LandingPage() {
<FooterBaseReveal
logoText="Swiftflow Plumbing & Heating Ltd"
columns={[
{
title: "Quick Links",
items: [
{
label: "Home",
href: "/",
},
{
label: "Services",
href: "/services",
},
{
label: "About",
href: "/about",
},
{
label: "Reviews",
href: "/reviews",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Contact Us",
items: [
{
label: "135 Hansons Bridge Rd, Birmingham",
href: "#",
},
{
label: "07734 213674",
href: "tel:07734213674",
},
{
label: "info@swiftflowplumbing.co.uk",
href: "mailto:info@swiftflowplumbing.co.uk",
},
],
},
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "About", href: "/about" }, { label: "Reviews", href: "/reviews" }, { label: "Contact", href: "/contact" }] },
{ title: "Contact Us", items: [{ label: "135 Hansons Bridge Rd, Birmingham", href: "#" }, { label: "07734 213674", href: "tel:07734213674" }, { label: "info@swiftflowplumbing.co.uk", href: "mailto:info@swiftflowplumbing.co.uk" }] }
]}
copyrightText="© 2025 Swiftflow Plumbing & Heating Ltd. All rights reserved."
/>