diff --git a/components/MainNav.vue b/components/MainNav.vue
index f3b5acb..0773306 100644
--- a/components/MainNav.vue
+++ b/components/MainNav.vue
@@ -220,6 +220,10 @@ const links = computed(() => {
label: "Mitarbeiter",
to: "/profiles",
icon: "i-heroicons-clipboard-document-list"
+ },{
+ label: "E-Mail Accounts",
+ to: "/settings/emailAccounts",
+ icon: "i-heroicons-clipboard-document-list"
},{
label: "Bankkonten",
to: "/settings/banking",
diff --git a/pages/settings/emailAccounts.vue b/pages/settings/emailAccounts.vue
new file mode 100644
index 0000000..4891f33
--- /dev/null
+++ b/pages/settings/emailAccounts.vue
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+ E-Mail Adresse
+
+
+
+
+
+
+
+ Erstellen
+
+
+
+
+
+
+
+
+ + Account
+
+
+
+
+
+ {{row.profiles.map(i => profiles.find(x => x.id === i).fullName).join(", ")}}
+
+
+ {{row.mailboxes.map(i => i.name).join(", ")}}
+
+
+
+
+
\ No newline at end of file