From 335c4f7f4e5242a23c0e58fb046ec4cdcb71ee40 Mon Sep 17 00:00:00 2001 From: Bram Suurd <78373894+BramSuurdje@users.noreply.github.com> Date: Thu, 2 May 2024 14:10:11 +0200 Subject: [PATCH] Add Footer component --- components/Footer.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 components/Footer.tsx diff --git a/components/Footer.tsx b/components/Footer.tsx new file mode 100644 index 0000000..abb0776 --- /dev/null +++ b/components/Footer.tsx @@ -0,0 +1,9 @@ +import React from "react"; + +const year = new Date().getFullYear(); + +export default function Footer() { + return ( +
{year}
+ ); +}