Skip to content
This repository has been archived by the owner on Sep 29, 2024. It is now read-only.

Commit

Permalink
🥷 disable menu links
Browse files Browse the repository at this point in the history
  • Loading branch information
XenoPOMP committed Apr 18, 2024
1 parent 7c22058 commit 150dc7b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/layout/DashboardMenu/dashboard.menu.data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,30 +10,30 @@ export const dashboardMenuData: Array<
icon: LayoutDashboard,
href: '/dashboard',
children: 'Личный кабинет',
'aria-disabled': false,
'aria-disabled': true,
},
{
icon: LayoutDashboard,
href: '/tasks',
children: 'Задачи',
'aria-disabled': false,
'aria-disabled': true,
},
{
icon: Timer,
href: '/pomodoro',
children: 'Pomodoro',
'aria-disabled': false,
'aria-disabled': true,
},
{
icon: CalendarRange,
href: '/time-blocking',
children: 'Распорядок дня',
'aria-disabled': false,
'aria-disabled': true,
},
{
icon: Settings,
href: '/settings',
children: 'Настройки',
'aria-disabled': false,
'aria-disabled': true,
},
];

0 comments on commit 150dc7b

Please sign in to comment.