diff --git a/components/SocialLinks.tsx b/components/SocialLinks.tsx index 7168874..80429fd 100644 --- a/components/SocialLinks.tsx +++ b/components/SocialLinks.tsx @@ -38,6 +38,11 @@ const iconList = [ image: DiscordSvg, link: "https://discord.gg/pHfYBCg", }, + { + name: "Libera", + image: LiberaSvg, + link: "ircs://irc.libera.chat:6697/csc", + }, ]; const links = iconList.map((icon) => { @@ -60,7 +65,7 @@ const links = iconList.map((icon) => { return SocialLink; }); -export const [Facebook, Instagram, Twitch, Discord] = links; +export const [Facebook, Instagram, Twitch, Discord, Libera] = links; function InstagramSvg(color: string) { return ( @@ -178,3 +183,89 @@ function FacebookSvg(color: string) { ); } + +function LiberaSvg(color: string) { + return ( + + + + + + + + + + + + + ); +}