diff --git a/FrontendV2/src/App.tsx b/FrontendV2/src/App.tsx
index 3a03469..3b896ae 100644
--- a/FrontendV2/src/App.tsx
+++ b/FrontendV2/src/App.tsx
@@ -12,6 +12,8 @@ import { triggerLogoutAtom } from "@/states/Atoms";
import { MyLoansPage } from "./pages/MyLoansPage";
import Landingpage from "./pages/Landingpage";
import { changeLanguage } from "i18next";
+import { Box, Flex } from "@chakra-ui/react";
+import { Footer } from "./components/Footer";
const API_BASE =
(import.meta as any).env?.VITE_BACKEND_URL ||
@@ -63,21 +65,24 @@ function App() {
}, []);
return (
- <>
-
-
-
- }>
- } />
- } />
- } />
-
+
+
+
+
+
+ }>
+ } />
+ } />
+ } />
+
- } />
-
-
-
- >
+ } />
+
+
+
+
+
+
);
}
diff --git a/FrontendV2/src/components/Footer.tsx b/FrontendV2/src/components/Footer.tsx
new file mode 100644
index 0000000..a001ca3
--- /dev/null
+++ b/FrontendV2/src/components/Footer.tsx
@@ -0,0 +1,19 @@
+import { Box } from "@chakra-ui/react";
+
+export const Footer = () => {
+ return (
+
+ Made with ❤️ by Theis Gaedigk - Year 2019 at MCS-Bochum
+
+ v2.0
+
+ );
+};
diff --git a/FrontendV2/src/pages/LoginPage.tsx b/FrontendV2/src/pages/LoginPage.tsx
index 56bb460..213ad0f 100644
--- a/FrontendV2/src/pages/LoginPage.tsx
+++ b/FrontendV2/src/pages/LoginPage.tsx
@@ -7,6 +7,7 @@ import Cookies from "js-cookie";
import { Navigate, useNavigate } from "react-router-dom";
import { PasswordInput } from "@/components/ui/password-input";
import { useTranslation } from "react-i18next";
+import { Footer } from "@/components/Footer";
const API_BASE =
(import.meta as any).env?.VITE_BACKEND_URL ||
@@ -115,6 +116,7 @@ export const LoginPage = () => {
+
);
};