From 4abbd9644af4df643d45d856417b59f279a2d231 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 16 Apr 2026 05:04:12 +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 6c78eb9..a3c6b69 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -15,15 +15,15 @@ export default function App() { navItems={[ { name: "Features", - id: "features", + href: "#features", }, { name: "Pricing", - id: "pricing", + href: "#pricing", }, { name: "Contact", - id: "contact", + href: "#contact", }, ]} ctaButton={{ -- 2.49.1 From fd5d949251886dacccb053cd177fe081eab10af9 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 16 Apr 2026 05:04:19 +0000 Subject: [PATCH 2/2] Update src/App.tsx --- src/App.tsx | 328 ++++++++++++++++++++-------------------------------- 1 file changed, 124 insertions(+), 204 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index a3c6b69..9f94d3e 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -9,216 +9,136 @@ import TestimonialMetricsCards from '@/components/sections/testimonial/Testimoni export default function App() { return ( <> - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- + ); } -- 2.49.1