diff --git a/src/components/global/Footer.tsx b/src/components/global/Footer.tsx index 12d82fb..019ad4d 100644 --- a/src/components/global/Footer.tsx +++ b/src/components/global/Footer.tsx @@ -16,11 +16,16 @@ const versionLabel = gitSha ? `v${appVersion}+${gitSha.slice(0, 7)}` : `v${appVersion}`; const envLabel = deployEnv === "production" ? "prod" : deployEnv; +const currentYear = new Date().getFullYear(); +const copyrightYear = + currentYear > 2025 + ? `2025–${currentYear}` + : "2025"; export default function Footer() { return (