From 6001eda9aa921966c4d152f0e1246984c001e6c8 Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Mon, 30 Mar 2026 22:01:18 -0700 Subject: [PATCH] feat: add admin panel links to navigation header --- src/components/Navigation.tsx | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/src/components/Navigation.tsx b/src/components/Navigation.tsx index 2235fe1..3bf6d59 100644 --- a/src/components/Navigation.tsx +++ b/src/components/Navigation.tsx @@ -48,13 +48,27 @@ export default function Navigation() { > Tournaments - {userRole === "club_admin" && ( - - Admin - + {(userRole === "club_admin" || userRole === "site_admin") && ( + <> + + Admin + + + Players + + + Upload Matches + + )} )}