From edae92b0a5cbb4f606a50e4a496d792226e63488 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sat, 24 Aug 2019 09:50:27 -0500 Subject: [PATCH] add footer links --- src/FilterLists.Web.V2/src/App.tsx | 55 ++++++++++++++++++++++++++---- 1 file changed, 48 insertions(+), 7 deletions(-) diff --git a/src/FilterLists.Web.V2/src/App.tsx b/src/FilterLists.Web.V2/src/App.tsx index f343001da..067710e56 100644 --- a/src/FilterLists.Web.V2/src/App.tsx +++ b/src/FilterLists.Web.V2/src/App.tsx @@ -9,21 +9,62 @@ const App: React.FC = () => { return (
- FilterLists logo - + +
-
©{(new Date()).getFullYear()} Collin M. Barrett
+
+ | | | | +
); } +const Logo = () => + FilterLists logo; + +const CopyrightAuthor = () => + + ©{new Date().getFullYear()}  + + Collin M. Barrett + ; + +const Community = () => + + Community + ; + +const GitHub = () => + + GitHub + ; + +const Api = () => + + API + ; + +const Donate = () => + + Donate + ; + export default App; \ No newline at end of file