From 93b30138369749fb9b50e35696aa4058a82dd1f6 Mon Sep 17 00:00:00 2001 From: Daniel Strano Date: Mon, 3 Mar 2025 14:25:50 -0500 Subject: [PATCH 1/3] Update Twitter/X handle (#658) --- src/data/social.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/social.json b/src/data/social.json index 347a3a73..0c3bad90 100644 --- a/src/data/social.json +++ b/src/data/social.json @@ -1,5 +1,5 @@ { - "twitter": "https://twitter.com/unitaryfund", + "twitter": "https://twitter.com/unitaryfdn", "twitch": "https://twitch.tv/unitaryfund", "youtube": "https://www.youtube.com/channel/UCDbDLAzGRTHnhkoMMOX7D1A", "discord": "http://discord.unitary.foundation/" From 593da27932a42fb1ccd1b72488e8a775f41203bd Mon Sep 17 00:00:00 2001 From: WrathfulSpatula Date: Mon, 3 Mar 2025 15:18:26 -0500 Subject: [PATCH 2/3] Add Bluesky --- public/images/social-bluesky.png | Bin 0 -> 975 bytes src/components/Layout/FloatingSocial.astro | 1 + src/data/social.json | 1 + 3 files changed, 2 insertions(+) create mode 100644 public/images/social-bluesky.png diff --git a/public/images/social-bluesky.png b/public/images/social-bluesky.png new file mode 100644 index 0000000000000000000000000000000000000000..b3c05c26079f247a2f201d176a69cb5abbceb8f5 GIT binary patch literal 975 zcmV;=12FuFP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D17t}=K~!i%&6&$@ zPeByNKkcuot!j!!C?!Ze(hXXPAi<(GbcMtQ|A2JG(j(;$5F3wZSd@qzk(7vyu#z<5 zkxCFHQZ0Vksz+bH*5+L1cRIJfJ9ln>^-VsDJ9FlobMM?cGj}G%KNSG0gmK`9QTIP+ zF|ZCO0s3`iCGbEJp8ztzbKnRtM;qr+xx|T0rffq4{ZVlEOBzN0_g@_5ruT{1UywIzO?^bWPtg| z5E=|ou6zKN=!_gx1AMgjjlvL629N@VEe28P2pl=89C&K+7nOb)ZUN}F7`SlLah@oU zHrkI1?@Wgs76Vs~nhta5n5DfdPfUmH76Vs?fz77V5N!cQE$v-t$9RW&vtz_kF>p<< zQIsly>p+pNh@oB*z5#%hz&TxL=q#{Y7sgZ%#tn35*LmqMuv-@bd!#NYW#zoj@{alN zUM<5bJjVMl_G0uvmk}%pEdx#&*T+34Je#tH(JGJGIE*3ryIYgcsADoF6X9PK0&gvb zzT6OWxi6iziSwkz(3i|K^y~z1LMM;>3B_3z=9{$SYSjVb$NqmL1MJsHYczUi{`ioW(i`x=vRzD;KElupi71+x9J3uu+z8L=c1 zml5%K8EBMPlZHtjH3EIP`}N?h?qLB3!T#>_ysHy?3 x0^h{PcX>EX+Hg8mEUQ(YjoKpdQLHPX>JNZ-5M-oV2$}!@002ovPDHLkV1k`bsQCZ@ literal 0 HcmV?d00001 diff --git a/src/components/Layout/FloatingSocial.astro b/src/components/Layout/FloatingSocial.astro index a19fcfde..5408fe09 100644 --- a/src/components/Layout/FloatingSocial.astro +++ b/src/components/Layout/FloatingSocial.astro @@ -2,6 +2,7 @@ import { twitter, twitch, youtube, discord } from '~/data/social.json'; const socials = [ + ['bluesky', bluesky], ['twitter', twitter], ['twitch', twitch], ['youtube', youtube], diff --git a/src/data/social.json b/src/data/social.json index 0c3bad90..0a3ececd 100644 --- a/src/data/social.json +++ b/src/data/social.json @@ -1,4 +1,5 @@ { + "bluesky": "https://bsky.app/profile/unitaryfoundation.bsky.social", "twitter": "https://twitter.com/unitaryfdn", "twitch": "https://twitch.tv/unitaryfund", "youtube": "https://www.youtube.com/channel/UCDbDLAzGRTHnhkoMMOX7D1A", From a4e06abd53a40ab33e52615784f01953808ec7b7 Mon Sep 17 00:00:00 2001 From: WrathfulSpatula Date: Mon, 3 Mar 2025 15:22:40 -0500 Subject: [PATCH 3/3] Forgot Bluesky import --- src/components/Layout/FloatingSocial.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Layout/FloatingSocial.astro b/src/components/Layout/FloatingSocial.astro index 5408fe09..b45ff702 100644 --- a/src/components/Layout/FloatingSocial.astro +++ b/src/components/Layout/FloatingSocial.astro @@ -1,5 +1,5 @@ --- -import { twitter, twitch, youtube, discord } from '~/data/social.json'; +import { bluesky, twitter, twitch, youtube, discord } from '~/data/social.json'; const socials = [ ['bluesky', bluesky],