From cec6f0f412a9370db47a6762f1896bccf8e2a054 Mon Sep 17 00:00:00 2001 From: Aravind Date: Thu, 6 Aug 2026 16:37:31 +0530 Subject: [PATCH] change names for dashboard --- src/app/(workspace)/lyts/page.tsx | 2 +- src/app/(workspace)/staff/page.tsx | 2 +- src/shared/layouts/workspace/nav-config.ts | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/(workspace)/lyts/page.tsx b/src/app/(workspace)/lyts/page.tsx index 49b33c9..71949a6 100644 --- a/src/app/(workspace)/lyts/page.tsx +++ b/src/app/(workspace)/lyts/page.tsx @@ -62,7 +62,7 @@ export default function LytsPage() { return ( } /> diff --git a/src/app/(workspace)/staff/page.tsx b/src/app/(workspace)/staff/page.tsx index 8d0b328..cd6025a 100644 --- a/src/app/(workspace)/staff/page.tsx +++ b/src/app/(workspace)/staff/page.tsx @@ -33,7 +33,7 @@ export default function StaffPage() { return ( } /> diff --git a/src/shared/layouts/workspace/nav-config.ts b/src/shared/layouts/workspace/nav-config.ts index aefe70c..de9c3ee 100644 --- a/src/shared/layouts/workspace/nav-config.ts +++ b/src/shared/layouts/workspace/nav-config.ts @@ -15,8 +15,8 @@ export interface NavEntry { export const PRIMARY_NAV: NavEntry[] = [ {label: 'Dashboard', href: '/dashboard', icon: ICONS.dashboard}, {label: 'Store', href: '/stores', icon: ICONS.stores}, - {label: 'Lytsup', href: '/lyts', icon: ICONS.lyts}, - {label: 'Staff', href: '/staff', icon: ICONS.staff}, + {label: 'Lyts', href: '/lyts', icon: ICONS.lyts}, + {label: 'Leaderboard', href: '/staff', icon: ICONS.staff}, ]; /** Pinned to the bottom of the sidebar via SideNav's `footer` slot. */