Wowie what a gay little website for my gay little self aria.coffee
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add backup bsky to socials

Aria ecc6cbd3 16f233de

+15
+15
src/components/Social.astro
··· 4 4 const github = "https://github.com/BuyMyMojo"; 5 5 const steam = "https://steamcommunity.com/profiles/76561198227003516"; 6 6 const bsky = "https://bsky.app/profile/did:plc:bzrn33tcfgjxnsanvg6py3xn"; 7 + const bskybackup = "https://bsky.app/profile/did:plc:valun42etpm73we7bgyh64ge"; 7 8 const bskyArchive = "https://buymymojo.net/bsky/"; 8 9 9 10 import { Icon } from "astro-icon/components"; ··· 16 17 ><Icon name="meteor-icons:bluesky" class={"svg-inline"} /> Bluesky</a 17 18 > - <button id="bskypid" 18 19 >@aria.coffee (Click to copy DID)</button 20 + > 21 + </li> 22 + <li> 23 + <a href={bskybackup} class="p-1" target="_blank" 24 + ><Icon name="meteor-icons:bluesky" class={"svg-inline"} /> Bluesky Backup</a 25 + > - <button id="bskypid-backup" 26 + >@aria.pds.witchcraft.systems (Click to copy DID)</button 19 27 > 20 28 </li> 21 29 <li> ··· 51 59 52 60 <script> 53 61 const bskypid = document.querySelector("#bskypid"); 62 + const bskypidbackup = document.querySelector("#bskypid-backup"); 54 63 55 64 if (bskypid != null) { 56 65 bskypid.addEventListener("click", () => { 57 66 navigator.clipboard.writeText("did:plc:bzrn33tcfgjxnsanvg6py3xn"); 67 + }); 68 + } 69 + 70 + if (bskypidbackup != null) { 71 + bskypidbackup.addEventListener("click", () => { 72 + navigator.clipboard.writeText("did:plc:valun42etpm73we7bgyh64ge"); 58 73 }); 59 74 } 60 75 </script>