Changed some stuf on artworks table

This commit is contained in:
2026-02-02 19:19:52 +01:00
parent c915df904d
commit 0c72a756c5
4 changed files with 136 additions and 163 deletions

View File

@ -17,54 +17,41 @@ export type AdminNavGroup =
export const adminNav: AdminNavGroup[] = [
{ type: "link", title: "Home", href: "/" },
{
type: "group",
title: "Upload",
title: "Uploads",
items: [
{ title: "Single Image", href: "/uploads/single" },
{ title: "Multiple Images", href: "/uploads/bulk" },
],
},
{ type: "link", title: "Artworks", href: "/artworks" },
{
type: "group",
title: "Artwork Management",
title: "Artworks",
items: [
{ title: "Artwork List", href: "/artworks" },
{ title: "Categories", href: "/categories" },
],
},
{
type: "group",
title: "Topics",
title: "General",
items: [{ title: "Tags", href: "/tags" }],
},
{
type: "group",
title: "Commissions",
items: [
{ title: "Requests", href: "/commissions/requests" },
{ title: "Board", href: "/commissions/kanban" },
{ title: "Types", href: "/commissions/types" },
{ title: "Custom Cards", href: "/commissions/custom-cards" },
{ title: "Custom (YCH)", href: "/commissions/custom-cards" },
{ title: "TypeOptions", href: "/commissions/types/options" },
{ title: "TypeExtras", href: "/commissions/types/extras" },
{ title: "Guidelines", href: "/commissions/guidelines" },
],
},
{ type: "link", title: "Terms of Service", href: "/tos" },
{
type: "group",
title: "Users",
items: [
{ title: "Users", href: "/users" },
{ title: "New User", href: "/users/new" },
],
},
{ type: "link", title: "Users", href: "/users" },
];