5 Commits

Author SHA1 Message Date
7e4471a4c7 Update src/pages/HomePage/sections/Menu.tsx 2026-06-25 06:48:51 +00:00
kudinDmitriyUp
7f9f8ae097 Bob AI: Update the menu section to include 4 new categories (Dessert & Pastries, Croissa 2026-06-25 06:48:41 +00:00
b2bcfdc5bd Merge version_3_1782369682406 into main
Merge version_3_1782369682406 into main
2026-06-25 06:46:46 +00:00
kudinDmitriyUp
a92a48dc84 Bob AI: Update the menu section with the provided bilingual (English/Arabic) items and p 2026-06-25 06:46:43 +00:00
ca71cf51d1 Merge version_2_1782369314842 into main
Merge version_2_1782369314842 into main
2026-06-25 06:38:54 +00:00

View File

@@ -7,30 +7,43 @@ import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function MenuSection(): React.JSX.Element {
return (
<div id="menu" data-section="menu">
<div id="menu" data-section="menu" className="flex flex-col gap-16 py-12">
<SectionErrorBoundary name="menu">
<FeaturesRevealCardsBento
tag="The Menu"
title="Curated Experiences"
description="From single-origin pours to delicate pastries, every item is selected for quality."
tag="Menu / المنيو"
title="Hot Drinks / مشروبات حارة"
description="Carefully crafted hot beverages to warm your soul."
items={[
{
title: "Signature Espresso", description: "Robust and refined, our signature blend.", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-holding-coffee-with-milk-cream_23-2148865608.jpg"},
title: "Ethiopian Drip / قهوة مقطرة إثيوبية", description: "Large: 12 | Small: 9", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/man-pouring-syrup-coffee-mixed-with-milk_140725-7036.jpg?_wi=1"},
{
title: "Cold Brew", description: "Steeped for 24 hours, velvet smooth.", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/glasses-with-tasty-coffee-assortment_23-2149514291.jpg"},
title: "Brazilian Drip / قهوة مقطرة برازيلية", description: "Large: 10 | Small: 7", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-holding-coffee-with-milk-cream_23-2148865608.jpg?_wi=1"},
{
title: "Gourmet Pastries", description: "Freshly baked every single morning.", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/blue-plate-two-sweet-doughnuts-with-colorful-sprinkles_114579-87208.jpg"},
title: "Americano / أمريكانو", description: "Large: 13 | Small: 10", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/small-business-items-serving-coffee_23-2149458023.jpg?_wi=1"},
{
title: "Flat White", description: "Perfectly steamed, silky texture.", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/small-business-items-serving-coffee_23-2149458023.jpg"},
title: "Espresso / إسبريسو", description: "Price: 8", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/glasses-with-tasty-coffee-assortment_23-2149514291.jpg?_wi=1"},
{
title: "Iced Latte", description: "Refreshing and bold caffeine lift.", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/refreshing-iced-coffee-glass-with-condensation-ice_84443-83820.jpg"},
title: "Cortado/Piccolo / كورتادو/بيكولو", description: "Price: 10", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-holding-coffee-with-milk-cream_23-2148865608.jpg?_wi=2"},
{
title: "Artisan Danishes", description: "Layers of buttery, flaky perfection.", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/strawberry-pie-table_140725-6826.jpg"},
title: "Latte / لاتيه", description: "Large: 13 | Small: 10", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/man-pouring-syrup-coffee-mixed-with-milk_140725-7036.jpg?_wi=2"},
{
title: "Pour Over", description: "Clean flavors, vibrant origin notes.", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/man-pouring-syrup-coffee-mixed-with-milk_140725-7036.jpg"},
title: "Cappuccino / كابتشينو", description: "Large: 13 | Small: 10", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/small-business-items-serving-coffee_23-2149458023.jpg?_wi=2"},
]}
/>
<FeaturesRevealCardsBento
tag="Menu / المنيو"
title="Iced Drinks / مشروبات باردة"
description="Refreshing iced beverages to cool you down."
items={[
{
title: "Iced Latte / لاتيه بارد", description: "Large: 15 | Small: 12", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/refreshing-iced-coffee-glass-with-condensation-ice_84443-83820.jpg?_wi=1"},
{
title: "Iced Americano / أمريكانو بارد", description: "Large: 14 | Small: 11", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/refreshing-iced-coffee-glass-with-condensation-ice_84443-83820.jpg?_wi=2"},
{
title: "Cold Brew / كولد برو", description: "Price: 16", href: "#", imageSrc: "http://img.b2bpic.net/free-photo/glasses-with-tasty-coffee-assortment_23-2149514291.jpg?_wi=2"},
]}
/>
</SectionErrorBoundary>
</div>
);
}
}