From 2e7df44151b2debe29000291a84a73ff958d58df Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 17:41:51 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index b6348fb..18076ec 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -7,8 +7,10 @@ import Link from 'next/link'; import { FormInput } from 'lucide-react'; const navItems = [ + { name: "Home", id: "home", href: "/" }, + { name: "Menu", id: "menu", href: "/menu" }, { name: "About", id: "about", href: "/about" }, - { name: "Contact", id: "contact", href: "/contact" }, + { name: "Contact", id: "contact", href: "/contact" } ]; const Footer = ({ navItems }: { navItems: { name: string; href: string; id: string }[] }) => { @@ -82,4 +84,4 @@ export default function ContactPage() {