Header + Footer ready for deployment

This commit is contained in:
2026-04-10 01:27:02 +02:00
parent 5941df3c39
commit 63d5cf743a
24 changed files with 136 additions and 2813 deletions
+24
View File
@@ -0,0 +1,24 @@
import forgejo from "../assets/images/forgejo.svg";
export default function Footer() {
const currentYear = new Date().getFullYear();
const goToRepo = () => {
window.location.href = "https://git.aramjonghu.nl/AramJonghu/aramjonghu-site";
};
return (
<footer className="flex items-center justify-between px-12 py-6 border-t border-ctp-lavender-800 mt-10">
<p className="text-sm text-ctp-text">
&copy; {currentYear} AramJonghu. All rights reserved.
</p>
<img
src={forgejo}
alt="Forgejo repository"
onClick={goToRepo}
className="w-6 h-6 cursor-pointer hover:opacity-80 transition-opacity"
/>
</footer>
);
}