footer.js (827B)
1 import React from 'react'; 2 3 function Footer() { 4 const year = new Date().getFullYear(); 5 return ( 6 <footer className="w-100 mt-5" style={{ bottom: 0 }}> 7 <hr style={{ marginTop: 0 }} /> 8 <div 9 className="page-footer text-center ml-1 mr-1" 10 style={{ paddingBottom: '5px' }} 11 > 12 Copyright © {year}{' '} 13 <a 14 href="https://en.wikinews.org/wiki/User:Acagastya" 15 target="_blank" 16 rel="noopener noreferrer" 17 > 18 acagastya 19 </a> 20 . This project is licensed under{' '} 21 <a 22 href="https://opensource.org/licenses/BSD-3-Clause" 23 target="_blank" 24 rel="noopener noreferrer" 25 > 26 BSD-3-Clause license 27 </a> 28 . 29 </div> 30 </footer> 31 ); 32 } 33 34 export default Footer;