From 7d0ccd1c00ef57503fc6451c13ca939521ff039c Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 19 Jun 2026 20:12:27 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index a5bd496..6550c0d 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -115,35 +115,30 @@ export default function HomePage() { description="Join thousands of satisfied visitors who call our café their home away from home." testimonials={[ { - id: "1", name: "Mohammed Alsabhan", role: "Local Guide", quote: "The coffee session is very beautiful and the atmosphere is relaxing.", imageSrc: "http://img.b2bpic.net/free-photo/multiracial-group-four-friends-having-coffee-together_1139-1022.jpg", }, { - id: "2", name: "M.F", role: "Foodie", quote: "High-end, beautiful restaurant with delicious food. Recommend the beef burger.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-hanging-out-together_23-2149143974.jpg", }, { - id: "3", name: "Ahmed Asiri", role: "Traveler", quote: "A special place in Tangier, quiet and beautiful with excellent service.", imageSrc: "http://img.b2bpic.net/free-photo/you-get-it-it-s-so-funny_329181-2916.jpg", }, { - id: "4", name: "Sarah", role: "Local", quote: "The best place to unwind after work. The staff is wonderful.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-women-break-time_23-2149308479.jpg", }, { - id: "5", name: "David", role: "Tourist", quote: "Great atmosphere, nice outdoor area, and excellent Cappuccino.", -- 2.49.1 From 385bc36967836033fb27cb158f93cbb30864ee53 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 19 Jun 2026 20:12:34 +0000 Subject: [PATCH 2/2] Update src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 252 ++++++++++++++--------------------------- 1 file changed, 82 insertions(+), 170 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 6550c0d..9ab7672 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -9,186 +9,98 @@ import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; export default function HomePage() { return ( <> -
- +
+ - -
+ tag="Since 2005" + title="Experience the Soul of Tangier" + description="Premium coffee, fresh pastries, and authentic atmosphere in the heart of the city." + primaryButton={{ text: "View Menu", href: "#menu" }} + secondaryButton={{ text: "Visit Us", href: "#contact" }} + items={[ + { imageSrc: "http://img.b2bpic.net/free-photo/close-up-coffee-machine-cup_23-2148892820.jpg" }, + { imageSrc: "http://img.b2bpic.net/free-photo/cup-with-delicious-coffee-table-high-angle_23-2149703756.jpg" }, + { imageSrc: "http://img.b2bpic.net/free-photo/crop-hands-holding-cup-coffee_23-2147765433.jpg" }, + { imageSrc: "http://img.b2bpic.net/free-photo/high-angle-view-cup-coffee-with-muffins_23-2148337171.jpg" }, + { imageSrc: "http://img.b2bpic.net/free-photo/high-angle-barista-leveling-coffee-level-machine-cup_23-2148523052.jpg" }, + { imageSrc: "http://img.b2bpic.net/free-photo/coffee-cup-with-blurred-background_23-2148164926.jpg" } + ]} + /> +
+
-
- +
+ - -
+ title="A Tradition of Taste" + descriptions={[ + "Located at 7 Baie de Tanger, Café Cappuccino serves as a bridge between tradition and modern café culture.", "Our beans are roasted to perfection and our kitchen crafts authentic dishes that bring the spirit of Tangier to your table.", "Whether it's your morning coffee or a late-night dessert, we welcome you to our cozy sanctuary." + ]} + /> +
+
- -
- +
+ - -
+ tag="Customer Stories" + title="What Our Guests Say" + description="Join thousands of satisfied visitors who call our café their home away from home." + testimonials={[ + { name: "Mohammed Alsabhan", role: "Local Guide", quote: "The coffee session is very beautiful and the atmosphere is relaxing.", imageSrc: "http://img.b2bpic.net/free-photo/multiracial-group-four-friends-having-coffee-together_1139-1022.jpg" }, + { name: "M.F", role: "Foodie", quote: "High-end, beautiful restaurant with delicious food. Recommend the beef burger.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-hanging-out-together_23-2149143974.jpg" }, + { name: "Ahmed Asiri", role: "Traveler", quote: "A special place in Tangier, quiet and beautiful with excellent service.", imageSrc: "http://img.b2bpic.net/free-photo/you-get-it-it-s-so-funny_329181-2916.jpg" }, + { name: "Sarah", role: "Local", quote: "The best place to unwind after work. The staff is wonderful.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-women-break-time_23-2149308479.jpg" }, + { name: "David", role: "Tourist", quote: "Great atmosphere, nice outdoor area, and excellent Cappuccino.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-dark-haired-caucasian-woman-sunglasses-black-dress-laughing_176420-4613.jpg" } + ]} + /> +
+
-
- +
+ - -
+ tag="Need Help?" + title="Common Questions" + description="Find answers to our service hours, location, and policies." + items={[ + { question: "What are your opening hours?", answer: "We are open daily until 2:00 AM." }, + { question: "Do you offer smoking areas?", answer: "Yes, we have a dedicated smoking section available for our guests." }, + { question: "Do you provide delivery?", answer: "Yes, we offer contactless delivery services in the surrounding area." } + ]} + /> +
+
-
- +
+ - -
+ tag="Visit Us" + text="Ready for an exceptional coffee experience? Find us in Tangier or call to reserve your table." + primaryButton={{ text: "Get Directions", href: "#" }} + secondaryButton={{ text: "Call Us", href: "tel:+212" }} + /> +
+
); -} +} \ No newline at end of file -- 2.49.1