Add Footer component

This commit is contained in:
Bram Suurd
2024-05-02 14:10:11 +02:00
parent a764d1c528
commit 335c4f7f4e

9
components/Footer.tsx Normal file
View File

@@ -0,0 +1,9 @@
import React from "react";
const year = new Date().getFullYear();
export default function Footer() {
return (
<div className="mt-20 w-full bg-secondary py-6 text-center">{year}</div>
);
}