Update src/app/menu/page.tsx
This commit is contained in:
@@ -43,17 +43,11 @@ export default function MenuPage() {
|
|||||||
description="Hand-selected premium beef cuts aged to perfection"
|
description="Hand-selected premium beef cuts aged to perfection"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "ribeye",
|
id: "ribeye", label: "Ribeye", title: "Our Most Beloved Premium Cut", items: ["24-month aged beef", "Bone-in perfection", "Rich marbling throughout"],
|
||||||
label: "Ribeye",
|
|
||||||
title: "Our Most Beloved Premium Cut",
|
|
||||||
items: ["24-month aged beef", "Bone-in perfection", "Rich marbling throughout"],
|
|
||||||
buttons: [{ text: "View Menu", href: "/menu" }]
|
buttons: [{ text: "View Menu", href: "/menu" }]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "filet",
|
id: "filet", label: "Filet Mignon", title: "The Epitome of Tenderness", items: ["Buttery texture", "Sous-vide perfection", "Truffle-infused butter"],
|
||||||
label: "Filet Mignon",
|
|
||||||
title: "The Epitome of Tenderness",
|
|
||||||
items: ["Buttery texture", "Sous-vide perfection", "Truffle-infused butter"],
|
|
||||||
buttons: [{ text: "Reserve Table", href: "/contact" }]
|
buttons: [{ text: "Reserve Table", href: "/contact" }]
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
@@ -70,25 +64,13 @@ export default function MenuPage() {
|
|||||||
description="Explore our curated selection of premium dishes"
|
description="Explore our curated selection of premium dishes"
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Prime Ribeye 16oz", price: "$52", imageSrc: "https://img.b2bpic.net/free-photo/view-delicious-steak-dish_23-2150777653.jpg", imageAlt: "Prime Ribeye Steak"
|
||||||
name: "Prime Ribeye 16oz",
|
|
||||||
price: "$52",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/view-delicious-steak-dish_23-2150777653.jpg",
|
|
||||||
imageAlt: "Prime Ribeye Steak"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Filet Mignon 8oz", price: "$58", imageSrc: "https://img.b2bpic.net/free-photo/fried-steak-table_140725-44194.jpg", imageAlt: "Filet Mignon"
|
||||||
name: "Filet Mignon 8oz",
|
|
||||||
price: "$58",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/fried-steak-table_140725-44194.jpg",
|
|
||||||
imageAlt: "Filet Mignon"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Wine Flight Selection", price: "$35", imageSrc: "https://img.b2bpic.net/free-photo/tuna-salad-with-vegetables-plate_140725-5555.jpg", imageAlt: "Wine Pairing Flight"
|
||||||
name: "Wine Flight Selection",
|
|
||||||
price: "$35",
|
|
||||||
imageSrc: "https://img.b2bpic.net/free-photo/tuna-salad-with-vegetables-plate_140725-5555.jpg",
|
|
||||||
imageAlt: "Wine Pairing Flight"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
@@ -118,32 +100,28 @@ export default function MenuPage() {
|
|||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Navigate",
|
title: "Navigate", items: [
|
||||||
items: [
|
|
||||||
{ label: "Home", href: "/" },
|
{ label: "Home", href: "/" },
|
||||||
{ label: "Menu", href: "/menu" },
|
{ label: "Menu", href: "/menu" },
|
||||||
{ label: "About", href: "/about" }
|
{ label: "About", href: "/about" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Dine With Us",
|
title: "Dine With Us", items: [
|
||||||
items: [
|
|
||||||
{ label: "Make Reservation", href: "/contact" },
|
{ label: "Make Reservation", href: "/contact" },
|
||||||
{ label: "View Menu", href: "/menu" },
|
{ label: "View Menu", href: "/menu" },
|
||||||
{ label: "Wine Selection", href: "/menu" }
|
{ label: "Wine Selection", href: "/menu" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Connect",
|
title: "Connect", items: [
|
||||||
items: [
|
|
||||||
{ label: "Contact Us", href: "/contact" },
|
{ label: "Contact Us", href: "/contact" },
|
||||||
{ label: "Email", href: "mailto:hello@steakandvine.com" },
|
{ label: "Email", href: "mailto:hello@steakandvine.com" },
|
||||||
{ label: "Phone", href: "tel:+1-555-0123" }
|
{ label: "Phone", href: "tel:+1-555-0123" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Hours",
|
title: "Hours", items: [
|
||||||
items: [
|
|
||||||
{ label: "Mon-Thu: 5PM-11PM" },
|
{ label: "Mon-Thu: 5PM-11PM" },
|
||||||
{ label: "Fri-Sat: 5PM-12AM" },
|
{ label: "Fri-Sat: 5PM-12AM" },
|
||||||
{ label: "Sunday: 5PM-10PM" }
|
{ label: "Sunday: 5PM-10PM" }
|
||||||
|
|||||||
Reference in New Issue
Block a user