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 } ]