diff --git a/web/public/locales/en/translation.json b/web/public/locales/en/translation.json
index 8a0700a..d8b5ee1 100644
--- a/web/public/locales/en/translation.json
+++ b/web/public/locales/en/translation.json
@@ -117,14 +117,14 @@
"title": "Identity wallet setup"
},
"government": {
- "title": "National Id Agency",
+ "title": "National ID Agency",
"processes": {
"signIn": "Log In",
"issueCredential": "Claim national ID"
}
},
"company": {
- "title": "Company registration agency",
+ "title": "Company Registration Agency",
"processes": {
"signIn": "Log In",
"presentCredential": "Present National ID",
@@ -194,7 +194,7 @@
"thankYou": {
"thanksForTryingSelv": "Thanks for Trying Selv!",
"improvedExperience": "Improved Experience",
- "savedTime": "With Selv, powered by IOTA, you managed to set up an entire company, corporate bank account and insurance with just a few clicks. Your credentials are reusable, making them a real time-saver.",
+ "savedTime": "With Selv, powered by IOTA, you managed to set up an entire company with just a few clicks. Your credentials are reusable, making them a real time-saver.",
"selfSovereignty": "Self-Sovereignty",
"sovereigntyText": "You have taken full control of your data. You decided who you shared your credentials with and when. You can even share them with others manually via QR-Code.",
"moreTrust": "More Trust",
@@ -217,7 +217,7 @@
"signInSuccess": "You have successfully logged in to the National ID agency portal without ever creating an account, and using only the identity on your wallet. No more need for endless account and password creation."
},
"receiveCredentials": {
- "title": "Claim your government emitted National Id",
+ "title": "Claim your government emitted National ID",
"subTitle": "Scan the QR code with your wallet app to receive the credential that represents your National ID"
},
"confirmation": {
diff --git a/web/src/assets/companyHouse.svg b/web/src/assets/companyHouse.svg
deleted file mode 100644
index dbcf05c..0000000
--- a/web/src/assets/companyHouse.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
diff --git a/web/src/assets/companyHouseCrone.svg b/web/src/assets/companyHouseCrone.svg
deleted file mode 100644
index ea60c22..0000000
--- a/web/src/assets/companyHouseCrone.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-
diff --git a/web/src/assets/snsBank.svg b/web/src/assets/snsBank.svg
deleted file mode 100644
index 10e401c..0000000
--- a/web/src/assets/snsBank.svg
+++ /dev/null
@@ -1,169 +0,0 @@
-
diff --git a/web/src/components/Footer.tsx b/web/src/components/Footer.tsx
index d164f94..37a59f2 100644
--- a/web/src/components/Footer.tsx
+++ b/web/src/components/Footer.tsx
@@ -1,6 +1,5 @@
+import { IdcardOutlined, SolutionOutlined } from '@ant-design/icons';
import React from 'react';
-import companyHouse from '../assets/companyHouseCrone.svg'
-import snsBank from '../assets/snsBank.svg'
const Footer = ({ children, theme }: {
children?: JSX.Element | null | undefined;
@@ -10,9 +9,12 @@ const Footer = ({ children, theme }: {
);
diff --git a/web/src/components/Header.tsx b/web/src/components/Header.tsx
index 4db0d41..4a5540f 100644
--- a/web/src/components/Header.tsx
+++ b/web/src/components/Header.tsx
@@ -1,17 +1,30 @@
import React from 'react';
-import companyHouse from '../assets/companyHouse.svg'
-import snsBank from '../assets/snsBank.svg'
+import { IdcardOutlined, SolutionOutlined } from '@ant-design/icons';
+import { Flex } from 'antd';
+import { useTranslation } from 'react-i18next';
const Header = ({ children, theme }: {
children?: JSX.Element | null | undefined;
theme: string | undefined;
}) => {
+
+ const { t } = useTranslation();
+
return (