From 71e78b66c3a21accf52a8d94077c9bbbee9fa3ce Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 15 Apr 2026 12:16:38 +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 835347a..5b3a156 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -16,19 +16,19 @@ export default function App() { navItems={[ { name: "About", - id: "about", + href: "#about", }, { name: "Features", - id: "features", + href: "#features", }, { name: "Pricing", - id: "pricing", + href: "#pricing", }, { name: "Contact", - id: "contact", + href: "#contact", }, ]} ctaButton={{ -- 2.49.1 From cb3127201004e276bf3dac49f6f070b23a6d4f60 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 12:16:49 +0000 Subject: [PATCH 2/2] Update src/App.tsx --- src/App.tsx | 366 ++++++++++++++++++---------------------------------- 1 file changed, 122 insertions(+), 244 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 5b3a156..005304e 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -10,263 +10,141 @@ import TestimonialMetricsCards from '@/components/sections/testimonial/Testimoni export default function App() { return ( <> - + -
- -
+
+ +
-
- -
+
+ +
-
- -
- -
- -
- -
- -
- -
- -
- - + +
+ +
+ +
+ +
+ +
+ +
+ + + { + items: [ + { label: "Privacy", href: "#" }, + { label: "Terms", href: "#" }, + ], + }, + ]} + /> + ); } -- 2.49.1