Update src/app/about/page.tsx

This commit is contained in:
2026-03-25 11:20:26 +00:00
parent 76cfab88d3
commit 9069acd4fb

View File

@@ -5,13 +5,13 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "home", href: "/" },
{ name: "About", href: "/about" },
{ name: "Menu", id: "menu", href: "/menu" },
{ name: "Products", href: "/products" },
{ name: "Book Table", id: "book-table", href: "/book-table" },
{ name: "Gallery", id: "gallery", href: "/gallery" },
{ name: "Contact", id: "contact", href: "/contact" }
{ name: "Home", id: "/", href: "/" },
{ name: "About", id: "/about", href: "/about" },
{ name: "Menu", id: "/menu", href: "/menu" },
{ name: "Products", id: "/products", href: "/products" },
{ name: "Book Table", id: "/book-table", href: "/book-table" },
{ name: "Gallery", id: "/gallery", href: "/gallery" },
{ name: "Contact", id: "/contact", href: "/contact" }
];
return (