From fce60cf9d9490ada466e7ffd1aa6ec2a7dc93d9c Mon Sep 17 00:00:00 2001 From: Citali Date: Thu, 5 Feb 2026 17:11:17 +0100 Subject: [PATCH] Deactive unused nav items for now --- src/components/global/TopNav.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/global/TopNav.tsx b/src/components/global/TopNav.tsx index 1e33623..eb4768b 100644 --- a/src/components/global/TopNav.tsx +++ b/src/components/global/TopNav.tsx @@ -15,10 +15,10 @@ const links = [ label: "Categories", items: [ { href: "/artworks/animalstudies", label: "Animal Studies" }, - { href: "/artworks/artfight", label: "Artfight" } + // { href: "/artworks/artfight", label: "Artfight" } ], }, - { type: "link" as const, href: "/miniatures", label: "Miniatures" }, + // { type: "link" as const, href: "/miniatures", label: "Miniatures" }, { type: "link" as const, href: "/commissions", label: "Commissions" }, { type: "link" as const, href: "/commissions/status", label: "Commission Status" }, { type: "link" as const, href: "/tos", label: "Terms of Service" }, @@ -125,7 +125,7 @@ export default function TopNav() { {item.label} - +
    {item.items.map(({ href, label }) => (