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}
+
);
};