big update

This commit is contained in:
2025-08-16 12:57:07 -05:00
parent 508d1179dc
commit 86b1eaf6f7
100 changed files with 14935 additions and 1871 deletions

View 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;