themes and dimensions

This commit is contained in:
Owen Rees
2023-06-12 15:41:09 +02:00
parent 95f0a37c76
commit 254d4603aa
18 changed files with 204 additions and 34 deletions
+6 -3
View File
@@ -1,19 +1,22 @@
import Link from "next/link";
import { FaGithub } from "react-icons/fa";
import { FaGithub, FaRegEnvelope } from "react-icons/fa";
export default function Footer() {
return (
<footer className="grid justify-items-center bg-gray-800 text-white py-2 px-5">
<footer className="grid w-full fixed bottom-0 justify-items-center py-2 px-5 text-white bg-teal-600 text-gray-900 dark:bg-gray-700">
<div className="p-2">
<p>&copy; {new Date().getFullYear()} - Owen Rees</p>
</div>
<div className="p-2">
<div className="flex p-2 space-x-4">
<Link
href="https://github.com/TheRealOwenRees/echecsfrance"
target="_blank"
>
<FaGithub />
</Link>
<Link href="/contactez-nous">
<FaRegEnvelope />
</Link>
</div>
</footer>
);