This replaces all asset links to use the new public S3 bucket. It also upgrades several packages: - Simple Icons v10.2.0 to v13.9.0 - Tabler Icons v2.47.0 to v3.14.0 - HightightJS v11.9.0 to v11.10.0 - Monaspace v1.000 to v1.101
63 lines
2.1 KiB
TypeScript
63 lines
2.1 KiB
TypeScript
export default function ({ comp }: Lume.Data) {
|
|
const iconStyle = {
|
|
filter: "var(--filter-fg)",
|
|
};
|
|
|
|
return (
|
|
<footer className="page-footer">
|
|
{comp.separator()}
|
|
<div className="social-links">
|
|
<a href="https://code.fosterhangdaan.com/foster" title="Forgejo">
|
|
<img
|
|
src="https://minio.fosterhangdaan.com/public/images/icons/simple-icons/13.9.0/forgejo.svg"
|
|
className="icon"
|
|
style={iconStyle}
|
|
alt="forgejo"
|
|
/>
|
|
</a>
|
|
<a href="mailto:foster@hangdaan.email" title="eMail">
|
|
<img
|
|
src="https://minio.fosterhangdaan.com/public/images/icons/tabler-icons/3.14.0/filled/mail.svg"
|
|
className="icon"
|
|
style={iconStyle}
|
|
alt="e-mail"
|
|
/>
|
|
</a>
|
|
<a href="https://pay.fosterhangdaan.com" title="Donate">
|
|
<img
|
|
src="https://minio.fosterhangdaan.com/public/images/icons/tabler-icons/3.14.0/outline/heart-dollar.svg"
|
|
className="icon"
|
|
style={iconStyle}
|
|
alt="donate"
|
|
/>
|
|
</a>
|
|
<a href="https://www.fosterhangdaan.com/blog/feed.rss" title="RSS Feed">
|
|
<img
|
|
src="https://minio.fosterhangdaan.com/public/images/icons/tabler-icons/3.14.0/outline/rss.svg"
|
|
className="icon"
|
|
style={iconStyle}
|
|
alt="rss"
|
|
/>
|
|
</a>
|
|
<a
|
|
href="https://www.fosterhangdaan.com/blog/feed.json"
|
|
title="JSON Feed"
|
|
>
|
|
<img
|
|
src="https://minio.fosterhangdaan.com/public/images/icons/tabler-icons/3.14.0/outline/braces.svg"
|
|
className="icon"
|
|
style={iconStyle}
|
|
alt="json feed"
|
|
/>
|
|
</a>
|
|
</div>
|
|
<p>Copyright © 2023 Foster Hangdaan</p>
|
|
<div className="meta">
|
|
<a href="https://code.fosterhangdaan.com/foster/website">Source</a>
|
|
<a href="https://code.fosterhangdaan.com/foster/website/src/branch/trunk/LICENSE.md">
|
|
License
|
|
</a>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|