From 6e6ddef87eea63fa670661325f476bc459880dfe Mon Sep 17 00:00:00 2001 From: trying559 Date: Thu, 8 Feb 2024 16:49:24 +0100 Subject: [PATCH] Added info page, fixed FAQ link, --- src/App.jsx | 2 + src/components/Footer.jsx | 4 +- src/components/Info.jsx | 241 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 245 insertions(+), 2 deletions(-) create mode 100644 src/components/Info.jsx diff --git a/src/App.jsx b/src/App.jsx index d9eeea1f..4d6bd616 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -12,6 +12,7 @@ import Home from "./pages/Home"; import Watch from "./pages/Watch"; import SearchResults from "./pages/SearchResults"; import PageNotFound from "./pages/404"; +import Info from "./components/Info"; function ScrollToTop() { const { pathname } = useLocation(); @@ -45,6 +46,7 @@ function App() { } /> } /> } /> + } /> } />