From e98172cb146098cda828652c525800c38485e2f3 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 17 Apr 2026 14:53:40 +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 bcc7abd..34bf9f1 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -18,19 +18,19 @@ export default function App() { navItems={[ { name: "About", - id: "about", + href: "#about", }, { name: "Features", - id: "features", + href: "#features", }, { name: "Team", - id: "team", + href: "#team", }, { name: "FAQ", - id: "faq", + href: "#faq", }, ]} ctaButton={{ -- 2.49.1 From 403d1d8305733335b95197b57f7de8cfe8edd716 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 14:53:49 +0000 Subject: [PATCH 2/2] Update src/App.tsx --- src/App.tsx | 388 +++++++++++++++++----------------------------------- 1 file changed, 122 insertions(+), 266 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 34bf9f1..58365cc 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -12,281 +12,137 @@ import TestimonialMarqueeCards from '@/components/sections/testimonial/Testimoni export default function App() { return ( <> - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- + ); } -- 2.49.1