2024-03-05 18:38:42 -05:00
|
|
|
export default function ({ comp }) {
|
2023-08-04 18:16:39 -04:00
|
|
|
const iconStyle = {
|
|
|
|
filter: "var(--filter-fg)",
|
|
|
|
};
|
2023-08-01 01:35:21 -04:00
|
|
|
|
2023-07-26 23:04:30 -04:00
|
|
|
return (
|
|
|
|
<footer className="page-footer">
|
2023-08-03 19:31:43 -04:00
|
|
|
{comp.separator()}
|
2023-08-01 01:35:21 -04:00
|
|
|
<div className="social-links">
|
2023-09-15 16:28:02 -04:00
|
|
|
<a href="https://code.fosterhangdaan.com/foster" title="Forgejo">
|
2023-08-04 18:16:39 -04:00
|
|
|
<img
|
2024-03-11 15:57:14 -04:00
|
|
|
src="https://static.fosterhangdaan.com/icons/simple-icons/v10.2.0/forgejo.svg"
|
2023-08-04 18:16:39 -04:00
|
|
|
className="icon"
|
|
|
|
style={iconStyle}
|
2023-08-06 10:48:26 -04:00
|
|
|
alt="forgejo"
|
2023-08-04 18:16:39 -04:00
|
|
|
/>
|
2023-08-01 01:35:21 -04:00
|
|
|
</a>
|
|
|
|
<a href="mailto:foster@hangdaan.email" title="eMail">
|
2023-08-04 18:16:39 -04:00
|
|
|
<img
|
2024-03-11 15:57:14 -04:00
|
|
|
src="https://static.fosterhangdaan.com/icons/tabler-icons/v2.47.0/svg/mail-filled.svg"
|
2023-08-04 18:16:39 -04:00
|
|
|
className="icon"
|
|
|
|
style={iconStyle}
|
2023-08-06 10:48:26 -04:00
|
|
|
alt="e-mail"
|
2023-08-04 18:16:39 -04:00
|
|
|
/>
|
2023-08-01 01:35:21 -04:00
|
|
|
</a>
|
2023-08-05 20:13:10 -04:00
|
|
|
<a href="https://www.fosterhangdaan.com/blog/feed.rss" title="RSS Feed">
|
|
|
|
<img
|
2024-03-11 15:57:14 -04:00
|
|
|
src="https://static.fosterhangdaan.com/icons/tabler-icons/v2.47.0/svg/rss.svg"
|
2023-08-05 20:13:10 -04:00
|
|
|
className="icon"
|
|
|
|
style={iconStyle}
|
2023-08-06 10:48:26 -04:00
|
|
|
alt="rss"
|
2023-08-05 20:13:10 -04:00
|
|
|
/>
|
|
|
|
</a>
|
2024-03-05 18:38:42 -05:00
|
|
|
<a
|
|
|
|
href="https://www.fosterhangdaan.com/blog/feed.json"
|
|
|
|
title="JSON Feed"
|
|
|
|
>
|
2023-08-10 23:04:08 -04:00
|
|
|
<img
|
2024-03-11 15:57:14 -04:00
|
|
|
src="https://static.fosterhangdaan.com/icons/tabler-icons/v2.47.0/svg/braces.svg"
|
2023-08-10 23:04:08 -04:00
|
|
|
className="icon"
|
|
|
|
style={iconStyle}
|
|
|
|
alt="json feed"
|
|
|
|
/>
|
|
|
|
</a>
|
2023-08-01 01:35:21 -04:00
|
|
|
</div>
|
2023-07-26 23:04:30 -04:00
|
|
|
<p>Copyright © 2023 Foster Hangdaan</p>
|
2024-03-05 18:38:42 -05:00
|
|
|
<p>
|
|
|
|
Made with <a href="https://lume.land/">Lume</a>,{" "}
|
|
|
|
<a href="https://www.typescriptlang.org/">TypeScript</a> and lots of
|
|
|
|
{" "}
|
|
|
|
<img
|
2024-03-11 15:57:14 -04:00
|
|
|
src="https://static.fosterhangdaan.com/icons/tabler-icons/v2.47.0/svg/heart.svg"
|
2024-03-05 18:38:42 -05:00
|
|
|
className="icon"
|
|
|
|
style={{ filter: "var(--filter-red)" }}
|
|
|
|
title="love"
|
|
|
|
alt="love"
|
|
|
|
/>.
|
|
|
|
</p>
|
2023-07-26 23:04:30 -04:00
|
|
|
</footer>
|
|
|
|
);
|
|
|
|
}
|