From acb4d718c2d8abd152a6c86d493c385c368cda19 Mon Sep 17 00:00:00 2001 From: Angus Forrest Date: Fri, 1 Nov 2024 18:27:17 +1300 Subject: [PATCH 1/2] Added Youtube and Orcid to the socialAppIcons --- components.tsx | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/components.tsx b/components.tsx index d2c02ed..cb0c5ac 100644 --- a/components.tsx +++ b/components.tsx @@ -17,6 +17,8 @@ const socialAppIcons = new Map([ ["instagram.com", IconInstagram], ["linkedin.com", IconLinkedin], ["mastodon.social", IconMastodon], + ["youtube.com", IconYoutube], + ["orcid.org", IconOrcid], ]); interface IndexProps { @@ -455,3 +457,36 @@ function IconMastodon() { ); } + +function IconYoutube() { + return ( + + + + ); +} +function IconOrcid() { + return ( + + + + ); +} + + From 549818af04e2969e73c98631dd01d297b569fbc6 Mon Sep 17 00:00:00 2001 From: Angus Forrest Date: Fri, 1 Nov 2024 18:30:38 +1300 Subject: [PATCH 2/2] fixed format --- components.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/components.tsx b/components.tsx index cb0c5ac..90fdcbf 100644 --- a/components.tsx +++ b/components.tsx @@ -473,6 +473,7 @@ function IconYoutube() { ); } + function IconOrcid() { return ( ); } - -