57 lines
997 B
TypeScript
57 lines
997 B
TypeScript
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: 'Search',
|
|
path: '/property-search',
|
|
icon: 'ph:magnifying-glass',
|
|
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,
|
|
},
|
|
{
|
|
title: 'Support',
|
|
path: '/support',
|
|
icon: 'ph:question',
|
|
active: true,
|
|
collapsible: false,
|
|
},
|
|
];
|
|
|
|
export default attorneyNavItems;
|