From 3d8f5ef1880a7e549ca13fce451565816cd3db62 Mon Sep 17 00:00:00 2001 From: kenan Date: Wed, 13 May 2026 18:50:34 +0800 Subject: [PATCH] fix: derive landing footer year dynamically --- frontend/app/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/app/page.tsx b/frontend/app/page.tsx index d64f501..56e665b 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,7 @@ function Footer() { Built for Colosseum - © 2026 GH BOUNTY · ALL RIGHTS RESERVED + © {currentYear} GH BOUNTY · ALL RIGHTS RESERVED );