Files
echecsfrance/components/Footer.tsx
T
2023-06-09 16:50:32 +02:00

10 lines
222 B
TypeScript

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>
</footer>
);
}