From 17311e5c646ab55ded0a5b767c58c99609c9b853 Mon Sep 17 00:00:00 2001 From: Eugene Toder Date: Mon, 19 Jan 2026 22:27:12 -0500 Subject: [PATCH] Put bottom links on all pages --- src/App.js | 2 ++ src/components/Footer.js | 27 +++++++++++++++++++++++++++ src/pages/AboutPage.js | 7 ------- src/pages/ConductPage.js | 9 --------- src/pages/HelpPage.js | 8 -------- src/pages/LegalPage.js | 9 --------- src/pages/LobbyPage.js | 16 ---------------- src/pages/NotFoundPage.js | 8 -------- 8 files changed, 29 insertions(+), 57 deletions(-) create mode 100644 src/components/Footer.js diff --git a/src/App.js b/src/App.js index c9d1481..1cae1dd 100644 --- a/src/App.js +++ b/src/App.js @@ -5,6 +5,7 @@ import CssBaseline from "@material-ui/core/CssBaseline"; import { ThemeProvider } from "@material-ui/core/styles"; import ConnectionsTracker from "./components/ConnectionsTracker"; +import Footer from "./components/Footer"; import Navbar from "./components/Navbar"; import WelcomeDialog from "./components/WelcomeDialog"; import { SettingsContext, UserContext } from "./context"; @@ -185,6 +186,7 @@ function App() { +