4 Commits

Author SHA1 Message Date
b2bfa6e6c2 Update src/app/page.tsx 2026-05-07 23:10:37 +00:00
238f2d2f78 Merge version_3 into main
Merge version_3 into main
2026-05-07 23:09:22 +00:00
3e61e70ced Update src/app/page.tsx 2026-05-07 23:09:18 +00:00
7d47398e28 Merge version_2 into main
Merge version_2 into main
2026-05-07 23:07:49 +00:00

View File

@@ -131,14 +131,14 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal"
useInvertedBackground={true}
products={[
{ id: "p1", name: "Shakshuka", price: "$18", variant: "Vegetarian", imageSrc: "http://img.b2bpic.net/free-photo/frying-pan-omelet-with-vegetables_114579-82076.jpg" },
{ id: "p2", name: "Grilled Fish", price: "$28", variant: "Seafood", imageSrc: "http://img.b2bpic.net/free-photo/seafood-cleaning-process-kitchen_23-2150171468.jpg" },
{ id: "p3", name: "Lamb Couscous", price: "$24", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/front-view-meat-grilled-roll-pita-bread-with-tomato-onion_141793-4637.jpg" },
{ id: "p4", name: "Brik Pastry", price: "$12", variant: "Appetizer", imageSrc: "http://img.b2bpic.net/free-photo/grilled-pawns-white-plate-with-red-basilic-rosemary-leaves_114579-2960.jpg" },
{ id: "p5", name: "Mediterranean Salad", price: "$14", variant: "Vegetarian", imageSrc: "http://img.b2bpic.net/free-photo/top-view-vegetable-salad-consists-cucumber-cheese-tomatoes-dark-blue-background-color-diet-lunch-meal-cuisine-restaurant-food-health_179666-18329.jpg" },
{ id: "p6", name: "Baklava Dessert", price: "$9", variant: "Sweet", imageSrc: "http://img.b2bpic.net/free-photo/cup-dark-coffee-with-cookie-dark-board-high-quality-photo_114579-67924.jpg" },
{ id: "p1", name: "Shakshuka", price: "$18", variant: "Spicy tomato stew with poached eggs and aromatic spices", imageSrc: "http://img.b2bpic.net/free-photo/frying-pan-omelet-with-vegetables_114579-82076.jpg" },
{ id: "p2", name: "Grilled Fish", price: "$28", variant: "Char-grilled fresh catch served with lemon and herbs", imageSrc: "http://img.b2bpic.net/free-photo/seafood-cleaning-process-kitchen_23-2150171468.jpg" },
{ id: "p3", name: "Lamb Couscous", price: "$24", variant: "Slow-braised tender lamb on fluffy, buttery semolina", imageSrc: "http://img.b2bpic.net/free-photo/front-view-meat-grilled-roll-pita-bread-with-tomato-onion_141793-4637.jpg" },
{ id: "p4", name: "Brik Pastry", price: "$12", variant: "Crispy golden filo dough with savory herb-infused egg filling", imageSrc: "http://img.b2bpic.net/free-photo/grilled-pawns-white-plate-with-red-basilic-rosemary-leaves_114579-2960.jpg" },
{ id: "p5", name: "Mediterranean Salad", price: "$14", variant: "Crisp garden vegetables tossed in tangy olive oil dressing", imageSrc: "http://img.b2bpic.net/free-photo/top-view-vegetable-salad-consists-cucumber-cheese-tomatoes-dark-blue-background-color-diet-lunch-meal-cuisine-restaurant-food-health_179666-18329.jpg" },
{ id: "p6", name: "Baklava Dessert", price: "$9", variant: "Sweet honey-soaked layers with crunchy chopped walnuts", imageSrc: "http://img.b2bpic.net/free-photo/cup-dark-coffee-with-cookie-dark-board-high-quality-photo_114579-67924.jpg" },
]}
title="Our Signature Dishes"
title="Signature Mediterranean Menu"
description="Discover the vibrant flavors of Mediterranean gastronomy."
/>
</div>
@@ -174,7 +174,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{ id: "f1", title: "Do you take reservations?", content: "Yes, we highly recommend booking in advance. Book your table via the form below." },
{ id: "f1", title: "Do you take reservations?", content: "Yes, we highly recommend booking in advance." },
{ id: "f2", title: "Are there vegan options?", content: "We have a dedicated selection of traditional vegetable-based dishes." },
{ id: "f3", title: "Can you host events?", content: "We cater for private gatherings and corporate events." },
]}
@@ -207,4 +207,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}