feat: frontend fase 2 sessies 1-3

- Member management pagina + invite flow
- Persons module met filters, KPI tiles, detail panel
- Event horizontale tabs navigatie (EventTabsNav component)
- Route conflict opgelost
- OrganisationSwitcher verbeterd (collapsed staat WIP)
This commit is contained in:
2026-04-08 03:15:45 +02:00
parent 230e11cc8d
commit 6f69b30fb6
19 changed files with 1722 additions and 311 deletions

View File

@@ -1,27 +1,27 @@
export default [
{
title: "Dashboard",
to: { name: "dashboard" },
icon: { icon: "tabler-smart-home" },
title: 'Dashboard',
to: { name: 'dashboard' },
icon: { icon: 'tabler-smart-home' },
},
{
title: "Events",
to: { name: "events" },
icon: { icon: "tabler-calendar-event" },
title: 'Events',
to: { name: 'events' },
icon: { icon: 'tabler-calendar-event' },
},
{
heading: "Beheer",
heading: 'Beheer',
},
{
title: "Mijn Organisatie",
to: { name: "organisation" },
icon: { icon: "tabler-building" },
title: 'Mijn Organisatie',
to: { name: 'organisation' },
icon: { icon: 'tabler-building' },
},
{
title: "Leden",
to: { name: "organisation-members" },
icon: { icon: "tabler-users-group" },
action: "read",
subject: "members",
title: 'Leden',
to: { name: 'organisation-members' },
icon: { icon: 'tabler-users-group' },
action: 'read',
subject: 'members',
},
];
]