table overflow fixed

This commit is contained in:
Owen Rees
2023-06-10 12:44:42 +02:00
parent fbefd7eaa0
commit a732508429
6 changed files with 31 additions and 11 deletions
+11
View File
@@ -1,9 +1,20 @@
import Link from "next/link";
import { FaGithub } from "react-icons/fa";
export default function Footer() {
return (
<footer className="grid grid-cols-2 bg-gray-800 text-white p-3">
<div>
<p>&copy; {new Date().getFullYear()} - Owen Rees</p>
</div>
<div>
<Link
href="https://github.com/TheRealOwenRees/echecsfrance"
target="_blank"
>
<FaGithub />
</Link>
</div>
</footer>
);
}