change names for dashboard

This commit is contained in:
2026-08-06 16:37:31 +05:30
parent 11daadc0a3
commit cec6f0f412
3 changed files with 4 additions and 4 deletions

View File

@@ -62,7 +62,7 @@ export default function LytsPage() {
return ( return (
<VStack gap={5}> <VStack gap={5}>
<PageHeader <PageHeader
title="Lytsup" title="Lyts"
description="Reward performance, redemption and outstanding LYT liability. 1 LYT = ₹1." description="Reward performance, redemption and outstanding LYT liability. 1 LYT = ₹1."
controls={<ScopeControls />} controls={<ScopeControls />}
/> />

View File

@@ -33,7 +33,7 @@ export default function StaffPage() {
return ( return (
<VStack gap={5}> <VStack gap={5}>
<PageHeader <PageHeader
title="Staff" title="Leaderboard"
description={`Attendance, sales contribution and performance across ${scopeLabel}.`} description={`Attendance, sales contribution and performance across ${scopeLabel}.`}
controls={<ScopeControls />} controls={<ScopeControls />}
/> />

View File

@@ -15,8 +15,8 @@ export interface NavEntry {
export const PRIMARY_NAV: NavEntry[] = [ export const PRIMARY_NAV: NavEntry[] = [
{label: 'Dashboard', href: '/dashboard', icon: ICONS.dashboard}, {label: 'Dashboard', href: '/dashboard', icon: ICONS.dashboard},
{label: 'Store', href: '/stores', icon: ICONS.stores}, {label: 'Store', href: '/stores', icon: ICONS.stores},
{label: 'Lytsup', href: '/lyts', icon: ICONS.lyts}, {label: 'Lyts', href: '/lyts', icon: ICONS.lyts},
{label: 'Staff', href: '/staff', icon: ICONS.staff}, {label: 'Leaderboard', href: '/staff', icon: ICONS.staff},
]; ];
/** Pinned to the bottom of the sidebar via SideNav's `footer` slot. */ /** Pinned to the bottom of the sidebar via SideNav's `footer` slot. */