diff --git a/cypress/e2e/layout/footer.spec.ts b/cypress/e2e/layout/footer.spec.ts
index ced63dca3..5f6118183 100644
--- a/cypress/e2e/layout/footer.spec.ts
+++ b/cypress/e2e/layout/footer.spec.ts
@@ -54,6 +54,9 @@ context(" on desktop", () => {
cy.findByTestId("FooterSectionSitemap.Newsletter")
.should("be.visible")
.should("have.attr", "href", "https://bit.ly/3yQxtmW");
+ cy.findByTestId("FooterSectionSitemap.Wiki")
+ .should("be.visible")
+ .should("have.attr", "href", "https://defichainwiki.com");
});
it("should have Footer Social links", () => {
@@ -194,6 +197,9 @@ context(" on mobile", () => {
cy.findByTestId("FooterSectionSitemap.Newsletter")
.should("be.visible")
.should("have.attr", "href", "https://bit.ly/3yQxtmW");
+ cy.findByTestId("FooterSectionSitemap.Wiki")
+ .should("be.visible")
+ .should("have.attr", "href", "https://defichainwiki.com");
});
it("should have Footer Social links", () => {
diff --git a/public/locales/de/layout.json b/public/locales/de/layout.json
index 3b9cdca3a..a3d8d4b0c 100644
--- a/public/locales/de/layout.json
+++ b/public/locales/de/layout.json
@@ -29,7 +29,8 @@
"whitepaper": "White Paper",
"dfcblog": "Blog",
"language": "de",
- "newsletter": "Newsletter"
+ "newsletter": "Newsletter",
+ "wiki": "Wiki"
},
"social": {
"title": "Soziale Netze",
diff --git a/public/locales/en-US/layout.json b/public/locales/en-US/layout.json
index bac54c39b..41507ec9d 100644
--- a/public/locales/en-US/layout.json
+++ b/public/locales/en-US/layout.json
@@ -29,7 +29,8 @@
"whitepaper": "White Paper",
"dfcblog": "Blog",
"language": "en",
- "newsletter": "Newsletter"
+ "newsletter": "Newsletter",
+ "wiki": "Wiki"
},
"social": {
"title": "Social",
diff --git a/public/locales/fr/layout.json b/public/locales/fr/layout.json
index 0d67b0e0c..b125e1ed2 100644
--- a/public/locales/fr/layout.json
+++ b/public/locales/fr/layout.json
@@ -28,7 +28,8 @@
"whitepaper": "Livre blanc",
"dfcblog": "Blog",
"language": "fr",
- "newsletter": "Newsletter"
+ "newsletter": "Newsletter",
+ "wiki": "Wiki"
},
"social": {
"title": "Réseaux sociaux",
diff --git a/public/locales/zh-Hans/layout.json b/public/locales/zh-Hans/layout.json
index 9de574d20..57c7e7b76 100644
--- a/public/locales/zh-Hans/layout.json
+++ b/public/locales/zh-Hans/layout.json
@@ -28,7 +28,8 @@
"whitepaper": "白皮书",
"dfcblog": "博客",
"language": "zh",
- "newsletter": "Newsletter"
+ "newsletter": "Newsletter",
+ "wiki": "Wiki"
},
"social": {
"title": "社区",
diff --git a/public/locales/zh-Hant/layout.json b/public/locales/zh-Hant/layout.json
index 52c146d3c..d9688658e 100644
--- a/public/locales/zh-Hant/layout.json
+++ b/public/locales/zh-Hant/layout.json
@@ -28,7 +28,8 @@
"whitepaper": "白皮書",
"dfcblog": "博客",
"language": "zh-tw",
- "newsletter": "Newsletter"
+ "newsletter": "Newsletter",
+ "wiki": "Wiki"
},
"social": {
"title": "社區",
diff --git a/src/layouts/components/Footer.tsx b/src/layouts/components/Footer.tsx
index d0d188783..0a887efc4 100644
--- a/src/layouts/components/Footer.tsx
+++ b/src/layouts/components/Footer.tsx
@@ -141,6 +141,11 @@ function FooterSectionSitemap(): JSX.Element {
url="https://bit.ly/3yQxtmW"
testId="FooterSectionSitemap.Newsletter"
/>
+
);
}