diff --git a/public/locales/de/translations.json b/public/locales/de/translations.json
index 895134b7b..beedc0f6f 100644
--- a/public/locales/de/translations.json
+++ b/public/locales/de/translations.json
@@ -27,7 +27,8 @@
"en": "Englisch",
"de": "Deutsch",
"ru": "Russisch",
- "listcoin": "Bezahlte Kryptowährungsliste"
+ "listcoin": "Bezahlte Kryptowährungsliste",
+ "blog": "Blog"
},
"hero": {
"1": "Umtausch von Kryptowährungen",
diff --git a/public/locales/en/translations.json b/public/locales/en/translations.json
index 71b0fadf3..18027405c 100644
--- a/public/locales/en/translations.json
+++ b/public/locales/en/translations.json
@@ -83,7 +83,8 @@
"terms-and-conditions": "Terms and Conditions",
"privacy-policy": "Privacy Policy",
"pricecomparsion": "pricecomparsion",
- "team": "Team"
+ "team": "Team",
+ "blog": "Blog"
},
"account": {
"account": "Account",
diff --git a/public/locales/ru/translations.json b/public/locales/ru/translations.json
index ad1248746..0c612ddba 100644
--- a/public/locales/ru/translations.json
+++ b/public/locales/ru/translations.json
@@ -24,7 +24,8 @@
"en": "Английский",
"de": "Немецкий",
"ru": "Русский",
- "listcoin": "Размещение криптовалюты"
+ "listcoin": "Размещение криптовалюты",
+ "blog": "Блог"
},
"hero": {
"1": "Обмен Криптовалют",
diff --git a/src/App.js b/src/App.js
index 3d45a3852..ab8e4272e 100644
--- a/src/App.js
+++ b/src/App.js
@@ -81,6 +81,11 @@ const App = () => {
return ;
};
+
+ const redirectToBlog = () => {
+ window.location.replace(`${window.location.host}/blog`);
+ window.location.reload();
+ }
return (
@@ -95,6 +100,7 @@ const App = () => {
+
} />
diff --git a/src/components/Footer/index.js b/src/components/Footer/index.js
index deb2c2aaf..9b8de0cf7 100644
--- a/src/components/Footer/index.js
+++ b/src/components/Footer/index.js
@@ -61,6 +61,13 @@ const Footer = props => {
{t('header.apidocumentation')}
+
+
+ {t('header.blog')}
+
+
{