summaryrefslogtreecommitdiff
path: root/src/components/SocialList.astro
diff options
context:
space:
mode:
authorDawid Rycerz <dawid@rycerz.xyz>2025-07-03 13:02:11 +0300
committerDawid Rycerz <dawid@rycerz.xyz>2025-07-03 13:02:11 +0300
commit0bedb68753e7202326383fd10f7af563d7fbc24a (patch)
tree99e021c8f36201a949a551a80faa6691dde69091 /src/components/SocialList.astro
parent456cf011b36de91c9936994b1fa45703adcd309b (diff)
Initial customization
Diffstat (limited to 'src/components/SocialList.astro')
-rw-r--r--src/components/SocialList.astro29
1 files changed, 27 insertions, 2 deletions
diff --git a/src/components/SocialList.astro b/src/components/SocialList.astro
index 00e7f97..96b8d94 100644
--- a/src/components/SocialList.astro
+++ b/src/components/SocialList.astro
@@ -13,10 +13,35 @@ const socialLinks: {
name: string;
}[] = [
{
- friendlyName: "Github",
- link: "https://github.com/chrismwilliams/astro-cactus",
+ friendlyName: "Mastodon",
+ link: "https://mastodon.social/@dawid@social.craftknight.com",
+ name: "mdi:mastodon",
+ },
+ {
+ friendlyName: "Codeberg",
+ link: "https://codeberg.org/knightdave",
+ name: "mdi:git",
+ },
+ {
+ friendlyName: "RSS",
+ link: "https://www.rycerz.xyz/rss.xml",
+ name: "mdi:rss",
+ },
+ {
+ friendlyName: "GitHub",
+ link: "https://github.com/knightdave",
name: "mdi:github",
},
+ {
+ friendlyName: "GitLab",
+ link: "https://gitlab.com/knightdave",
+ name: "mdi:gitlab",
+ },
+ {
+ friendlyName: "LinkedIn",
+ link: "https://www.linkedin.com/in/rycerzxyz",
+ name: "mdi:linkedin",
+ },
];
---