Update src/app/menu/page.tsx

This commit is contained in:
2026-03-09 23:19:30 +00:00
parent 495f99d4c5
commit bb84575a38

View File

@@ -31,12 +31,10 @@ export default function MenuPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="La Crêperie"
brandName="Catherine's Canteen"
navItems={navItems}
button={{
text: "Call Now",
href: "tel:+1234567890",
}}
text: "Call Now", href: "tel:+1234567890"}}
/>
</div>
@@ -49,33 +47,11 @@ export default function MenuPage() {
tagAnimation="slide-up"
products={[
{
id: "1",
name: "Nutella & Strawberry Crepe",
price: "$8.50",
imageSrc: "http://img.b2bpic.net/free-photo/top-close-view-yummy-sweet-rolls-sliced-cake-tea-inside-plate-dark-space_140725-95493.jpg?_wi=2",
imageAlt: "Nutella and strawberry crepe",
},
id: "1", name: "Nutella & Strawberry Crepe", price: "$8.50", imageSrc: "http://img.b2bpic.net/free-photo/top-close-view-yummy-sweet-rolls-sliced-cake-tea-inside-plate-dark-space_140725-95493.jpg?_wi=2", imageAlt: "Nutella and strawberry crepe"},
{
id: "2",
name: "Ham & Cheese Crepe",
price: "$7.95",
imageSrc: "http://img.b2bpic.net/free-photo/breakfast-board-with-crepes-cheese-lemon-eggs_114579-70073.jpg?_wi=2",
imageAlt: "Ham and cheese savory crepe",
},
id: "2", name: "Ham & Cheese Crepe", price: "$7.95", imageSrc: "http://img.b2bpic.net/free-photo/breakfast-board-with-crepes-cheese-lemon-eggs_114579-70073.jpg?_wi=2", imageAlt: "Ham and cheese savory crepe"},
{
id: "3",
name: "Fresh Glazed Donuts",
price: "$5.99",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-donuts-with-frosting_23-2148468152.jpg?_wi=2",
imageAlt: "Fresh glazed donuts assortment",
},
{
id: "4",
name: "Loukoumades",
price: "$6.50",
imageSrc: "http://img.b2bpic.net/free-photo/holding-caucasian-mutaki-cookies-hand_114579-84960.jpg?_wi=2",
imageAlt: "Honey loukoumades",
},
id: "3", name: "Fresh Glazed Donuts", price: "$5.99", imageSrc: "http://img.b2bpic.net/free-photo/close-up-donuts-with-frosting_23-2148468152.jpg?_wi=2", imageAlt: "Fresh glazed donuts assortment"},
]}
gridVariant="two-columns-alternating-heights"
animationType="slide-up"
@@ -86,15 +62,11 @@ export default function MenuPage() {
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="La Crêperie"
logoText="Catherine's Canteen"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Terms of Service",
href: "#",
}}
text: "Terms of Service", href: "#"}}
/>
</div>
</ThemeProvider>