diff --git a/src/components/Social.astro b/src/components/Social.astro index 2942213..4cd6aed 100644 --- a/src/components/Social.astro +++ b/src/components/Social.astro @@ -4,6 +4,7 @@ const discord = "https://discord.com/users/383507911160233985"; const github = "https://github.com/BuyMyMojo"; const steam = "https://steamcommunity.com/profiles/76561198227003516"; const bsky = "https://bsky.app/profile/did:plc:bzrn33tcfgjxnsanvg6py3xn"; +const bskybackup = "https://bsky.app/profile/did:plc:valun42etpm73we7bgyh64ge"; const bskyArchive = "https://buymymojo.net/bsky/"; import { Icon } from "astro-icon/components"; @@ -18,6 +19,13 @@ import { Icon } from "astro-icon/components"; >@aria.coffee (Click to copy DID) +
  • + Bluesky Backup - +
  • Discord const bskypid = document.querySelector("#bskypid"); + const bskypidbackup = document.querySelector("#bskypid-backup"); if (bskypid != null) { bskypid.addEventListener("click", () => { navigator.clipboard.writeText("did:plc:bzrn33tcfgjxnsanvg6py3xn"); }); } + + if (bskypidbackup != null) { + bskypidbackup.addEventListener("click", () => { + navigator.clipboard.writeText("did:plc:valun42etpm73we7bgyh64ge"); + }); + }