Update src/app/contact/page.tsx

This commit is contained in:
2026-03-25 17:41:51 +00:00
parent a649cbd56c
commit 2e7df44151

View File

@@ -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() {
<Footer navItems={navItems} />
</ThemeProvider>
);
}
}