diff --git a/components/SocialLinks.tsx b/components/SocialLinks.tsx index 75569d04..ee470fd7 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) => { @@ -193,3 +198,45 @@ function FacebookSvg(color: string) { ); } + +function LiberaSvg(color: string) { + return ( + + + + + + + + + + + + + ); +}