You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
606B

  1. import Link from 'next/link'
  2. import { FaHeart } from 'react-icons/fa'
  3. export default function Footer() {
  4. return (
  5. <footer className="flex justify-around md:text-sm text-xs p-3">
  6. <Link href="/legal">
  7. <a >Impressum</a>
  8. </Link>
  9. <div className="inline-flex justify-around">
  10. <p className="mx-px"> Created with </p>
  11. <FaHeart className="mx-px " />
  12. <p className="mx-px"> by </p>
  13. <a className="mx-px" href="https://ziermach.de">Ziermach</a>
  14. </div>
  15. </footer>
  16. )
  17. }