Deactive unused nav items for now

This commit is contained in:
2026-02-05 17:11:17 +01:00
parent dd0c87167c
commit fce60cf9d9

View File

@ -15,10 +15,10 @@ const links = [
label: "Categories", label: "Categories",
items: [ items: [
{ href: "/artworks/animalstudies", label: "Animal Studies" }, { 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", label: "Commissions" },
{ type: "link" as const, href: "/commissions/status", label: "Commission Status" }, { type: "link" as const, href: "/commissions/status", label: "Commission Status" },
{ type: "link" as const, href: "/tos", label: "Terms of Service" }, { type: "link" as const, href: "/tos", label: "Terms of Service" },
@ -125,7 +125,7 @@ export default function TopNav() {
<NavigationMenuTrigger className="hover:bg-hover data-[state=open]:bg-hover"> <NavigationMenuTrigger className="hover:bg-hover data-[state=open]:bg-hover">
{item.label} {item.label}
</NavigationMenuTrigger> </NavigationMenuTrigger>
<NavigationMenuContent className="z-50"> <NavigationMenuContent className="z-50">
<ul className="min-w-48"> <ul className="min-w-48">
{item.items.map(({ href, label }) => ( {item.items.map(({ href, label }) => (
<li key={href}> <li key={href}>