diff --git a/frontend/public/locales/en/footer.json b/frontend/public/locales/en/footer.json
index dd049bd87433ccf8a3e8a714dba19bc8bab738e6..a33b020dfe69c722c49ded68158fedd55cc0ad6b 100644
--- a/frontend/public/locales/en/footer.json
+++ b/frontend/public/locales/en/footer.json
@@ -2,6 +2,7 @@
   "applicationTitle": "Guest Service",
   "link": {
     "terms": {
+      "accessibilityStatement": "Accessibility statement (in Norwegian only)",
       "header": "TERMS",
       "ITRules": "IT Rules",
       "privacy": "Privacy Policy"
diff --git a/frontend/public/locales/nb/footer.json b/frontend/public/locales/nb/footer.json
index 7befbe59cbe9c1ef2db5149c88707d757c605b94..33ef69e64476911c274fc9f344636bde2b84792d 100644
--- a/frontend/public/locales/nb/footer.json
+++ b/frontend/public/locales/nb/footer.json
@@ -4,7 +4,8 @@
     "terms": {
       "header": "VILKÃ…R",
       "ITRules": "IT-reglement",
-      "privacy": "Personvern"
+      "privacy": "Personvern",
+      "accessibilityStatement": "Tilgjengelighetserklæring"
     },
     "help": {
       "header": "HJELP OG KONTAKT",
diff --git a/frontend/public/locales/nn/footer.json b/frontend/public/locales/nn/footer.json
index c377dfd696608eaaa7dd9e7a5901d832f9d5722f..93314803dddc2c839c91b4d59fe3a40570a008df 100644
--- a/frontend/public/locales/nn/footer.json
+++ b/frontend/public/locales/nn/footer.json
@@ -4,7 +4,8 @@
     "terms": {
       "header": "VILKÃ…R",
       "ITRules": "IT-reglement",
-      "privacy": "Personvern"
+      "privacy": "Personvern",
+      "accessibilityStatement": "Tilgjengelegheitserklæring"
     },
     "help": {
       "header": "HJELP OG KONTAKT",
diff --git a/frontend/src/appConfig.ts b/frontend/src/appConfig.ts
index a91bab70b45c735ad592af73b62601f8d3d36707..4d10c689fe64115a2de046e874a2218177ffd55f 100644
--- a/frontend/src/appConfig.ts
+++ b/frontend/src/appConfig.ts
@@ -29,6 +29,8 @@ export const responsibleOrganizationEn: string =
   env.REACT_APP_RESPONSIBLE_ORGANIZATION_EN as string
 
 /* no links */
+export const accessibilityStatementLink: string = 
+  env.REACT_APP_ACCESSIBILITY_STATEMENT_LINK as string
 export const itRulesLink: string = env.REACT_APP_IT_RULES_LINK as string
 export const privacyPolicyLink: string =
   env.REACT_APP_PRIVACY_POLICY_LINK as string
diff --git a/frontend/src/routes/components/footer.tsx b/frontend/src/routes/components/footer.tsx
index 3b04be499636cea67819bf64fc30a2a9b1207ddc..ddba88e1167d6d88cf1e8107f5104100a5c0d6e6 100644
--- a/frontend/src/routes/components/footer.tsx
+++ b/frontend/src/routes/components/footer.tsx
@@ -3,6 +3,7 @@ import { styled } from '@mui/material/styles'
 import { Link } from '@mui/material'
 
 import {
+  accessibilityStatementLink,
   appInst,
   responsibleOrganization,
   responsibleOrganizationEn,
@@ -113,6 +114,9 @@ function Footer() {
             <StyledLink href={getPrivacyPolicyLink()}>
               {t('footer:link.terms.privacy')}
             </StyledLink>
+            {accessibilityStatementLink && <StyledLink href={accessibilityStatementLink}>
+              {t('footer:link.terms.accessibilityStatement')}
+            </StyledLink>}
           </LinkSection>
 
           <LinkSection>