feat: add Footer component and integrate it into App and LoginPage

This commit is contained in:
2025-10-26 14:37:41 +01:00
parent c502601a2f
commit d3f7a7570f
3 changed files with 40 additions and 14 deletions

View File

@@ -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 = () => {
</Card.Footer>
</Card.Root>
</form>
<Footer />
</div>
);
};