From 843d13b26719cbad1c4aa7cff4791277363965e1 Mon Sep 17 00:00:00 2001 From: Max Erenberg Date: Tue, 7 Sep 2021 21:22:14 -0400 Subject: [PATCH] add link to libera.chat --- components/SocialLinks.tsx | 47 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) 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 ( + + + + + + + + + + + + + ); +}