Merge version_3 into main #3

Merged
bender merged 2 commits from version_3 into main 2026-03-08 22:59:17 +00:00
2 changed files with 22 additions and 1419 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -81,52 +81,55 @@ export default function LandingPage() {
<div id="menu" data-section="menu">
<ProductCardTwo
title="Our Menu"
description="Discover our carefully curated selection of handcrafted coffee, artisan pastries, and fresh sandwiches"
titleSegments={[
{ type: "text", content: "Our Menu Browse by Category" }
]}
description="Discover our carefully curated selection of handcrafted coffee, artisan pastries, and fresh sandwiches. Use the category labels below to quickly find your favorites."
tag="Coffee & Pastries"
tagIcon={Coffee}
products={[
{
id: "1", brand: "The Good Baker", name: "Cappuccino", price: "GHS 12.00", rating: 5,
id: "1", brand: "☕ BEVERAGES", name: "Cappuccino", price: "GHS 12.00", rating: 5,
reviewCount: "180+", imageSrc: "http://img.b2bpic.net/free-photo/latte-macchiato-black-coffee-milk-espresso-milk-foam_141793-4470.jpg", imageAlt: "Cappuccino with latte art"
},
{
id: "2", brand: "The Good Baker", name: "Latte", price: "GHS 12.00", rating: 5,
id: "2", brand: "☕ BEVERAGES", name: "Latte", price: "GHS 12.00", rating: 5,
reviewCount: "160+", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-smartphone_23-2149045740.jpg", imageAlt: "Creamy latte coffee"
},
{
id: "3", brand: "The Good Baker", name: "Hot Chocolate", price: "GHS 10.00", rating: 5,
id: "3", brand: "☕ BEVERAGES", name: "Hot Chocolate", price: "GHS 10.00", rating: 5,
reviewCount: "140+", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-assortment-with-mugs-with-tasty-beverage_23-2148325633.jpg", imageAlt: "Hot chocolate with marshmallows"
},
{
id: "4", brand: "The Good Baker", name: "Cheese Croissant", price: "GHS 8.50", rating: 5,
id: "4", brand: "🥐 PASTRIES", name: "Cheese Croissant", price: "GHS 8.50", rating: 5,
reviewCount: "95+", imageSrc: "http://img.b2bpic.net/free-photo/bakery_23-2148011668.jpg", imageAlt: "Savory cheese croissant"
},
{
id: "5", brand: "The Good Baker", name: "Chocolate Croissant", price: "GHS 8.50", rating: 5,
id: "5", brand: "🥐 PASTRIES", name: "Chocolate Croissant", price: "GHS 8.50", rating: 5,
reviewCount: "110+", imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-pastry-plate_23-2148414091.jpg", imageAlt: "Chocolate filled croissant"
},
{
id: "6", brand: "The Good Baker", name: "Tuna Bagel", price: "GHS 15.00", rating: 5,
id: "6", brand: "🥪 SANDWICHES", name: "Tuna Bagel", price: "GHS 15.00", rating: 5,
reviewCount: "85+", imageSrc: "http://img.b2bpic.net/free-photo/hamburgers-white-plate_181624-8125.jpg", imageAlt: "Fresh tuna bagel sandwich"
},
{
id: "7", brand: "The Good Baker", name: "Caprese Sandwich", price: "GHS 18.00", rating: 5,
id: "7", brand: "🥪 SANDWICHES", name: "Caprese Sandwich", price: "GHS 18.00", rating: 5,
reviewCount: "92+", imageSrc: "http://img.b2bpic.net/free-photo/front-view-tasty-toasts-with-tomatoes-olives-wooden-board-white-background-lunch-food-bread-horizontal-meal-dinner-snack-sandwich-burger_140725-156367.jpg", imageAlt: "Caprese sandwich with tomato and mozzarella"
},
{
id: "8", brand: "The Good Baker", name: "Lemon Tart", price: "GHS 9.00", rating: 5,
id: "8", brand: "🍰 DESSERTS", name: "Lemon Tart", price: "GHS 9.00", rating: 5,
reviewCount: "75+", imageSrc: "http://img.b2bpic.net/free-photo/delicious-mini-lemon-pies-with-fresh-lemons-top-view_114579-9629.jpg", imageAlt: "Lemon curd tart dessert"
},
{
id: "9", brand: "The Good Baker", name: "Mille Feuille", price: "GHS 10.50", rating: 5,
id: "9", brand: "🍰 DESSERTS", name: "Mille Feuille", price: "GHS 10.50", rating: 5,
reviewCount: "88+", imageSrc: "http://img.b2bpic.net/free-photo/opera-cake-dessert-wooden-table_123827-20788.jpg", imageAlt: "French mille feuille pastry"
},
{
id: "10", brand: "The Good Baker", name: "Salmon Citrus Salad", price: "GHS 22.00", rating: 5,
id: "10", brand: "🥗 SALADS", name: "Salmon Citrus Salad", price: "GHS 22.00", rating: 5,
reviewCount: "78+", imageSrc: "http://img.b2bpic.net/free-photo/top-view-raw-meat-slice-with-greens-radish-garlic-white-background_140725-140475.jpg", imageAlt: "Fresh salmon citrus salad"
},
{
id: "11", brand: "The Good Baker", name: "Caesar Salad", price: "GHS 16.00", rating: 5,
id: "11", brand: "🥗 SALADS", name: "Caesar Salad", price: "GHS 16.00", rating: 5,
reviewCount: "82+", imageSrc: "http://img.b2bpic.net/free-photo/person-eating-caesar-salad-with-shrimp-restaurant_23-2148076286.jpg", imageAlt: "Classic caesar salad"
},
]}
@@ -248,4 +251,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}