diff --git a/src/components/elements/Footer.vue b/src/components/elements/Footer.vue
index 8ee8c0c9f3813e602b3c99ef8232f48999bc4579..e48e92b3e19b0ff3c16f34f57ddc3a074f11ca20 100644
--- a/src/components/elements/Footer.vue
+++ b/src/components/elements/Footer.vue
@@ -27,6 +27,11 @@
           <u>{{ $t("nav.extrasImprint") }}</u>
         </b-nav-item>
         <div class="vl" />
+        <!-- Mission Statement -->
+        <b-nav-item :href="$t('nav.url.mission').toString()" target="_blank">
+          <u>{{ $t("nav.mission") }}</u>
+        </b-nav-item>
+        <div class="vl" />
         <!-- Accessibility -->
         <b-nav-item
           :href="$t('nav.url.extrasAccessibility').toString()"
diff --git a/src/i18n/de.ts b/src/i18n/de.ts
index ea32a06500f999453cfdb5b65db15a57e13e22cd..33708e4b1081966ea1185efe1ed3dc5a084f609b 100644
--- a/src/i18n/de.ts
+++ b/src/i18n/de.ts
@@ -19,6 +19,7 @@ export default {
     userLogOut: "Ausloggen",
     coscine: "Coscine",
     privacyPolicy: "Datenschutzerklärung",
+    mission: "Mission Statement",
 
     theme: {
       toggle: "Farbschema wählen",
@@ -33,6 +34,7 @@ export default {
       extrasImprint: "https://www.coscine.de/imprint/",
       extrasAccessibility: "https://about.coscine.de/accessibility/",
       coscine: "https://www.coscine.de/",
+      mission: "https://about.coscine.de/about/mission-statement/",
     },
   },
 
diff --git a/src/i18n/en.ts b/src/i18n/en.ts
index 7afb3514e5b78ac7cc8cfbc3fa1a8bba201e0a42..947219e85785382e85e0a225e2b171e9d9fb9b31 100644
--- a/src/i18n/en.ts
+++ b/src/i18n/en.ts
@@ -19,6 +19,7 @@ export default {
     userLogOut: "Log out",
     coscine: "Coscine",
     privacyPolicy: "Privacy Policy",
+    mission: "Mission Statement",
 
     theme: {
       toggle: "Toggle theme",
@@ -33,6 +34,7 @@ export default {
       extrasImprint: "https://www.coscine.de/en/imprint/",
       extrasAccessibility: "https://about.coscine.de/en/accessibility/",
       coscine: "https://www.coscine.de/en/",
+      mission: "https://about.coscine.de/en/about/mission-statement/",
     },
   },