chore: format frontend with prettier

This commit is contained in:
forgejo-bot
2026-05-06 18:00:11 +00:00
parent 6fb9fadd11
commit 703e429e5c
17 changed files with 464 additions and 480 deletions
+18 -18
View File
@@ -1,25 +1,25 @@
import forgejo from "../assets/images/forgejo.svg";
export default function Footer() {
const currentYear = new Date().getFullYear();
const currentYear = new Date().getFullYear();
const goToRepo = () => {
window.location.href =
"https://git.aramjonghu.nl/AramJonghu/aramjonghu-site";
};
const goToRepo = () => {
window.location.href =
"https://git.aramjonghu.nl/AramJonghu/aramjonghu-site";
};
return (
<footer className="bg-ctp-mantle flex items-center justify-between px-24 py-6 border-t border-ctp-lavender-800 mt-10">
<p className="text-sm text-ctp-text">
&copy; {currentYear} AramJonghu. All rights reserved.
</p>
return (
<footer className="bg-ctp-mantle flex items-center justify-between px-24 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>
);
<img
src={forgejo}
alt="Forgejo repository"
onClick={goToRepo}
className="w-6 h-6 cursor-pointer hover:opacity-80 transition-opacity"
/>
</footer>
);
}