From 79e7b64ae46b690e72048d709c0d4bc24159ea23 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Wed, 15 Apr 2026 14:40:40 +0300 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 aca35f5..0717048 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -16,15 +16,15 @@ export default function App() { navItems={[ { name: "About", - id: "about", + href: "#about", }, { name: "Products", - id: "features", + href: "#features", }, { name: "Testimonials", - id: "testimonials", + href: "#testimonials", }, ]} ctaButton={{ From d2ddaef16c9d333b824f4797e7583d93c7910a1b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 11:41:00 +0000 Subject: [PATCH 2/2] Update src/App.tsx --- src/App.tsx | 304 ++++++++++++++++++++-------------------------------- 1 file changed, 117 insertions(+), 187 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 0717048..e4f9b18 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -10,199 +10,129 @@ import { Clock, Flame, Wheat } from "lucide-react"; export default function App() { return ( <> - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - + +
+ +
+ +
+ -
+ ]} + imageSrc="https://images.unsplash.com/photo-1773546812142-9d8b42aa207f?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4Mzc5ODl8MHwxfHNlYXJjaHwyfHx0cmFkaXRpb25hbCUyMGJha2VyeSUyMHdvcmtzcGFjZSUyMGludGVyaW9yfGVufDF8MHx8fDE3NzYyNTMxMzN8MA&ixlib=rb-4.1.0&q=80&w=1080" + /> + + +
+ +
+ +
+ +
+ +
+ +
+ + ); }