From ab5005f7df5d1e5e73be4f96dd61143c7b68f504 Mon Sep 17 00:00:00 2001 From: KartoffelChipss Date: Sun, 3 May 2026 19:41:14 +0200 Subject: [PATCH] Add footer --- frontend/src/components/Footer.tsx | 5 +++++ frontend/src/pages/Page.tsx | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 frontend/src/components/Footer.tsx diff --git a/frontend/src/components/Footer.tsx b/frontend/src/components/Footer.tsx new file mode 100644 index 0000000..6a00145 --- /dev/null +++ b/frontend/src/components/Footer.tsx @@ -0,0 +1,5 @@ +const Footer = () => { + return ; +}; + +export default Footer; diff --git a/frontend/src/pages/Page.tsx b/frontend/src/pages/Page.tsx index 88c17bf..2a11ef7 100644 --- a/frontend/src/pages/Page.tsx +++ b/frontend/src/pages/Page.tsx @@ -4,6 +4,7 @@ import Navbar from '../components/navbar'; import { useCurrentUser } from '../hooks/api/useCurrentUser'; import type { User } from '../api/types/user'; import { getToken } from '../utils/credentials'; +import Footer from '../components/Footer'; interface PageProps { title: string; @@ -41,6 +42,7 @@ const Page = ({ children, title, className, requireAuth = true }: PropsWithChild
{children}
+