diff --git a/src/App.tsx b/src/App.tsx
index a05624b..c7ab771 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -6,6 +6,7 @@ import './style.css';
import { useAppContent } from 'pocketbase-react/src';
import type { Game, GameState, Goal, News, Player, Team } from './types';
+import { AppFooter } from './components/app-footer';
const serverURL = import.meta.env.VITE_POCKETBASE_ENDPOINT;
// these get automatically prefetched & subscribed to updates
@@ -29,6 +30,7 @@ export const App: React.FC = () => {
+
);
diff --git a/src/components/app-footer.tsx b/src/components/app-footer.tsx
new file mode 100644
index 0000000..4c3ebbc
--- /dev/null
+++ b/src/components/app-footer.tsx
@@ -0,0 +1,12 @@
+import React from 'react';
+import Container from 'react-bootstrap/Container';
+
+export const AppFooter: React.FC = () => {
+ return (
+
+ );
+};