From 6e4ce1e80423b7bd5899d769b6a2628271a1ad10 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 17 Apr 2026 14:59:18 +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 e4b89a7..fa0943c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -19,15 +19,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 c37d484cf13181c89734d8e2ad1032017bdc0375 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 14:59:27 +0000 Subject: [PATCH 2/2] Update src/App.tsx --- src/App.tsx | 520 ++++++++++++++++++++-------------------------------- 1 file changed, 198 insertions(+), 322 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index fa0943c..1bd63c5 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -13,334 +13,210 @@ import { Shield, Smile, Users } from "lucide-react"; export default function App() { return ( <> - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - + +
+ +
+ +
+ +
+ +
+ -
+ ]} + /> + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + ); } -- 2.49.1