From eb8770ccebe4e170b8cded4fa7cf03d6001728e6 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 17 Apr 2026 03:12:13 +0000 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 e8918e8..fc70828 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -17,15 +17,15 @@ export default function App() { navItems={[ { name: "Features", - id: "features", + href: "#features", }, { name: "Metrics", - id: "metrics", + href: "#metrics", }, { name: "Testimonials", - id: "testimonials", + href: "#testimonials", }, ]} ctaButton={{ -- 2.49.1 From 46f6988ecaa08ea64c4c5db7ea08fcc0e17ed241 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 03:12:19 +0000 Subject: [PATCH 2/2] Update src/App.tsx --- src/App.tsx | 327 ++++++++++++++++------------------------------------ 1 file changed, 101 insertions(+), 226 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index fc70828..7c4d7a7 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -11,240 +11,115 @@ import TestimonialDetailedCards from '@/components/sections/testimonial/Testimon export default function App() { return ( <> - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- + ); } -- 2.49.1