From f8cde46d6aa6251311159e56586f3657e3daa18d Mon Sep 17 00:00:00 2001 From: Max Erenberg Date: Tue, 7 Sep 2021 23:07:01 -0400 Subject: [PATCH] add link to libera.chat (#303) Closes #285. Reviewed-on: https://git.csclub.uwaterloo.ca/www/www-new/pulls/303 Reviewed-by: Aditya Thakral Co-authored-by: Max Erenberg Co-committed-by: Max Erenberg --- components/SocialLinks.tsx | 93 +++++++++++++++++++++++++++++++++++++- 1 file changed, 92 insertions(+), 1 deletion(-) 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 ( + + + + + + + + + + + + + ); +}