64 lines
1.3 KiB
TypeScript
64 lines
1.3 KiB
TypeScript
export const orgNavItems = [
|
|
{
|
|
title: 'Dashboard',
|
|
to: { name: 'dashboard' },
|
|
icon: { icon: 'tabler-smart-home' },
|
|
},
|
|
{
|
|
title: 'Evenementen',
|
|
to: { name: 'events' },
|
|
icon: { icon: 'tabler-calendar-event' },
|
|
},
|
|
{
|
|
heading: 'Beheer',
|
|
},
|
|
{
|
|
title: 'Mijn Organisatie',
|
|
to: { name: 'organisation' },
|
|
icon: { icon: 'tabler-building' },
|
|
},
|
|
{
|
|
title: 'Leden',
|
|
to: { name: 'members' },
|
|
icon: { icon: 'tabler-users' },
|
|
},
|
|
{
|
|
title: 'Bedrijven',
|
|
to: { name: 'organisation-companies' },
|
|
icon: { icon: 'tabler-building' },
|
|
},
|
|
{
|
|
title: 'Instellingen',
|
|
to: { name: 'organisation-settings' },
|
|
icon: { icon: 'tabler-settings' },
|
|
},
|
|
]
|
|
|
|
export const platformNavItems = [
|
|
{
|
|
heading: 'Platform',
|
|
},
|
|
{
|
|
title: 'Platform Dashboard',
|
|
to: { name: 'platform' },
|
|
icon: { icon: 'tabler-chart-dots-3' },
|
|
},
|
|
{
|
|
title: 'Organisaties',
|
|
to: { name: 'platform-organisations' },
|
|
icon: { icon: 'tabler-buildings' },
|
|
},
|
|
{
|
|
title: 'Gebruikers',
|
|
to: { name: 'platform-users' },
|
|
icon: { icon: 'tabler-users-group' },
|
|
},
|
|
{
|
|
title: 'Activity Log',
|
|
to: { name: 'platform-activity-log' },
|
|
icon: { icon: 'tabler-list-details' },
|
|
},
|
|
]
|
|
|
|
export default orgNavItems
|