Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-04-20 17:05:13 +00:00

View File

@@ -7,7 +7,7 @@ import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
@@ -79,24 +79,18 @@ export default function LandingPage() {
</div>
<div id="menu" data-section="menu">
<ProductCardFour
<ProductCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
products={[
{
id: "p1", name: "Classic Hummus", price: "25 QAR", variant: "Mezze", imageSrc: "http://img.b2bpic.net/free-photo/man-holds-plate-with-gurza-side-view_141793-4738.jpg"},
{
id: "p2", name: "Mixed Grill Platter", price: "120 QAR", variant: "Grills", imageSrc: "http://img.b2bpic.net/free-photo/side-view-lulya-kebab-with-red-onion-geens-hot-green-pepper-salt-pepper-pita_141793-4992.jpg"},
{
id: "p3", name: "Fresh Tabbouleh", price: "30 QAR", variant: "Salad", imageSrc: "http://img.b2bpic.net/free-photo/green-salad-leaves-wooden-bowl_661915-382.jpg"},
{
id: "p4", name: "Crispy Falafel", price: "20 QAR", variant: "Appetizer", imageSrc: "http://img.b2bpic.net/free-photo/top-view-dolma-green-meat-meal-inside-black-plate-along-with-greens-olive-oil-red-cherry-tomatoes-brown-wooden_140725-13324.jpg"},
{
id: "p5", name: "Lamb Kofta", price: "85 QAR", variant: "Main", imageSrc: "http://img.b2bpic.net/free-photo/variations-beef-lamp-rack-kebab-grill-with-hot-bbq-sauce-onion-salad_114579-117.jpg"},
{
id: "p6", name: "Honey Baklava", price: "40 QAR", variant: "Dessert", imageSrc: "http://img.b2bpic.net/free-photo/eastern-sweets-assorted-traditional-turkish-delight-with-nuts_114579-19458.jpg"},
{ id: "p1", name: "Classic Hummus", price: "25 QAR", imageSrc: "http://img.b2bpic.net/free-photo/man-holds-plate-with-gurza-side-view_141793-4738.jpg" },
{ id: "p2", name: "Mixed Grill Platter", price: "120 QAR", imageSrc: "http://img.b2bpic.net/free-photo/side-view-lulya-kebab-with-red-onion-geens-hot-green-pepper-salt-pepper-pita_141793-4992.jpg" },
{ id: "p3", name: "Fresh Tabbouleh", price: "30 QAR", imageSrc: "http://img.b2bpic.net/free-photo/green-salad-leaves-wooden-bowl_661915-382.jpg" },
{ id: "p4", name: "Crispy Falafel", price: "20 QAR", imageSrc: "http://img.b2bpic.net/free-photo/top-view-dolma-green-meat-meal-inside-black-plate-along-with-greens-olive-oil-red-cherry-tomatoes-brown-wooden_140725-13324.jpg" },
{ id: "p5", name: "Lamb Kofta", price: "85 QAR", imageSrc: "http://img.b2bpic.net/free-photo/variations-beef-lamp-rack-kebab-grill-with-hot-bbq-sauce-onion-salad_114579-117.jpg" },
{ id: "p6", name: "Honey Baklava", price: "40 QAR", imageSrc: "http://img.b2bpic.net/free-photo/eastern-sweets-assorted-traditional-turkish-delight-with-nuts_114579-19458.jpg" },
]}
title="Our Signature Dishes"
description="A curated selection of our most beloved mezze, grills, and traditional delicacies."
@@ -206,4 +200,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}