1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17const Footer = () => { return ( <footer className="mt-4"> <div className="bottom-0 flex h-16 w-full flex-col justify-around bg-black text-center"> <span> ©{new Date().getFullYear()} <a className="font-bold" href="https://github.com/Svenlaa"> videogamer </a> </span> </div> </footer> ) } export default Footer