From 3643f2e6873b9a05b746e04426df8c020fd77222 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 17 Apr 2026 15:16:32 +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 12779e8..8adc894 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -18,19 +18,19 @@ export default function App() { navItems={[ { name: "Home", - id: "hero", + href: "#hero", }, { name: "About", - id: "about", + href: "#about", }, { name: "Menu", - id: "menu", + href: "#menu", }, { name: "Contact", - id: "contact", + href: "#contact", }, ]} ctaButton={{ -- 2.49.1 From d9be7305097eb24c0514bc1c86afe8758fb4fd6f Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 15:16:45 +0000 Subject: [PATCH 2/2] Update src/App.tsx --- src/App.tsx | 416 +++++++++++++++++----------------------------------- 1 file changed, 135 insertions(+), 281 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 8adc894..fb44655 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -12,298 +12,152 @@ import TestimonialQuoteCards from '@/components/sections/testimonial/Testimonial export default function App() { return ( <> - + -
- -
+
+ +
-
- -
+
+ +
- - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + + title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] + } + ]} + copyright="© 2024 London Bakes. All rights reserved." + links={[{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }]} + /> + ); -} +} \ No newline at end of file -- 2.49.1