From 197dfa229e825498a175ce880dce64bac428840c Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 15 Apr 2026 18:15:34 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/App.tsx --- src/App.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index e419d1f..e9364f8 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -16,19 +16,19 @@ export default function App() { navItems={[ { name: "Services", - id: "features", + href: "#features", }, { name: "About", - id: "about", + href: "#about", }, { name: "Projects", - id: "metrics", + href: "#metrics", }, { name: "Contact", - id: "contact", + href: "#contact", }, ]} ctaButton={{ -- 2.49.1 From 433c7e0fe516acee410f076e939b9de0bc3e9f03 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 18:15:45 +0000 Subject: [PATCH 2/2] Update src/App.tsx --- src/App.tsx | 394 ++++++++++++++++++++-------------------------------- 1 file changed, 150 insertions(+), 244 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index e9364f8..f893b75 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -10,265 +10,171 @@ import TestimonialMetricsCards from '@/components/sections/testimonial/Testimoni export default function App() { return ( <> - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- + label: "LinkedIn", href: "#"}, + ]} + /> + ); } -- 2.49.1