From 83c74f680012f126d15fe77e07a3737da69b5e5b Mon Sep 17 00:00:00 2001 From: SimplyRayYZL <116981513+SimplyRayYZL@users.noreply.github.com> Date: Wed, 13 May 2026 11:03:20 +0300 Subject: [PATCH] Use dynamic year in landing footer --- frontend/app/page.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/app/page.tsx b/frontend/app/page.tsx index d64f501..ef0dac0 100644 --- a/frontend/app/page.tsx +++ b/frontend/app/page.tsx @@ -860,6 +860,7 @@ function FinalCTA() { /* ---------------- Footer ---------------- */ function Footer() { + const currentYear = new Date().getFullYear(); const XIcon = (p: SVGProps) => ( @@ -899,7 +900,9 @@ function Footer() { Built for Colosseum - © 2026 GH BOUNTY · ALL RIGHTS RESERVED + + © {currentYear} GH BOUNTY · ALL RIGHTS RESERVED + );