Clean up footer links

This commit is contained in:
Nathan McCarty 2025-02-15 05:31:50 -05:00
parent 75b174f0a7
commit 88bb800ec4
2 changed files with 9 additions and 8 deletions

View file

@ -20,15 +20,15 @@ sub generate-footer() is export {
div :class<contact>, [
div :class<footer-title>, span "Contact Me";
div :class<footer-links>, [
footer-link (^ "@thatonelutenist"),
footer-link (^ "Discord"),
"Discord",
"https://discordapp.com/users/thatonelutenist",
simple-icon "discord";
footer-link (^ "@thatonelutenist:stranger.systems"),
footer-link (^ "Matrix"),
"Matrix",
"https://matrix.to/#/@thatonelutenist:stranger.systems",
simple-icon "matrix";
footer-link (^ "~thatonelutenist/public-inbox@lists.sr.ht"),
footer-link (^ "Public Email Inbox"),
"Email",
"mailto:~thatonelutenist/public-inbox@lists.sr.ht",
icon-solid "envelope";
@ -41,15 +41,15 @@ sub generate-footer() is export {
"Stranger Systems Forgejo",
"https://git.stranger.systems/explore/repos",
simple-icon "forgejo";
footer-link (^ "~thatonelutenist"),
footer-link (^ "sr.ht"),
"sr.ht",
"https://sr.ht/~thatonelutenist/",
simple-icon "sourcehut";
footer-link (^ "@nmccarty"),
footer-link (^ "github"),
"Github",
"https://github.com/nmccarty",
simple-icon "github";
footer-link (^ "@thatonelutenist"),
footer-link (^ "gitlab"),
"Gitlab",
"https://gitlab.com/thatonelutenist",
simple-icon "gitlab";
@ -58,7 +58,7 @@ sub generate-footer() is export {
div :class<socials>, [
div :class<footer-title>, span "Social Media";
div :class<footer-links>, [
footer-link "@thatonelutenist@hachyderm.io",
footer-link "Mastodon",
"Mastodon",
"https://hachyderm.io/@thatonelutenist",
simple-icon "mastodon";

View file

@ -248,7 +248,8 @@ footer i {
.footer-links {
display: flex;
flex-flow: row wrap;
/* align-items: center; */
align-items: center;
justify-content: center;
gap: var(--box-gap);
border-radius: var(--box-radius);
padding: var(--footer-padding);