Update src/app/menu/page.tsx
This commit is contained in:
@@ -10,12 +10,12 @@ import Link from "next/link";
|
||||
|
||||
export default function MenuPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Custom Cakes", id: "cakes" },
|
||||
{ name: "Locations", id: "locations" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Custom Cakes", id: "/custom-cakes" },
|
||||
{ name: "Locations", id: "/locations" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -34,14 +34,16 @@ export default function MenuPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Loafology"
|
||||
navItems={navItems.map((item) => ({
|
||||
name: item.name,
|
||||
id: item.id,
|
||||
}))}
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Custom Cakes", id: "/custom-cakes" },
|
||||
{ name: "Locations", id: "/locations" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
button={{
|
||||
text: "Call Now",
|
||||
href: "tel:+923005555555",
|
||||
}}
|
||||
text: "Call Now", href: "tel:+923005555555"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -55,47 +57,17 @@ export default function MenuPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Victoria Sponge Cake",
|
||||
price: "PKR 450/Serving",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-products-arrangement-bakery_23-2150273142.jpg?_wi=3",
|
||||
imageAlt: "Victoria Sponge Cake",
|
||||
},
|
||||
id: "1", name: "Victoria Sponge Cake", price: "PKR 450/Serving", imageSrc: "http://img.b2bpic.net/free-photo/delicious-products-arrangement-bakery_23-2150273142.jpg?_wi=3", imageAlt: "Victoria Sponge Cake"},
|
||||
{
|
||||
id: "2",
|
||||
name: "French Croissants",
|
||||
price: "PKR 120 Each",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/croissants-flat-lay-plaster-kitchen-towel_176474-8190.jpg?_wi=3",
|
||||
imageAlt: "Golden Croissants",
|
||||
},
|
||||
id: "2", name: "French Croissants", price: "PKR 120 Each", imageSrc: "http://img.b2bpic.net/free-photo/croissants-flat-lay-plaster-kitchen-towel_176474-8190.jpg?_wi=3", imageAlt: "Golden Croissants"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Artisan Sandwiches",
|
||||
price: "PKR 350",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-board-homemade-sandwich-sliced-vegetables-marble-surface_114579-38904.jpg?_wi=2",
|
||||
imageAlt: "Premium Sandwiches",
|
||||
},
|
||||
id: "3", name: "Artisan Sandwiches", price: "PKR 350", imageSrc: "http://img.b2bpic.net/free-photo/wooden-board-homemade-sandwich-sliced-vegetables-marble-surface_114579-38904.jpg?_wi=2", imageAlt: "Premium Sandwiches"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Specialty Donuts",
|
||||
price: "PKR 100 Each",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/individual-epiphany-cake-roscon-de-reyes-wooden-table_123827-28614.jpg?_wi=2",
|
||||
imageAlt: "Strawberry & Vanilla Donuts",
|
||||
},
|
||||
id: "4", name: "Specialty Donuts", price: "PKR 100 Each", imageSrc: "http://img.b2bpic.net/free-photo/individual-epiphany-cake-roscon-de-reyes-wooden-table_123827-28614.jpg?_wi=2", imageAlt: "Strawberry & Vanilla Donuts"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Sourdough Loaves",
|
||||
price: "PKR 280",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coffee-near-sandwich-with-knife_23-2147717724.jpg?_wi=3",
|
||||
imageAlt: "Fresh Artisan Breads",
|
||||
},
|
||||
id: "5", name: "Sourdough Loaves", price: "PKR 280", imageSrc: "http://img.b2bpic.net/free-photo/coffee-near-sandwich-with-knife_23-2147717724.jpg?_wi=3", imageAlt: "Fresh Artisan Breads"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Full Breakfast Set",
|
||||
price: "PKR 680",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheese-plate-sausages-with-vegetables_140725-3366.jpg?_wi=3",
|
||||
imageAlt: "Full Breakfast Platter",
|
||||
},
|
||||
id: "6", name: "Full Breakfast Set", price: "PKR 680", imageSrc: "http://img.b2bpic.net/free-photo/cheese-plate-sausages-with-vegetables_140725-3366.jpg?_wi=3", imageAlt: "Full Breakfast Platter"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -108,13 +80,9 @@ export default function MenuPage() {
|
||||
description="Contact us today to discuss your catering needs, custom cake orders, or special requests. Our team is ready to make your celebration memorable."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Us Now",
|
||||
href: "tel:+923005555555",
|
||||
},
|
||||
text: "Call Us Now", href: "tel:+923005555555"},
|
||||
{
|
||||
text: "Send Message",
|
||||
href: "#",
|
||||
},
|
||||
text: "Send Message", href: "/contact"},
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={true}
|
||||
@@ -125,87 +93,51 @@ export default function MenuPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
label: "Menu", href: "/menu"},
|
||||
{
|
||||
label: "About",
|
||||
href: "/",
|
||||
},
|
||||
label: "About", href: "/#about"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#",
|
||||
},
|
||||
label: "Contact", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Table Reservation",
|
||||
href: "#",
|
||||
},
|
||||
label: "Table Reservation", href: "/contact"},
|
||||
{
|
||||
label: "Custom Cakes",
|
||||
href: "#",
|
||||
},
|
||||
label: "Custom Cakes", href: "/custom-cakes"},
|
||||
{
|
||||
label: "Catering & Events",
|
||||
href: "#",
|
||||
},
|
||||
label: "Catering & Events", href: "/catering"},
|
||||
{
|
||||
label: "Bulk Orders",
|
||||
href: "#",
|
||||
},
|
||||
label: "Bulk Orders", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Locations",
|
||||
items: [
|
||||
title: "Locations", items: [
|
||||
{
|
||||
label: "Blue Area Branch",
|
||||
href: "#",
|
||||
},
|
||||
label: "Blue Area Branch", href: "/locations"},
|
||||
{
|
||||
label: "F-11 Branch",
|
||||
href: "#",
|
||||
},
|
||||
label: "F-11 Branch", href: "/locations"},
|
||||
{
|
||||
label: "Hours & Info",
|
||||
href: "#",
|
||||
},
|
||||
label: "Hours & Info", href: "/locations"},
|
||||
{
|
||||
label: "Directions",
|
||||
href: "#",
|
||||
},
|
||||
label: "Directions", href: "/locations"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "WhatsApp Us",
|
||||
href: "https://wa.me/923005555555",
|
||||
},
|
||||
label: "WhatsApp Us", href: "https://wa.me/923005555555"},
|
||||
{
|
||||
label: "Call Now",
|
||||
href: "tel:+923005555555",
|
||||
},
|
||||
label: "Call Now", href: "tel:+923005555555"},
|
||||
{
|
||||
label: "Email",
|
||||
href: "mailto:hello@loafology.com",
|
||||
},
|
||||
label: "Email", href: "mailto:hello@loafology.com"},
|
||||
{
|
||||
label: "Feedback",
|
||||
href: "#",
|
||||
},
|
||||
label: "Feedback", href: "/contact"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user