diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-06-26 22:01:38 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-06-26 22:01:38 -0700 |
| commit | 7c3f1298095727fcacdc903fa79369d5624bf3df (patch) | |
| tree | 45ec08396c69916971a60965c08255f7c8e0b613 /src/components/Footer/Footer.tsx | |
| parent | 5f58260a7602494f21969fd917a0a984ae9d714d (diff) | |
lint project
Diffstat (limited to 'src/components/Footer/Footer.tsx')
| -rw-r--r-- | src/components/Footer/Footer.tsx | 48 |
1 files changed, 27 insertions, 21 deletions
diff --git a/src/components/Footer/Footer.tsx b/src/components/Footer/Footer.tsx index 22573cd..8686e4c 100644 --- a/src/components/Footer/Footer.tsx +++ b/src/components/Footer/Footer.tsx @@ -1,26 +1,32 @@ - -import React from 'react'; +import React from "react"; const Footer = () => { - return ( - <footer> - <div className="text-center mt-4"> - <p className="font-bold"> - Information - </p> - <p className="text-m"> - Information is collected once per hour. Data collection will stop upon graduation - <br/> - This page is in no way affiliated with Phase Connect or with any of the channels listed here. - <br/> - Data Collection Started: 2022-04-01 (Earlier data may not be fully accurate) - </p> - <p className="p-4"> - <a className="hover:underline text-bold" href="https://github.com/pinapelz/Nijitrack">Source Code</a><br/> - </p> - </div> - </footer> - ); + return ( + <footer> + <div className="text-center mt-4"> + <p className="font-bold">Information</p> + <p className="text-m"> + Information is collected once per hour. Data collection will stop upon + graduation + <br /> + This page is in no way affiliated with Phase Connect or with any of + the channels listed here. + <br /> + Data Collection Started: 2022-04-01 (Earlier data may not be fully + accurate) + </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; |
