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