From b164c0bd89b78ef041e8481be15273e1c81165ff Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Tue, 14 Apr 2026 11:54:10 +0300 Subject: [PATCH 1/2] Bob AI: fix build error in src/App.tsx --- src/App.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 2a4f499..05ba020 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -16,15 +16,15 @@ export default function App() { navItems={[ { name: "Features", - id: "features", + href: "#features", }, { name: "Science", - id: "science", + href: "#science", }, { name: "Pricing", - id: "pricing", + href: "#pricing", }, ]} ctaButton={{ -- 2.49.1 From 7e594fa0667f2c450dfcebaa9af4c1fc552fc938 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 14 Apr 2026 08:54:25 +0000 Subject: [PATCH 2/2] Update src/App.tsx --- src/App.tsx | 371 +++++++++++++++++++++++----------------------------- 1 file changed, 164 insertions(+), 207 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 05ba020..a16af69 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -10,224 +10,181 @@ import TestimonialAvatarCard from '@/components/sections/testimonial/Testimonial export default function App() { return ( <> - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - + +
+ +
+ +
+ +
+ +
+ -
+ { + name: "Mark D.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A2kdHi1NSExmmN97qC0PBBxl6G/a-professional-avatar-of-a-calm-user-nat-1776156737192-620e9c16.png" + }, + { + name: "Elena R.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A2kdHi1NSExmmN97qC0PBBxl6G/a-professional-avatar-of-a-peaceful-user-1776156745029-c4fcc9a6.png" + }, + { + name: "James K.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A2kdHi1NSExmmN97qC0PBBxl6G/a-professional-avatar-of-a-happy-user-na-1776156764070-61d13f68.png" + }, + { + name: "Lisa M.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3A2kdHi1NSExmmN97qC0PBBxl6G/a-professional-portrait-of-a-calm-and-co-1776156779859-43f77f77.png" + } + ]} + /> + + +
+ +
+ +
+ +
+ +
+ +
+ + ); } -- 2.49.1