From 555d79b6dbda208a10d03c9aac222d54a5e033ad Mon Sep 17 00:00:00 2001 From: yohlo Date: Mon, 25 Aug 2025 22:38:08 -0500 Subject: [PATCH] update nav links --- src/features/core/hooks/use-links.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/features/core/hooks/use-links.ts b/src/features/core/hooks/use-links.ts index 0939be5..3b160d8 100644 --- a/src/features/core/hooks/use-links.ts +++ b/src/features/core/hooks/use-links.ts @@ -1,4 +1,4 @@ -import { GearIcon, HouseIcon, QuestionIcon, ShieldIcon, TrophyIcon, UserCircleIcon } from "@phosphor-icons/react"; +import { HouseIcon, RankingIcon, ShieldIcon, TrophyIcon, UserCircleIcon } from "@phosphor-icons/react"; import { useMemo } from "react"; export const useLinks = (userId: number, roles: string[]) => @@ -9,6 +9,11 @@ export const useLinks = (userId: number, roles: string[]) => href: '/', Icon: HouseIcon }, + { + label: 'Leaderboard', + href: '/leaderboard', + Icon: RankingIcon + }, { label: 'Tournaments', href: '/tournaments', @@ -18,11 +23,6 @@ export const useLinks = (userId: number, roles: string[]) => label: 'Profile', href: `/profile/${userId}`, Icon: UserCircleIcon - }, - { - label: 'Settings', - href: '/settings', - Icon: GearIcon } ]