big update
This commit is contained in:
42
ditch-the-agent/src/data/attorney-nav-items.ts
Normal file
42
ditch-the-agent/src/data/attorney-nav-items.ts
Normal file
@@ -0,0 +1,42 @@
|
||||
import { NavItem } from 'types';
|
||||
|
||||
const attorneyNavItems: NavItem[] = [
|
||||
{
|
||||
title: 'Home',
|
||||
path: '/',
|
||||
icon: 'ion:home-sharp',
|
||||
active: true,
|
||||
collapsible: false,
|
||||
sublist: [
|
||||
{
|
||||
title: 'Dashboard',
|
||||
path: '/',
|
||||
active: false,
|
||||
collapsible: false,
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: 'Profile',
|
||||
path: '/profile',
|
||||
icon: 'ph:user-circle',
|
||||
active: true,
|
||||
collapsible: false,
|
||||
},
|
||||
{
|
||||
title: 'Conversations',
|
||||
path: '/conversations',
|
||||
icon: 'ph:chat-circle-dots',
|
||||
active: true,
|
||||
collapsible: false,
|
||||
},
|
||||
{
|
||||
title: 'Documents',
|
||||
path: '/documents',
|
||||
icon: 'ph:file',
|
||||
active: true,
|
||||
collapsible: false,
|
||||
},
|
||||
];
|
||||
|
||||
export default attorneyNavItems;
|
||||
Reference in New Issue
Block a user