Files
echecsfrance/components/Footer.tsx
T
Owen Rees fadfe60730 - aria lables on footer
- bundle analyser added
2023-07-03 10:11:12 +02:00

27 lines
792 B
TypeScript

import Link from "next/link";
import { FaGithub, FaRegEnvelope } from "react-icons/fa";
export default function Footer() {
return (
<footer
className="grid w-full fixed bottom-0 justify-items-center py-2 px-5 text-white bg-teal-600 dark:bg-gray-700 z-30"
data-test="footer"
>
<div className="p-2">
<p>&copy; {new Date().getFullYear()} - Owen Rees</p>
</div>
<div className="flex p-2 space-x-4">
<Link
href="https://github.com/TheRealOwenRees/echecsfrance"
target="_blank"
aria-label="Lien vers le dépôt GitHub"
>
<FaGithub />
</Link>
<Link href="/contactez-nous" aria-label="Contactez-nous">
<FaRegEnvelope />
</Link>
</div>
</footer>
);
}