From fe555de435588c6b75d8437b2e573a423ae617bc Mon Sep 17 00:00:00 2001 From: Vlad Sazonau <16666234+VladSez@users.noreply.github.com> Date: Mon, 17 Feb 2025 20:56:42 +0100 Subject: [PATCH] fix(public): remove hardcoded year in footer (#122) --- apps/public/components/footer.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/public/components/footer.tsx b/apps/public/components/footer.tsx index 7f751f95..3ddfffe6 100644 --- a/apps/public/components/footer.tsx +++ b/apps/public/components/footer.tsx @@ -8,6 +8,8 @@ import { Tag } from './tag'; import { Button } from './ui/button'; export function Footer() { + const year = new Date().getFullYear(); + return (