diff --git a/frontend/src/components/MenuBar.vue b/frontend/src/components/MenuBar.vue
index 87224dcb..a58be2f8 100644
--- a/frontend/src/components/MenuBar.vue
+++ b/frontend/src/components/MenuBar.vue
@@ -14,6 +14,7 @@
const _router = useRouter(); // Zonder '_' gaf dit een linter error voor unused variable
const name: string = auth.authState.user!.profile.name!;
+ const email = auth.authState.user!.profile.email;
const initials: string = name
.split(" ")
.map((n) => n[0])
@@ -161,12 +162,43 @@
- {{ initials }}
+
+
+
+
+ {{ initials }}
+
+
+
+
+
+
+
+ {{ initials }}
+
+
{{ name }}
+
{{ email }}
+
+
{{ t("logout") }}
+
+
+
+
+