Update src/app/menu/page.tsx

This commit is contained in:
2026-03-11 20:16:11 +00:00
parent 629742c439
commit 21cd2e6733

View File

@@ -31,9 +31,7 @@ export default function MenuPage() {
{ name: "Reviews", id: "/reviews" },
]}
button={{
text: "Contact Us",
href: "/contact",
}}
text: "Contact Us", href: "tel:+1-605-555-0100"}}
animateOnLoad={true}
/>
</div>
@@ -45,47 +43,17 @@ export default function MenuPage() {
tag="Baked Fresh Daily"
products={[
{
id: "1",
name: "Artisan Sourdough Bread",
price: "$5.99",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-cut-sliced-sandwich-bread-bread-slice-with-butter-it-knife-cutting-board-wooden-background_141793-5910.jpg?_wi=4",
imageAlt: "Fresh artisan sourdough bread loaf",
},
id: "1", name: "Artisan Sourdough Bread", price: "$5.99", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cut-sliced-sandwich-bread-bread-slice-with-butter-it-knife-cutting-board-wooden-background_141793-5910.jpg?_wi=4", imageAlt: "Fresh artisan sourdough bread loaf"},
{
id: "2",
name: "Golden Croissant",
price: "$4.49",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-breakfast-valentine-s-day_23-2148378477.jpg?_wi=3",
imageAlt: "Butter croissant with coffee",
},
id: "2", name: "Golden Croissant", price: "$4.49", imageSrc: "http://img.b2bpic.net/free-photo/delicious-breakfast-valentine-s-day_23-2148378477.jpg?_wi=3", imageAlt: "Butter croissant with coffee"},
{
id: "3",
name: "Grilled Sandwich",
price: "$9.99",
imageSrc: "http://img.b2bpic.net/free-photo/vertical-closeup-shot-delicious-sandwiches-white-plate-marble-table_181624-32275.jpg?_wi=3",
imageAlt: "Toasted grilled sandwich with fresh ingredients",
},
id: "3", name: "Grilled Sandwich", price: "$9.99", imageSrc: "http://img.b2bpic.net/free-photo/vertical-closeup-shot-delicious-sandwiches-white-plate-marble-table_181624-32275.jpg?_wi=3", imageAlt: "Toasted grilled sandwich with fresh ingredients"},
{
id: "4",
name: "Assorted Pastries",
price: "$3.99",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-working-bakery_23-2150273161.jpg?_wi=2",
imageAlt: "Fresh assorted pastries display",
},
id: "4", name: "Assorted Pastries", price: "$3.99", imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-working-bakery_23-2150273161.jpg?_wi=2", imageAlt: "Fresh assorted pastries display"},
{
id: "5",
name: "Homemade Cookies",
price: "$2.99",
imageSrc: "http://img.b2bpic.net/free-photo/wooden-board-with-plate-cookies-marble-background-high-quality-photo_114579-53236.jpg?_wi=2",
imageAlt: "Fresh baked homemade cookies",
},
id: "5", name: "Homemade Cookies", price: "$2.99", imageSrc: "http://img.b2bpic.net/free-photo/wooden-board-with-plate-cookies-marble-background-high-quality-photo_114579-53236.jpg?_wi=2", imageAlt: "Fresh baked homemade cookies"},
{
id: "6",
name: "Whole Grain Bread",
price: "$6.49",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-cut-sliced-sandwich-bread-bread-slice-with-butter-it-knife-cutting-board-wooden-background_141793-5910.jpg?_wi=5",
imageAlt: "Sliced whole grain bread",
},
id: "6", name: "Whole Grain Bread", price: "$6.49", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cut-sliced-sandwich-bread-bread-slice-with-butter-it-knife-cutting-board-wooden-background_141793-5910.jpg?_wi=5", imageAlt: "Sliced whole grain bread"},
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
@@ -111,13 +79,9 @@ export default function MenuPage() {
<FooterLogoReveal
logoText="Guatelinda"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "Terms of Service",
href: "#",
}}
text: "Terms of Service", href: "#"}}
/>
</div>
</ThemeProvider>