diff --git a/public/locales/de/translation.json b/public/locales/de/translation.json
index 0780ca9..a227ce7 100644
--- a/public/locales/de/translation.json
+++ b/public/locales/de/translation.json
@@ -29,6 +29,7 @@
},
"system": {
"notfound": "Seite nicht gefunden",
- "language": "Sprache"
+ "language": "Sprache",
+ "imprint": "Impressum"
}
}
\ No newline at end of file
diff --git a/public/locales/en/translation.json b/public/locales/en/translation.json
index 1a8e50d..8e7a138 100644
--- a/public/locales/en/translation.json
+++ b/public/locales/en/translation.json
@@ -29,6 +29,7 @@
},
"system": {
"notfound": "Page Not Found",
- "language": "Language"
+ "language": "Language",
+ "imprint": "Imprint"
}
}
\ No newline at end of file
diff --git a/src/App.js b/src/App.js
index 100d3b0..b00ecfc 100644
--- a/src/App.js
+++ b/src/App.js
@@ -9,12 +9,14 @@ import Navigation from "./components/Navigation";
import * as styles from "./App.module.scss";
import NotFoundPage from "./pages/NotFound";
import ToolLoader from "./tools/ToolLoader";
+import { Trans } from "react-i18next";
const HomePage = lazy(() => import('./pages/Home'));
const ToolsPage = lazy(() => import('./pages/Tools'));
const AboutPage = lazy(() => import('./pages/About'));
function App() {
+
return (
@@ -30,6 +32,7 @@ function App() {
+
);
diff --git a/src/App.module.scss b/src/App.module.scss
index f2c2eec..96cdfa4 100644
--- a/src/App.module.scss
+++ b/src/App.module.scss
@@ -10,4 +10,11 @@
> * {
flex-shrink: 0;
}
+}
+
+.footer {
+ background-color: #1c1c1c;
+ color: white;
+ text-align: center;
+ padding: 5px;
}
\ No newline at end of file