Update src/app/reviews/page.tsx
This commit is contained in:
@@ -10,27 +10,13 @@ import { Clock, Users, Award } from "lucide-react";
|
||||
|
||||
export default function ReviewsPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "home" },
|
||||
{ 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" },
|
||||
];
|
||||
|
||||
const handleNavigation = (id: string) => {
|
||||
if (id === "home") {
|
||||
window.location.href = "/";
|
||||
} else if (id === "services") {
|
||||
window.location.href = "/";
|
||||
} else if (id === "about") {
|
||||
window.location.href = "/about";
|
||||
} else if (id === "reviews") {
|
||||
window.location.href = "/reviews";
|
||||
} else if (id === "contact") {
|
||||
window.location.href = "/";
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -46,12 +32,10 @@ export default function ReviewsPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Irvine Plumbing"
|
||||
brandName="Irvine Plumbing & Drain"
|
||||
navItems={navItems}
|
||||
button={{
|
||||
text: "Call Now",
|
||||
href: "tel:(949)850-4471",
|
||||
}}
|
||||
text: "Call Now", href: "tel:(949)850-4471"}}
|
||||
className="sticky top-0 z-50"
|
||||
/>
|
||||
</div>
|
||||
@@ -60,41 +44,17 @@ export default function ReviewsPage() {
|
||||
<TestimonialCardSixteen
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Johnson",
|
||||
role: "Homeowner",
|
||||
company: "Irvine",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrat-young-man-laughing_23-2148560405.jpg?_wi=2",
|
||||
imageAlt: "happy homeowner smiling portrait professional",
|
||||
},
|
||||
id: "1", name: "Sarah Johnson", role: "Homeowner", company: "Irvine", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrat-young-man-laughing_23-2148560405.jpg?_wi=2", imageAlt: "happy homeowner smiling portrait professional"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael Rodriguez",
|
||||
role: "Homeowner",
|
||||
company: "Costa Mesa",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-confident-bearded-businessman-joyfully-looking-camera-while-talking-cellphone-restaurant-outdoor_574295-1311.jpg?_wi=2",
|
||||
imageAlt: "man smiling satisfied customer portrait",
|
||||
},
|
||||
id: "2", name: "Michael Rodriguez", role: "Homeowner", company: "Costa Mesa", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-confident-bearded-businessman-joyfully-looking-camera-while-talking-cellphone-restaurant-outdoor_574295-1311.jpg?_wi=2", imageAlt: "man smiling satisfied customer portrait"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Jennifer Lee",
|
||||
role: "Homeowner",
|
||||
company: "Newport Beach",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/builder-woman-construction-uniform-safety-helmet-with-smile-face-doing-ok-sign-standing-isolated-white-wall-with-copy-space_141793-14507.jpg?_wi=2",
|
||||
imageAlt: "woman portrait smiling customer testimonial",
|
||||
},
|
||||
id: "3", name: "Jennifer Lee", role: "Homeowner", company: "Newport Beach", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/builder-woman-construction-uniform-safety-helmet-with-smile-face-doing-ok-sign-standing-isolated-white-wall-with-copy-space_141793-14507.jpg?_wi=2", imageAlt: "woman portrait smiling customer testimonial"},
|
||||
{
|
||||
id: "4",
|
||||
name: "David Martinez",
|
||||
role: "Homeowner",
|
||||
company: "Lake Forest",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-middle-aged-man-pointing-down-polo-t-shirt-hat_176474-61593.jpg?_wi=2",
|
||||
imageAlt: "man satisfied customer smiling testimonial",
|
||||
},
|
||||
id: "4", name: "David Martinez", role: "Homeowner", company: "Lake Forest", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-middle-aged-man-pointing-down-polo-t-shirt-hat_176474-61593.jpg?_wi=2", imageAlt: "man satisfied customer smiling testimonial"},
|
||||
]}
|
||||
kpiItems={[
|
||||
{ value: "34+", label: "Google Reviews" },
|
||||
@@ -114,25 +74,13 @@ export default function ReviewsPage() {
|
||||
<MetricCardOne
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "34+",
|
||||
title: "Reviews",
|
||||
description: "From verified customers across Orange County",
|
||||
icon: Users,
|
||||
id: "1", value: "34+", title: "Reviews", description: "From verified customers across Orange County", icon: Users,
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "5.0★",
|
||||
title: "Rating",
|
||||
description: "Consistently excellent service ratings",
|
||||
icon: Award,
|
||||
id: "2", value: "5.0★", title: "Rating", description: "Consistently excellent service ratings", icon: Award,
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "1000+",
|
||||
title: "Homes",
|
||||
description: "Successfully served families in the area",
|
||||
icon: Clock,
|
||||
id: "3", value: "1000+", title: "Homes", description: "Successfully served families in the area", icon: Clock,
|
||||
},
|
||||
]}
|
||||
title="Our Track Record"
|
||||
@@ -165,30 +113,27 @@ export default function ReviewsPage() {
|
||||
copyrightText="© 2025 Irvine Plumbing & Drain. All rights reserved."
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{ label: "Drain Cleaning", href: "/" },
|
||||
{ label: "Water Heater Repair", href: "/" },
|
||||
{ label: "Leak Detection", href: "/" },
|
||||
{ label: "Emergency Plumbing", href: "/" },
|
||||
title: "Services", items: [
|
||||
{ label: "Drain Cleaning", href: "/services" },
|
||||
{ label: "Water Heater Repair", href: "/services" },
|
||||
{ label: "Leak Detection", href: "/services" },
|
||||
{ label: "Emergency Plumbing", href: "/services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Reviews", href: "/reviews" },
|
||||
{ label: "Contact", href: "/" },
|
||||
{ label: "Service Areas", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Service Areas", href: "/" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{ label: "(949) 850-4471", href: "tel:(949)850-4471" },
|
||||
{ label: "3349 Michelson Dr, Irvine, CA 92612", href: "https://maps.google.com/?q=3349+Michelson+Dr+Irvine+CA+92612" },
|
||||
{ label: "Open 24/7", href: "#" },
|
||||
{ label: "Request Service", href: "/" },
|
||||
{ label: "Request Service", href: "/contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user