quotes-nextjs

My favourite quotes. (nextjs)
git clone http://git.hanabi.in/repos/quotes-nextjs.git
Log | Files | Refs | LICENSE

Footer.js (493B)


      1 import Link from "next/link";
      2 
      3 import { copyright } from "../config.js";
      4 
      5 function Footer() {
      6   return (
      7     <footer id="footer" className="footer-container">
      8       <div className="footer">
      9         <div className="copyright">
     10           <p>
     11             &copy; {copyright.start}&ndash;{copyright.end}{" "}
     12             <Link href={copyright.link}>
     13               <a>{copyright.holder}</a>
     14             </Link>
     15           </p>
     16         </div>
     17       </div>
     18     </footer>
     19   );
     20 }
     21 
     22 export default Footer;