diff --git a/spaces/app.vue b/spaces/app.vue index d9df38b..5834733 100644 --- a/spaces/app.vue +++ b/spaces/app.vue @@ -42,11 +42,6 @@ const userMenuItems = ref([ label: 'Benutzer', icon: 'i-heroicons-user-group', to: "/users" - }, - { - label: 'Chat', - icon: 'i-heroicons-user-group', - to: "/chat" } ]) @@ -133,7 +128,7 @@ const navLinks = [ ] }, { - label: "Planung", + label: "Verwaltung", icon: "i-heroicons-square-3-stack-3d", children: [ { @@ -151,12 +146,17 @@ const navLinks = [ to: "/calendar/grid", icon: "i-heroicons-calendar-days" }, + { + label: "Dokumente", + to: "/documents", + icon: "i-heroicons-document" + }, ] }, { - label: "Dokumente", - to: "/documents", - icon: "i-heroicons-document" + label: "Chat", + to: "/chat", + icon:'i-heroicons-chat-bubble-left-right' }, { label: "Mitarbeiter", @@ -169,7 +169,7 @@ const navLinks = [ }, { label: "Abwesenheiten", - to: "/employees/absenceRequests", + to: "/absenceRequests", icon: "i-heroicons-document-text" } ] @@ -190,7 +190,7 @@ const navLinks = [ }, { label: "Lagerplätze", - to: "/inventory/spaces", + to: "/spaces", icon: "i-heroicons-square-3-stack-3d" }, { diff --git a/spaces/pages/employees/absenceRequests/[mode]/[[id]].vue b/spaces/pages/absenceRequests/[mode]/[[id]].vue similarity index 100% rename from spaces/pages/employees/absenceRequests/[mode]/[[id]].vue rename to spaces/pages/absenceRequests/[mode]/[[id]].vue diff --git a/spaces/pages/employees/absenceRequests/index.vue b/spaces/pages/absenceRequests/index.vue similarity index 100% rename from spaces/pages/employees/absenceRequests/index.vue rename to spaces/pages/absenceRequests/index.vue diff --git a/spaces/pages/calendar/[mode].vue b/spaces/pages/calendar/[mode].vue index 8ccb575..8258df4 100644 --- a/spaces/pages/calendar/[mode].vue +++ b/spaces/pages/calendar/[mode].vue @@ -1,6 +1,5 @@