diff --git a/frontend/src/components/MenuBar.vue b/frontend/src/components/MenuBar.vue
index 73336fa3..fe2b3563 100644
--- a/frontend/src/components/MenuBar.vue
+++ b/frontend/src/components/MenuBar.vue
@@ -1,11 +1,186 @@
-
+
+
+
diff --git a/frontend/src/main.ts b/frontend/src/main.ts
index bc0c3d42..7f6db814 100644
--- a/frontend/src/main.ts
+++ b/frontend/src/main.ts
@@ -14,6 +14,11 @@ const app = createApp(App);
app.use(router);
+const link = document.createElement("link");
+link.rel = "stylesheet";
+link.href = "https://cdn.jsdelivr.net/npm/@mdi/font@5.x/css/materialdesignicons.min.css";
+document.head.appendChild(link);
+
const vuetify = createVuetify({
components,
directives,