From 2e655fabbde2e2ca46e7822cfcacff0f3e46f423 Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Tue, 22 Oct 2024 21:16:47 +0000 Subject: [PATCH] feat: add more socials (#29) Reviewed-on: https://codeberg.org/nhcarrigan/portfolio/pulls/29 Co-authored-by: Naomi Carrigan Co-committed-by: Naomi Carrigan --- src/config/Socials.ts | 45 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/src/config/Socials.ts b/src/config/Socials.ts index d219bfb..6b46827 100644 --- a/src/config/Socials.ts +++ b/src/config/Socials.ts @@ -20,6 +20,7 @@ import { faGithub, faGooglePlus, faHashnode, + faInstagram, faItchIo, faLinkedinIn, faMastodon, @@ -33,9 +34,13 @@ import { faSteam, faStripe, faTelegramPlane, + faThreads, + faTiktok, + faTumblr, faTwitch, faWhatsapp, faWordpress, + faYoutube, } from "@fortawesome/free-brands-svg-icons"; import { faSnapchat } from "@fortawesome/free-brands-svg-icons/faSnapchat"; import { faXTwitter } from "@fortawesome/free-brands-svg-icons/faXTwitter"; @@ -488,4 +493,44 @@ export const Socials: { background: "#FF6D00", color: "#FFF", }, + { + label: "Tumblr", + link: "https://www.tumblr.com/naomi-lgbt", + alt: "Tumblr Logo", + icon: faTumblr, + background: "#36465D", + color: "#FFF", + }, + { + label: "YouTube", + link: "https://www.youtube.com/@naomilgbt", + alt: "YouTube Logo", + icon: faYoutube, + background: "#FF0000", + color: "#FFF", + }, + { + label: "Tiktok", + link: "https://www.tiktok.com/@naomilgbt", + alt: "Tiktok Logo", + icon: faTiktok, + background: "#000", + color: "#FFF", + }, + { + label: "Threads", + link: "https://www.threads.net/@naomi.lgbt", + alt: "Threads Logo", + icon: faThreads, + background: "#000", + color: "#FFF", + }, + { + label: "Instagram", + link: "https://www.instagram.com/naomi.lgbt/", + alt: "Instagram Logo", + icon: faInstagram, + background: "#C13584", + color: "#FFF", + } ];