diff options
Diffstat (limited to 'src/components/Footer')
| -rw-r--r-- | src/components/Footer/Footer.tsx | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/components/Footer/Footer.tsx b/src/components/Footer/Footer.tsx new file mode 100644 index 0000000..6585e52 --- /dev/null +++ b/src/components/Footer/Footer.tsx @@ -0,0 +1,26 @@ + +import React from 'react'; + +const Footer = () => { + return ( + <footer> + <div className="text-center"> + <p className="text-bold"> + Information + </p> + <p className="text-m"> + Information is collected once per hour. Data collection will stop once a liver has graduated. + <br/> + This page is in now way affiliated with ANYCOLOR or with any of the channels listed here. + <br/> + Date Started: 2023-03-26 + </p> + <p className="p-4"> + <a className="hover:underline text-bold" href="https://github.com/pinapelz/Nijitrack">Source Code</a><br/> + </p> + </div> + </footer> + ); +}; + +export default Footer; |
