diff --git a/frontend/src/components/MenuBar.vue b/frontend/src/components/MenuBar.vue
index e3734976..93671b13 100644
--- a/frontend/src/components/MenuBar.vue
+++ b/frontend/src/components/MenuBar.vue
@@ -82,14 +82,13 @@
>
{{ t("classes") }}
-
-
-
-
-
-
-
-
+
+ import { Language } from "@/data-objects/language.ts";
+ import type { LearningPath } from "@/data-objects/learning-paths/learning-path.ts";
+ import { computed, type ComputedRef, provide, ref, watch } from "vue";
+ import type { LearningObject } from "@/data-objects/learning-objects/learning-object.ts";
+ import { useRoute, useRouter } from "vue-router";
+ import LearningObjectView from "@/views/learning-paths/learning-object/LearningObjectView.vue";
+ import { useI18n } from "vue-i18n";
+ import LearningPathSearchField from "@/components/LearningPathSearchField.vue";
+ import { useGetAllLearningPaths, useGetLearningPathQuery } from "@/queries/learning-paths.ts";
+ import { useLearningObjectListForPathQuery } from "@/queries/learning-objects.ts";
+ import UsingQueryResult from "@/components/UsingQueryResult.vue";
+ import authService from "@/services/auth/auth-service.ts";
+ import { LearningPathNode } from "@/data-objects/learning-paths/learning-path-node.ts";
+ import LearningPathGroupSelector from "@/views/learning-paths/LearningPathGroupSelector.vue";
+ import { useCreateQuestionMutation, useQuestionsQuery } from "@/queries/questions";
+ import type { QuestionsResponse } from "@/controllers/questions";
+ import type { LearningObjectIdentifierDTO } from "@dwengo-1/common/interfaces/learning-content";
+ import QandA from "@/components/QandA.vue";
+ import type { QuestionData, QuestionDTO } from "@dwengo-1/common/interfaces/question";
+ import { useStudentAssignmentsQuery, useStudentGroupsQuery } from "@/queries/students";
+ import type { AssignmentDTO } from "@dwengo-1/common/interfaces/assignment";
+ import type { GroupDTO } from "@dwengo-1/common/interfaces/group";
+ import DiscussionSideBarElement from "@/components/DiscussionSideBarElement.vue";
+
+ const route = useRoute();
+ const { t, locale } = useI18n();
+
+ const allLearningPathsResult = useGetAllLearningPaths(locale.value)
+
+
+
+
+
+
+
+ Discussions
+
+
+
+
+
+
+
+
+
+
+
+
+