feat(admin): add Tournaments link to admin sidebar
Missed in Phase 3 Task 4 — the /admin/tournaments route exists but was not reachable from the admin nav without typing the URL. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
73a28eaa7b
commit
2c2bb22328
1 changed files with 7 additions and 0 deletions
|
|
@ -10,6 +10,7 @@ import {
|
|||
Calendar,
|
||||
FolderKanban,
|
||||
RefreshCw,
|
||||
Award,
|
||||
} from "lucide-react";
|
||||
|
||||
export function meta(): Route.MetaDescriptors {
|
||||
|
|
@ -59,6 +60,12 @@ export default function AdminLayout() {
|
|||
Sports Seasons
|
||||
</Link>
|
||||
</Button>
|
||||
<Button variant="ghost" className="w-full justify-start" asChild>
|
||||
<Link to="/admin/tournaments">
|
||||
<Award className="mr-2 h-4 w-4" />
|
||||
Tournaments
|
||||
</Link>
|
||||
</Button>
|
||||
<Button variant="ghost" className="w-full justify-start" asChild>
|
||||
<Link to="/admin/templates">
|
||||
<FolderKanban className="mr-2 h-4 w-4" />
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue