Update src/app/reviews/page.tsx

This commit is contained in:
2026-05-08 06:19:17 +00:00
parent bdb674db3f
commit 96b54999da

View File

@@ -16,7 +16,6 @@ export default function ReviewsPage() {
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Services", id: "/#features" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" },
]}
brandName="Prestige Mobile Detailing"
@@ -29,15 +28,12 @@ export default function ReviewsPage() {
textboxLayout="default"
useInvertedBackground={false}
title="Customer Reviews"
description="See what our customers have to say about our detailing services."
description="See what our Winnipeg customers have to say about our detailing services."
testimonials={[
{ id: "1", name: "Sarah J.", role: "Client", company: "Local Driver", rating: 5 },
{ id: "2", name: "Mark D.", role: "Client", company: "Commuter", rating: 5 },
{ id: "3", name: "Emily R.", role: "Client", company: "Vehicle Owner", rating: 5 },
{ id: "4", name: "Jason L.", role: "Client", company: "Luxury Collector", rating: 5 },
{ id: "5", name: "Linda M.", role: "Client", company: "Family Driver", rating: 5 },
{ id: "1", name: "Sarah J.", role: "Client", company: "Winnipeg Resident", rating: 5 },
{ id: "2", name: "Mark D.", role: "Client", company: "Local Driver", rating: 5 },
]}
kpiItems={[{ value: "5.0", label: "Rating" }, { value: "50+", label: "Happy Clients" }, { value: "100%", label: "Satisfaction" }]}
kpiItems={[{ value: "5.0", label: "Rating" }, { value: "100+", label: "Happy Clients" }, { value: "100%", label: "Satisfaction" }]}
/>
</div>
<div id="footer" data-section="footer">
@@ -45,7 +41,7 @@ export default function ReviewsPage() {
logoText="Prestige Mobile Detailing"
columns={[
{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/#features" }] },
{ title: "Support", items: [{ label: "Reviews", href: "/reviews" }, { label: "Contact", href: "/contact" }] },
{ title: "Support", items: [{ label: "Contact", href: "/contact" }] },
]}
/>
</div>