13 Commits

Author SHA1 Message Date
4b45e441fa Update src/app/menu/page.tsx 2026-04-21 16:42:47 +00:00
221fc17a3c Update src/app/menu/page.tsx 2026-04-21 16:42:21 +00:00
a6ddc31f77 Update src/app/menu/page.tsx 2026-04-21 16:41:38 +00:00
4eb55749d7 Update src/app/menu/page.tsx 2026-04-21 16:41:12 +00:00
8a3661933c Update src/app/menu/page.tsx 2026-04-21 16:40:03 +00:00
5d97e500fd Merge version_11 into main
Merge version_11 into main
2026-04-21 16:36:31 +00:00
59b4980489 Update src/app/menu/page.tsx 2026-04-21 16:36:25 +00:00
b78c7c7250 Merge version_11 into main
Merge version_11 into main
2026-04-21 16:34:33 +00:00
2b8e486b67 Update src/app/menu/page.tsx 2026-04-21 16:34:27 +00:00
54bf7ee04e Merge version_11 into main
Merge version_11 into main
2026-04-21 16:33:57 +00:00
d12fc7810c Update src/app/menu/page.tsx 2026-04-21 16:33:53 +00:00
5c87e76721 Merge version_10 into main
Merge version_10 into main
2026-04-21 16:28:43 +00:00
1595b59e78 Merge version_10 into main
Merge version_10 into main
2026-04-21 16:11:28 +00:00

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
export default function MenuPage() {
return (
@@ -34,18 +34,18 @@ export default function MenuPage() {
</div>
<div id="top-picks" data-section="top-picks">
<ProductCardThree
title="THIS MONTH'S TOP PICKS"
description="Discover our curated selection of customer favorites and chef specialties."
<ProductCardFour
title="This Months Top Picks"
description="Discover our curated selection of customer favorites and chef specialties. Elegant, fresh, and served just for you."
animationType="slide-up"
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
{ id: "p1", name: "Smoked Salmon Avocado Toast", price: "$13.95", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775669412046-4kmmj6cs.png", imageAlt: "Smoked Salmon Avocado Toast" },
{ id: "p2", name: "Signature Sweet Crepe", price: "$6.95", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775501251342-0zntpynz.png", imageAlt: "Signature Sweet Crepe" },
{ id: "p3", name: "Beet and Pickled Onion Toast ", price: "$13.75", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775446159736-6ddgpu4s.png", imageAlt: "Beet and Pickled Onion Toast " },
{ id: "p4", name: "Red Caviar Crepes", price: "$12.95", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775445253627-8k9zsc19.jpg", imageAlt: "Red Caviar Crepes" }
{ id: "p1", name: "Strawberry Bubble Waffle ", price: "$13.95", variant: "Breakfast", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775669412046-4kmmj6cs.png", imageAlt: "Strawberry Bubble Waffle " },
{ id: "p2", name: "Bubble Tea ", price: "$6.95", variant: "Drinks ", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775501251342-0zntpynz.png", imageAlt: "Bubble Tea " },
{ id: "p3", name: "Beet and Pickled Onion Toast ", price: "$10.95", variant: "Breakfast", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775446159736-6ddgpu4s.png", imageAlt: "Beet and Pickled Onion Toast " },
{ id: "p4", name: "Dubai Cup ", price: "$12.95", variant: "Specialty", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BoVnf2RAOeDoHMswG5SpadeRHr/uploaded-1775445253627-8k9zsc19.jpg", imageAlt: "Red Caviar Crep es" }
]}
/>
</div>
@@ -94,4 +94,4 @@ export default function MenuPage() {
</ReactLenis>
</ThemeProvider>
);
}
}