113 lines
2.1 KiB
TypeScript
113 lines
2.1 KiB
TypeScript
import { NavItem } from 'types';
|
|
|
|
const basicNavItems: 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: 'Education',
|
|
path: '/upgrade',
|
|
icon: 'ph:student',
|
|
active: false,
|
|
collapsible: false,
|
|
},
|
|
{
|
|
title: 'Vendors',
|
|
path: '/upgrade',
|
|
icon: 'ph:storefront',
|
|
active: false,
|
|
collapsible: false,
|
|
},
|
|
{
|
|
title: 'Messages',
|
|
path: '',
|
|
icon: 'ph:chat-circle-dots',
|
|
active: false,
|
|
collapsible: true,
|
|
sublist: [
|
|
{
|
|
title: 'Documents',
|
|
path: 'documents',
|
|
icon: 'ph:folder',
|
|
active: false,
|
|
collapsible: false,
|
|
},
|
|
{
|
|
title: 'Conversations',
|
|
path: 'upgrade',
|
|
icon: 'ph:chat-circle-dots',
|
|
active: true,
|
|
collapsible: false,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: 'Tools',
|
|
path: '/tools',
|
|
icon: 'ph:toolbox',
|
|
active: true,
|
|
collapsible: true,
|
|
sublist: [
|
|
{
|
|
title: 'Mortgage Calculator',
|
|
path: 'mortgage-calculator',
|
|
active: true,
|
|
collapsible: false,
|
|
},
|
|
{
|
|
title: 'Amortization Table',
|
|
path: 'amoritization-table',
|
|
active: true,
|
|
collapsible: false,
|
|
},
|
|
{
|
|
title: 'Home Affordability',
|
|
path: 'home-affordability',
|
|
active: true,
|
|
collapsible: false,
|
|
},
|
|
{
|
|
title: 'Net Terms Sheet',
|
|
path: 'net-terms-sheet',
|
|
active: true,
|
|
collapsible: false,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: 'Support',
|
|
path: '/support',
|
|
icon: 'ph:question',
|
|
active: true,
|
|
collapsible: false,
|
|
},
|
|
];
|
|
|
|
export default basicNavItems;
|