๐Ÿ“ฆ Svenlaa / video-gamer

๐Ÿ“„ footer.tsx ยท 17 lines
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>
          &copy;{new Date().getFullYear()}&nbsp;
          <a className="font-bold" href="https://github.com/Svenlaa">
            videogamer
          </a>
        </span>
      </div>
    </footer>
  )
}

export default Footer