33 lines
505 B
TypeScript
33 lines
505 B
TypeScript
import { type TMenuConfig } from '@/components/menu';
|
|
|
|
export const MENU_SIDEBAR: TMenuConfig = [
|
|
{
|
|
title: '',
|
|
children: [
|
|
{
|
|
title: 'Dashboard',
|
|
path: '/'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
title: 'Account',
|
|
children: [
|
|
{
|
|
title: 'User Profile',
|
|
path: '/account/home/user-profile'
|
|
}
|
|
]
|
|
}
|
|
];
|
|
|
|
export const MENU_ROOT: TMenuConfig = [
|
|
{
|
|
title: 'Dashboard',
|
|
icon: 'setting-2',
|
|
rootPath: '/',
|
|
path: '/',
|
|
childrenIndex: 0
|
|
}
|
|
];
|