time-convertor-ts

Convert time across timezones (typescript)
git clone http://git.hanabi.in/repos/time-convertor-ts.git
Log | Files | Refs | README | LICENSE

Footer.tsx (1090B)


      1 import React from "react";
      2 
      3 import { YEAR } from "../../utils";
      4 
      5 function Footer<never>(): JSX.Element {
      6   return (
      7     <footer
      8       className="border-top mt-5 page-footer"
      9       style={{
     10         bottom: 0,
     11         paddingTop: "1rem",
     12       }}
     13     >
     14       <div className="text-center">
     15         <p>
     16           Copyright &copy; {YEAR}{" "}
     17           <a
     18             href="https://en.wikinews.org/wiki/User:Acagastya"
     19             target="_blank"
     20             rel="noopener noreferrer"
     21           >
     22             Agastya
     23           </a>
     24           . This project is licensed under{" "}
     25           <a
     26             href="https://opensource.org/licenses/BSD-3-Clause"
     27             target="_blank"
     28             rel="noopener noreferrer"
     29           >
     30             BSD-3-Clause license
     31           </a>
     32           . Report bugs{" "}
     33           <a
     34             href="https://github.com/acagastya/time-convertor-ts/issues/new"
     35             target="_blank"
     36             rel="noopener noreferrer"
     37           >
     38             here
     39           </a>
     40           .
     41         </p>
     42       </div>
     43     </footer>
     44   );
     45 }
     46 
     47 export default Footer;