feat(footer): automate copyright year

- Import `Date` object to dynamically fetch the current year for the copyright notice.
- Ensure the footer always displays the correct year without manual updates.
This commit is contained in:
seriouselly
2026-06-08 21:38:50 +07:00
parent d7a145f18f
commit cb90d23293
+2 -2
View File
@@ -2,8 +2,8 @@ export function Footer() {
return (
<footer className="h-18 shrink-0 border-t bg-[#ECF4E8] flex items-center justify-center">
<div className="mx-auto max-w-5xl px-6 py-6 text-sm text-muted-foreground text-center">
© 2026 ZeaVis Edu - AI for Smart Education
&copy; {new Date().getFullYear()} ATLAS Project - Pijak in collaboration with IBM SkillsBuild.
</div>
</footer>
);
}
}