nav updated

This commit is contained in:
Owen Rees
2023-06-09 16:50:32 +02:00
parent 4cf8566a59
commit 1ad2f1b306
19 changed files with 173 additions and 61 deletions
+4 -2
View File
@@ -1,7 +1,9 @@
export default function Footer() {
return (
<footer className="w-full bg-gray-800 text-white p-3">
<p>Footer</p>
<footer className="grid grid-cols-2 bg-gray-800 text-white p-3">
<div>
<p>&copy; {new Date().getFullYear()} - Owen Rees</p>
</div>
</footer>
);
}