Update src/app/reviews/page.tsx

This commit is contained in:
2026-02-20 16:29:43 +00:00
parent f752e7978e
commit 77554dcdaa

View File

@@ -46,52 +46,22 @@ export default function ReviewsPage() {
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Brittnee Gent",
role: "Business Owner",
testimonial: "A very well structured company! Owners are compassionate, down to earth, outgoing, everyday people. Facility is top notch & orderly, trucks are always well maintained & clean, drivers are passionate, professional & always presentable. No whining. No excuses.",
imageSrc: "https://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg",
imageAlt: "Brittnee Gent"
id: "1", name: "Brittnee Gent", role: "Business Owner", testimonial: "A very well structured company! Owners are compassionate, down to earth, outgoing, everyday people. Facility is top notch & orderly, trucks are always well maintained & clean, drivers are passionate, professional & always presentable. No whining. No excuses.", imageSrc: "https://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg", imageAlt: "Brittnee Gent"
},
{
id: "2",
name: "Montgomery Trucking",
role: "Partner Company",
testimonial: "Nick and the family are great people. I enjoyed working with them. I won't ever find another company like them. Great people.",
imageSrc: "https://img.b2bpic.net/free-photo/portrait-happy-woman-black-jacket-happy-short-haired-girl-dark-suit-widely-sincerely-smiles-isolated-background_197531-18508.jpg",
imageAlt: "Montgomery Trucking representative"
id: "2", name: "Montgomery Trucking", role: "Partner Company", testimonial: "Nick and the family are great people. I enjoyed working with them. I won't ever find another company like them. Great people.", imageSrc: "https://img.b2bpic.net/free-photo/portrait-happy-woman-black-jacket-happy-short-haired-girl-dark-suit-widely-sincerely-smiles-isolated-background_197531-18508.jpg", imageAlt: "Montgomery Trucking representative"
},
{
id: "3",
name: "Carmen Holdridge",
role: "Project Manager",
testimonial: "Highly recommended. Their professionalism and commitment to getting the job done right is exactly what we need for our operations.",
imageSrc: "https://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg",
imageAlt: "Carmen Holdridge"
id: "3", name: "Carmen Holdridge", role: "Project Manager", testimonial: "Highly recommended. Their professionalism and commitment to getting the job done right is exactly what we need for our operations.", imageSrc: "https://img.b2bpic.net/free-photo/happy-professional_1098-12931.jpg", imageAlt: "Carmen Holdridge"
},
{
id: "4",
name: "James Cooper",
role: "Construction Foreman",
testimonial: "Best hauling company I've worked with in 20 years. Reliable, professional, and they always show up when they say they will. That's rare in this business.",
imageSrc: "https://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg",
imageAlt: "James Cooper"
id: "4", name: "James Cooper", role: "Construction Foreman", testimonial: "Best hauling company I've worked with in 20 years. Reliable, professional, and they always show up when they say they will. That's rare in this business.", imageSrc: "https://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", imageAlt: "James Cooper"
},
{
id: "5",
name: "Sarah Mitchell",
role: "Operations Director",
testimonial: "Outstanding service from start to finish. They handled our complex equipment transport with professionalism and care. Will definitely use them again.",
imageSrc: "https://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg",
imageAlt: "Sarah Mitchell"
id: "5", name: "Sarah Mitchell", role: "Operations Director", testimonial: "Outstanding service from start to finish. They handled our complex equipment transport with professionalism and care. Will definitely use them again.", imageSrc: "https://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg", imageAlt: "Sarah Mitchell"
},
{
id: "6",
name: "David Rodriguez",
role: "Site Supervisor",
testimonial: "These folks understand construction timelines and the importance of being where you need to be when you need to be there. Dependable and professional.",
imageSrc: "https://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg",
imageAlt: "David Rodriguez"
id: "6", name: "David Rodriguez", role: "Site Supervisor", testimonial: "These folks understand construction timelines and the importance of being where you need to be when you need to be there. Dependable and professional.", imageSrc: "https://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", imageAlt: "David Rodriguez"
}
]}
animationType="slide-up"
@@ -150,8 +120,7 @@ export default function ReviewsPage() {
logoText="Trucking & Construction Texas"
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "/about" },
{ label: "Services", href: "/services" },
@@ -159,8 +128,7 @@ export default function ReviewsPage() {
]
},
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Heavy Hauling", href: "/services" },
{ label: "Freight Transport", href: "/services" },
{ label: "Equipment Transport", href: "/services" },
@@ -168,8 +136,7 @@ export default function ReviewsPage() {
]
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Contact Us", href: "/contact" },
{ label: "Request Quote", href: "/contact" },
{ label: "FAQ", href: "#" },
@@ -177,8 +144,7 @@ export default function ReviewsPage() {
]
},
{
title: "Connect",
items: [
title: "Connect", items: [
{ label: "Facebook", href: "https://facebook.com" },
{ label: "LinkedIn", href: "https://linkedin.com" },
{ label: "Instagram", href: "https://instagram.com" },
@@ -191,4 +157,4 @@ export default function ReviewsPage() {
</div>
</ThemeProvider>
);
}
}