Merge version_2 into main #1

Merged
bender merged 5 commits from version_2 into main 2026-02-15 20:31:53 +00:00
Showing only changes of commit 786cffa313 - Show all commits

View File

@@ -30,9 +30,9 @@ export default function SababaKitchenPage() {
<NavbarStyleFullscreen
brandName="Sababa Kitchen"
navItems={[
{ name: "Home", id: "hero" },
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Menu", id: "/menu" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" }
]}
@@ -58,8 +58,8 @@ export default function SababaKitchenPage() {
rating={5}
ratingText="Trusted by food enthusiasts"
buttons={[
{ text: "Reserve a Table", href: "#contact" },
{ text: "View Menu", href: "#menu" }
{ text: "Reserve a Table", href: "contact" },
{ text: "View Menu", href: "/menu" }
]}
background={{ variant: "plain" }}
mediaAnimation="opacity"
@@ -99,9 +99,30 @@ export default function SababaKitchenPage() {
},
{
id: "shakshuka", name: "Shakshuka - Egg & Tomato", price: "$15", variant: "Poached Eggs • Tomato Sauce • Spices", imageSrc: "https://img.b2bpic.net/free-psd/overhead-view-bowl-creamy-hummus-drizzled-with-golden-olive-oil-garnished-with-fresh-green-parsley-red-paprika-spice-black-background_84443-61197.jpg", imageAlt: "Traditional shakshuka"
},
{
id: "falafel", name: "Golden Falafel Plate", price: "$12", variant: "Crispy Chickpea Fritters • Tahini • Fresh Vegetables", imageSrc: "https://img.b2bpic.net/free-psd/white-bowl-creamy-hummus-topped-with-fresh-salad-chopped-cucumber-tomato-garnished-with-herbs-served-with-pita-bread-wedges_84443-63597.jpg", imageAlt: "Golden falafel plate"
},
{
id: "tabbouleh", name: "Tabbouleh - Herb Salad", price: "$13", variant: "Fresh Parsley • Bulgur • Lemon Dressing", imageSrc: "https://img.b2bpic.net/free-psd/overhead-view-rustic-bowl-filled-with-creamy-hummus-garnished-with-fresh-parsley-sesame-seeds-chili-oil-black-background_84443-61207.jpg", imageAlt: "Fresh tabbouleh salad"
},
{
id: "labneh", name: "Creamy Labneh Dip", price: "$11", variant: "Strained Yogurt • Za'atar • Olive Oil", imageSrc: "https://img.b2bpic.net/free-psd/overhead-view-bowl-creamy-hummus-drizzled-with-golden-olive-oil-garnished-with-fresh-green-parsley-red-paprika-spice-black-background_84443-61197.jpg", imageAlt: "Creamy labneh dip"
},
{
id: "baba-ghanoush", name: "Baba Ghanoush", price: "$13", variant: "Roasted Eggplant • Sesame • Pomegranate", imageSrc: "https://img.b2bpic.net/free-psd/white-bowl-creamy-hummus-topped-with-fresh-salad-chopped-cucumber-tomato-garnished-with-herbs-served-with-pita-bread-wedges_84443-63597.jpg", imageAlt: "Baba ghanoush dip"
},
{
id: "fattoush", name: "Fattoush Salad", price: "$14", variant: "Mixed Greens • Crispy Pita • Sumac Vinaigrette", imageSrc: "https://img.b2bpic.net/free-psd/overhead-view-rustic-bowl-filled-with-creamy-hummus-garnished-with-fresh-parsley-sesame-seeds-chili-oil-black-background_84443-61207.jpg", imageAlt: "Fattoush salad"
},
{
id: "muttabal", name: "Muttabal - Spiced Eggplant", price: "$13", variant: "Eggplant • Yogurt • Spices • Pine Nuts", imageSrc: "https://img.b2bpic.net/free-psd/overhead-view-bowl-creamy-hummus-drizzled-with-golden-olive-oil-garnished-with-fresh-green-parsley-red-paprika-spice-black-background_84443-61197.jpg", imageAlt: "Muttabal eggplant dish"
},
{
id: "msabacha", name: "Msabacha - Warm Hummus", price: "$15", variant: "Crushed Chickpeas • Tahini • Warm Olive Oil • Spices", imageSrc: "https://img.b2bpic.net/free-psd/white-bowl-creamy-hummus-topped-with-fresh-salad-chopped-cucumber-tomato-garnished-with-herbs-served-with-pita-bread-wedges_84443-63597.jpg", imageAlt: "Warm msabacha hummus"
}
]}
gridVariant="three-columns-all-equal-width"
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
@@ -212,10 +233,10 @@ export default function SababaKitchenPage() {
columns={[
{
title: "Navigate", items: [
{ label: "Home", href: "#hero" },
{ label: "About", href: "#about" },
{ label: "Menu", href: "#menu" },
{ label: "Team", href: "#team" }
{ label: "Home", href: "/" },
{ label: "About", href: "about" },
{ label: "Menu", href: "/menu" },
{ label: "Team", href: "team" }
]
},
{
@@ -228,8 +249,8 @@ export default function SababaKitchenPage() {
},
{
title: "Discover", items: [
{ label: "Our Story", href: "#about" },
{ label: "Chef's Menu", href: "#menu" },
{ label: "Our Story", href: "about" },
{ label: "Chef's Menu", href: "/menu" },
{ label: "Events", href: "#" },
{ label: "Catering", href: "#" }
]