diff options
| author | Pinapelz <yukais@pinapelz.com> | 2023-11-18 21:21:22 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2023-11-18 21:21:22 -0800 |
| commit | adc88dbdf3274d4d0cf15b5f2cf7b0bbb939bfe0 (patch) | |
| tree | 96089396e548f3f57121674362b6170c7b76693b /src/app/_componenets/Footer | |
| parent | 96019367e8f72eac26abd3b7a908c2b914bd1ae1 (diff) | |
v3: re-write frontend using next js
Diffstat (limited to 'src/app/_componenets/Footer')
| -rw-r--r-- | src/app/_componenets/Footer/Footer.tsx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/app/_componenets/Footer/Footer.tsx b/src/app/_componenets/Footer/Footer.tsx new file mode 100644 index 0000000..f23c677 --- /dev/null +++ b/src/app/_componenets/Footer/Footer.tsx @@ -0,0 +1,27 @@ + +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/> + We are currently under construction! + </p> + </div> + </footer> + ); +}; + +export default Footer; |
