From d3f7a7570f74197bab10a1077596497c9e2a7383 Mon Sep 17 00:00:00 2001 From: Theis Gaedigk Date: Sun, 26 Oct 2025 14:37:41 +0100 Subject: [PATCH] feat: add Footer component and integrate it into App and LoginPage --- FrontendV2/src/App.tsx | 33 ++++++++++++++++------------ FrontendV2/src/components/Footer.tsx | 19 ++++++++++++++++ FrontendV2/src/pages/LoginPage.tsx | 2 ++ 3 files changed, 40 insertions(+), 14 deletions(-) create mode 100644 FrontendV2/src/components/Footer.tsx 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 ( - <> - - - - }> - } /> - } /> - } /> - + + + + + + }> + } /> + } /> + } /> + - } /> - - - - + } /> + + + + +