diff --git a/src/components/SocialList.astro b/src/components/SocialList.astro index 048b9c1..e1fffba 100644 --- a/src/components/SocialList.astro +++ b/src/components/SocialList.astro @@ -1,7 +1,7 @@ --- import { Icon } from "astro-icon/components"; -/** +/** Uses https://www.astroicon.dev/getting-started/ Find icons via guide: https://www.astroicon.dev/guides/customization/#open-source-icon-sets Only installed pack is: @iconify-json/mdi @@ -27,14 +27,9 @@ const socialLinks: { link: "https://x.com/kazoottt", name: "mdi:twitter", }, - { - friendlyName: "Bilibili", - link: "https://space.bilibili.com/391236013", - name: "mdi:video", - }, { friendlyName: "YouTube", - link: "https://www.youtube.com/@kazoottt4718", + link: "https://www.youtube.com/@kazoottt255", name: "mdi:youtube", }, { @@ -47,6 +42,11 @@ const socialLinks: { link: "https://bento.me/KazooTTT", name: "mdi:open-in-new", }, + { + friendlyName: "rss", + link: "https://blog.kazoottt.top/rss.xml", + name: "mdi:rss-box", + }, ]; ---