--- 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 */ const socialLinks: { friendlyName: string; isWebmention?: boolean; link: string; name: string; }[] = [ { friendlyName: "Mastodon", link: "https://mastodon.social/@dawid@social.craftknight.com", name: "mdi:mastodon", }, { friendlyName: "My git repos", link: "https://git.craftknight.com/", 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", // }, ]; ---

Find me on