From 003b4235d296b937fb497b4063715aee4cbcbb44 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 06:37:11 +0000 Subject: [PATCH] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 8af726c..3df8b7d 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -12,7 +12,7 @@ export default function MenuPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Menu", id: "/menu" }, - { name: "Contact", id: "/contact" }, + { name: "Contact", id: "/contact" } ]; const footerColumns = [ @@ -20,17 +20,17 @@ export default function MenuPage() { title: "Quick Links", items: [ { label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, - { label: "Contact", href: "/contact" }, - ], + { label: "Contact", href: "/contact" } + ] }, { title: "Contact", items: [ { label: "Call Us", href: "tel:09182950479" }, { label: "WhatsApp", href: "https://wa.me/919182950479" }, { label: "Directions", href: "https://www.google.com/maps/dir/?api=1&destination=TAJ+Family+Restaurant,+Ambedkar+Nagar,+Shanti+Nagar,+Sircilla,+Telangana+505301" }, - { label: "Email", href: "mailto:info@tajfamilyrestaurant.com" }, - ], - }, + { label: "Email", href: "mailto:info@tajfamilyrestaurant.com" } + ] + } ]; return ( @@ -52,11 +52,15 @@ export default function MenuPage() {