Skip to content

Commit be3e91c

Browse files
authored
fix: make footer copyright year dynamic (JhaSourav07#1898)
## Summary - Replaced hardcoded copyright year with a dynamic value - Uses JavaScript Date API to automatically display the current year ## Changes Made - Updated Footer component to use: new Date().getFullYear() ## Testing - Verified footer displays the current year correctly - No UI changes introduced close JhaSourav07#1881
2 parents 0e4f492 + dbb49e1 commit be3e91c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/components/Footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ export function Footer() {
4040
</div>
4141

4242
{/* BOTTOM */}
43-
<div className="mt-6 border-t border-black/5 pt-3 text-center text-xs text-zinc-400 dark:border-white/5 dark:text-white/60">
44-
© 2026 CommitPulse. All rights reserved.
43+
<div className="mt-6 border-t border-black/5 pt-3 text-center text-xs text-zinc-500 dark:border-white/5 dark:text-zinc-500">
44+
© {new Date().getFullYear()} CommitPulse. All rights reserved.
4545
</div>
4646
</footer>
4747
);

0 commit comments

Comments
 (0)