From 4feed32d8d4488da411d9b2d72a8e2b1919da60a Mon Sep 17 00:00:00 2001 From: Kokila-chandrakar Date: Sat, 30 May 2026 20:38:29 +0000 Subject: [PATCH 1/2] fix: make footer copyright year dynamic --- app/components/Footer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Footer.tsx b/app/components/Footer.tsx index 9286e039..5b7a5783 100644 --- a/app/components/Footer.tsx +++ b/app/components/Footer.tsx @@ -44,7 +44,7 @@ export function Footer() { {/* BOTTOM */}
- © 2026 CommitPulse. All rights reserved. + © {new Date().getFullYear()} CommitPulse. All rights reserved.
); From dbb49e10ae8cd9b4ae18aad7e48f22a5cffc0736 Mon Sep 17 00:00:00 2001 From: Kokila-chandrakar Date: Sat, 30 May 2026 20:59:56 +0000 Subject: [PATCH 2/2] fix: make footer copyright year dynamic --- app/components/Footer.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/components/Footer.tsx b/app/components/Footer.tsx index 66920650..5be2d2bd 100644 --- a/app/components/Footer.tsx +++ b/app/components/Footer.tsx @@ -42,8 +42,6 @@ export function Footer() { {/* BOTTOM */}
© {new Date().getFullYear()} CommitPulse. All rights reserved. -
- © 2026 CommitPulse. All rights reserved.
);