feat: (web) add item route

This commit is contained in:
syntaxbullet
2026-01-17 13:11:50 +01:00
parent afe82c449b
commit d7543d9f48
4 changed files with 26 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
import * as React from "react"
import { useLocation, type Location } from "react-router-dom"
import { Home, Palette, ShieldCheck, Settings, LayoutDashboard, Trophy, SlidersHorizontal, Coins, Cog, UserCog, type LucideIcon } from "lucide-react"
import { Home, Palette, ShieldCheck, Settings, LayoutDashboard, Trophy, SlidersHorizontal, Coins, Cog, UserCog, Package, type LucideIcon } from "lucide-react"
export interface NavSubItem {
title: string
@@ -46,6 +46,7 @@ const NAV_CONFIG: NavConfigItem[] = [
subItems: [
{ title: "Overview", url: "/admin/overview", icon: LayoutDashboard },
{ title: "Quests", url: "/admin/quests", icon: Trophy },
{ title: "Items", url: "/admin/items", icon: Package },
]
},
{