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() {