Update src/app/reviews/page.tsx

This commit is contained in:
2026-03-06 07:10:49 +00:00
parent e34ee8c5ba
commit e96360fad3

View File

@@ -32,6 +32,7 @@ export default function ReviewsPage() {
brandName="Electrical Handyman"
bottomLeftText="Licensed & Insured"
bottomRightText="+1 813-901-8185"
navbarBackgroundStyle="solid"
/>
</div>
@@ -48,41 +49,17 @@ export default function ReviewsPage() {
showRating={true}
testimonials={[
{
id: "1",
name: "Joe Martinez",
handle: "@homeowner_tampa",
testimonial: "Joe and his guys are respectful of your home and are efficient and personable. Highly recommend! They fixed our outlet issue quickly and professionally.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-professional-server-posing-with-confidence-with-arms-crossed-studio_482257-100166.jpg?_wi=2",
imageAlt: "customer portrait professional",
},
id: "1", name: "Joe Martinez", handle: "@homeowner_tampa", testimonial: "Joe and his guys are respectful of your home and are efficient and personable. Highly recommend! They fixed our outlet issue quickly and professionally.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-professional-server-posing-with-confidence-with-arms-crossed-studio_482257-100166.jpg?_wi=2", imageAlt: "customer portrait professional"},
{
id: "2",
name: "Sarah Johnson",
handle: "@sarahj_construction",
testimonial: "Jose Cruz responded quickly and solved our outlet repair issue right away. Best electrician in Tampa! We've used them for multiple projects and they never disappoint.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/attractive-blonde-girl-tulle-skirt-having-fun-stairs-she-is-smiling-down_197531-617.jpg?_wi=2",
imageAlt: "customer portrait homeowner",
},
id: "2", name: "Sarah Johnson", handle: "@sarahj_construction", testimonial: "Jose Cruz responded quickly and solved our outlet repair issue right away. Best electrician in Tampa! We've used them for multiple projects and they never disappoint.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/attractive-blonde-girl-tulle-skirt-having-fun-stairs-she-is-smiling-down_197531-617.jpg?_wi=2", imageAlt: "customer portrait homeowner"},
{
id: "3",
name: "Michael Chen",
handle: "@landlord_tampabay",
testimonial: "Best priced electrician and excellent service. They came on time and finished early. Very professional and clean work. Will definitely call them again for our properties.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg?_wi=2",
imageAlt: "customer portrait satisfied",
},
id: "3", name: "Michael Chen", handle: "@landlord_tampabay", testimonial: "Best priced electrician and excellent service. They came on time and finished early. Very professional and clean work. Will definitely call them again for our properties.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg?_wi=2", imageAlt: "customer portrait satisfied"},
{
id: "4",
name: "Emily Rodriguez",
handle: "@property_manager",
testimonial: "Trusted them with multiple properties. Always reliable, professional, and get the job done right. Outstanding customer service every single time.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/upbeat-saleswoman-hired-explain-vehicle-pricing-options-clients_482257-118422.jpg?_wi=2",
imageAlt: "customer portrait business",
},
id: "4", name: "Emily Rodriguez", handle: "@property_manager", testimonial: "Trusted them with multiple properties. Always reliable, professional, and get the job done right. Outstanding customer service every single time.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/upbeat-saleswoman-hired-explain-vehicle-pricing-options-clients_482257-118422.jpg?_wi=2", imageAlt: "customer portrait business"},
]}
/>
</div>
@@ -95,8 +72,7 @@ export default function ReviewsPage() {
copyrightText="© 2025 Electrical Handyman Service, Inc. | Tampa, FL 33634"
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/" },
{ label: "Services", href: "/services" },
{ label: "Reviews", href: "/reviews" },
@@ -104,8 +80,7 @@ export default function ReviewsPage() {
],
},
{
title: "Service Areas",
items: [
title: "Service Areas", items: [
{ label: "Tampa, FL", href: "#" },
{ label: "Hillsborough County", href: "#" },
{ label: "Emergency Service", href: "tel:+18139018185" },
@@ -113,8 +88,7 @@ export default function ReviewsPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Call: (813) 901-8185", href: "tel:+18139018185" },
{ label: "7046 W Hillsborough Ave", href: "#" },
{ label: "Licensed & Insured", href: "#" },
@@ -126,4 +100,4 @@ export default function ReviewsPage() {
</div>
</ThemeProvider>
);
}
}