From 96c6470d4d69dea1924915eced03f05bc746e0d8 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 17 Apr 2026 16:13:21 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/App.tsx --- src/App.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 497e949..c48d4fb 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -8,6 +8,7 @@ import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGaller import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards'; import NavbarCentered from '@/components/ui/NavbarCentered'; import TestimonialMetricsCards from '@/components/sections/testimonial/TestimonialMetricsCards'; +import { Coffee, Award, Armchair } from 'lucide-react'; export default function App() { return ( @@ -92,19 +93,19 @@ export default function App() { { title: "Single Origin Beans", description: "Ethically sourced from high-altitude plantations, these beans offer unique floral and citrus notes.", - buttonIcon: "Coffee", + buttonIcon: Coffee, imageSrc: "https://pixabay.com/get/g8145574a746c88a5596fd120a064e6173e8232d0bf2f629e83574b771c6871fa6d0d5b6ffdc3e08d2e947cef8f07177d14747bd2b3bdc5922289b25e25a28384_1280.jpg", }, { title: "Artisanal Latte Art", description: "Watch our baristas transform everyday lattes into beautiful masterpieces, served at the perfect temperature.", - buttonIcon: "Award", + buttonIcon: Award, imageSrc: "https://pixabay.com/get/g8d46302c575dc570c051f1759896a9002916feee196cc948cd59fb54669b9b4a8470b69e8ef2a02e604e1a1f0dbaeb5691fa4eb96ba4800a2a2b79c5007de646_1280.jpg", }, { title: "Cozy Seating Areas", description: "Whether you are working or catching up with friends, our seating is designed for ultimate comfort.", - buttonIcon: "Armchair", + buttonIcon: Armchair, imageSrc: "https://pixabay.com/get/g181eec50b221b77536953bd97ce5c2647e192055233d5a824f83e9a1a43498bf4509fde7859a7d12d7737496e5b9130ff9644524b2cc58ed01746442ccd32023_1280.jpg", }, ]} -- 2.49.1 From 891dbc215280a5abb8ce4313e9582c8eebdb13db Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 16:13:34 +0000 Subject: [PATCH 2/2] Update src/App.tsx --- src/App.tsx | 416 ++++++++++++++++------------------------------------ 1 file changed, 129 insertions(+), 287 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index c48d4fb..3d1976e 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -13,306 +13,148 @@ import { Coffee, Award, Armchair } from 'lucide-react'; export default function App() { return ( <> - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- + ]} + leftText="© 2024 Brew & Bean. All rights reserved." + rightText="Crafted with love." + /> + ); } -- 2.49.1