From d841c9af899718bd0fd650172acf55dee6d2c909 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 15 Apr 2026 18:32:20 +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 1179f9c..583b895 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: "FAQ", - id: "faq", + href: "#faq", }, ]} ctaButton={{ -- 2.49.1 From e9fa57541b36796d0462729ebf0c049a2bd12f34 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 18:32:31 +0000 Subject: [PATCH 2/2] Update src/App.tsx --- src/App.tsx | 346 ++++++++++++++++++++-------------------------------- 1 file changed, 134 insertions(+), 212 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 583b895..20395bc 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -11,224 +11,146 @@ import { Star, TrendingUp, Zap } from "lucide-react"; export default function App() { return ( <> - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - + +
+ +
+ +
+ +
+ +
+ -
+ ]} + /> + + +
+ +
+ +
+ +
+ +
+ +
+ + ); } -- 2.49.1