From 5d574ba1e8e095ed7835d2a2c330b1cb11ad7aef Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 10:18:28 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/pages/TestimonialsPage.tsx --- src/pages/TestimonialsPage.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/pages/TestimonialsPage.tsx b/src/pages/TestimonialsPage.tsx index 5df5ace..e560b42 100644 --- a/src/pages/TestimonialsPage.tsx +++ b/src/pages/TestimonialsPage.tsx @@ -14,7 +14,6 @@ export default function TestimonialsPage() { description="We are proud of our partnerships and the results we deliver." testimonials={[ { - id: "1", name: "Sarah Miller", role: "CEO", company: "Tech Innovate", @@ -22,7 +21,6 @@ export default function TestimonialsPage() { imageSrc: "http://img.b2bpic.net/free-photo/happy-united-multiethnic-team-posing-office-hall_1262-20246.jpg", }, { - id: "2", name: "David Chen", role: "Founder", company: "Creative Hub", @@ -30,7 +28,6 @@ export default function TestimonialsPage() { imageSrc: "http://img.b2bpic.net/free-photo/modern-woman-posing-camera_23-2148415936.jpg", }, { - id: "3", name: "Emily Watson", role: "Director", company: "Global Growth", @@ -38,7 +35,6 @@ export default function TestimonialsPage() { imageSrc: "http://img.b2bpic.net/free-photo/middle-age-man-with-grey-hair-dark-color-shirt-looking-something-laughing-out-pointing-with-index-finger-something-someone-standing-brown-background_141793-133931.jpg", }, { - id: "4", name: "Marcus Reid", role: "VP of Design", company: "Design Studio", @@ -46,7 +42,6 @@ export default function TestimonialsPage() { imageSrc: "http://img.b2bpic.net/free-photo/traveler-studio-portrait-handsome-bearded-man-wearing-ca_613910-12296.jpg", }, { - id: "5", name: "Julia Bennett", role: "Head of Marketing", company: "BrandCo", -- 2.49.1 From 917661c383f1baabdd625f9c1bd8724f349fe5a3 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 21 Jun 2026 10:18:31 +0000 Subject: [PATCH 2/2] Update src/pages/TestimonialsPage.tsx --- src/pages/TestimonialsPage.tsx | 50 ++++++++-------------------------- 1 file changed, 12 insertions(+), 38 deletions(-) diff --git a/src/pages/TestimonialsPage.tsx b/src/pages/TestimonialsPage.tsx index e560b42..abe8db9 100644 --- a/src/pages/TestimonialsPage.tsx +++ b/src/pages/TestimonialsPage.tsx @@ -14,40 +14,20 @@ export default function TestimonialsPage() { description="We are proud of our partnerships and the results we deliver." testimonials={[ { - name: "Sarah Miller", - role: "CEO", - company: "Tech Innovate", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/happy-united-multiethnic-team-posing-office-hall_1262-20246.jpg", - }, + name: "Sarah Miller", role: "CEO", company: "Tech Innovate", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/happy-united-multiethnic-team-posing-office-hall_1262-20246.jpg"}, { - name: "David Chen", - role: "Founder", - company: "Creative Hub", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/modern-woman-posing-camera_23-2148415936.jpg", - }, + name: "David Chen", role: "Founder", company: "Creative Hub", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/modern-woman-posing-camera_23-2148415936.jpg"}, { - name: "Emily Watson", - role: "Director", - company: "Global Growth", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/middle-age-man-with-grey-hair-dark-color-shirt-looking-something-laughing-out-pointing-with-index-finger-something-someone-standing-brown-background_141793-133931.jpg", - }, + name: "Emily Watson", role: "Director", company: "Global Growth", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/middle-age-man-with-grey-hair-dark-color-shirt-looking-something-laughing-out-pointing-with-index-finger-something-someone-standing-brown-background_141793-133931.jpg"}, { - name: "Marcus Reid", - role: "VP of Design", - company: "Design Studio", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/traveler-studio-portrait-handsome-bearded-man-wearing-ca_613910-12296.jpg", - }, + name: "Marcus Reid", role: "VP of Design", company: "Design Studio", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/traveler-studio-portrait-handsome-bearded-man-wearing-ca_613910-12296.jpg"}, { - name: "Julia Bennett", - role: "Head of Marketing", - company: "BrandCo", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-working-business-with-computer_482257-20185.jpg", - }, + name: "Julia Bennett", role: "Head of Marketing", company: "BrandCo", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-working-business-with-computer_482257-20185.jpg"}, ]} /> @@ -61,9 +41,7 @@ export default function TestimonialsPage() { author="CEO, TechInnovate" avatars={[ { - name: "Client A", - imageSrc: "http://img.b2bpic.net/free-photo/inspiring-new-boss_1098-93.jpg", - }, + name: "Client A", imageSrc: "http://img.b2bpic.net/free-photo/inspiring-new-boss_1098-93.jpg"}, ]} /> @@ -76,11 +54,7 @@ export default function TestimonialsPage() { title="Companies who trusted us" description="Joined by hundreds more." names={[ - "Alpha", - "Beta", - "Gamma", - "Delta", - ]} + "Alpha", "Beta", "Gamma", "Delta"]} /> -- 2.49.1