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:
@@ -2,8 +2,8 @@ export function Footer() {
|
|||||||
return (
|
return (
|
||||||
<footer className="h-18 shrink-0 border-t bg-[#ECF4E8] flex items-center justify-center">
|
<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">
|
<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
|
© {new Date().getFullYear()} ATLAS Project - Pijak in collaboration with IBM SkillsBuild.
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user