mirror of
https://git.aria.coffee/BuyMyAria/aria.coffee.git
synced 2025-06-16 01:09:57 +00:00
75 lines
2.4 KiB
Text
75 lines
2.4 KiB
Text
---
|
|
const twitterArchive = "https://buymymojo.net/twitter/";
|
|
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";
|
|
---
|
|
|
|
<h1>Places to find and/or contact me:</h1>
|
|
<ul class="list-disc p-4">
|
|
<li>
|
|
<a href={bsky} class="p-1" target="_blank"
|
|
><Icon name="meteor-icons:bluesky" class={"svg-inline"} /> Bluesky</a
|
|
> - <button id="bskypid"
|
|
>@aria.coffee (Click to copy DID)</button
|
|
>
|
|
</li>
|
|
<li>
|
|
<a href={bskybackup} class="p-1" target="_blank"
|
|
><Icon name="meteor-icons:bluesky" class={"svg-inline"} /> Bluesky Backup</a
|
|
> - <button id="bskypid-backup"
|
|
>@aria.pds.witchcraft.systems (Click to copy DID)</button
|
|
>
|
|
</li>
|
|
<li>
|
|
<a href={discord} target="_blank"
|
|
><Icon name="meteor-icons:discord" class={"svg-inline"}/> Discord</a
|
|
> - @buymymojo
|
|
</li>
|
|
<li>
|
|
<a href={github} target="_blank"
|
|
><Icon name="meteor-icons:github" class={"svg-inline"}/> GitHub</a
|
|
> - @BuyMyMojo
|
|
</li>
|
|
<li>
|
|
<a href={steam} target="_blank"
|
|
><Icon name="tabler:brand-steam" class={"svg-inline"}/> Steam</a
|
|
> - @BuyMyMojo
|
|
</li>
|
|
</ul>
|
|
<br />
|
|
<h2>Archives:</h2>
|
|
<ul class="list-disc p-4">
|
|
<li>
|
|
<a href={bskyArchive} class="p-1" target="_blank"
|
|
><i class="fa-brands fa-bluesky"></i> Bluesky(Archive)</a
|
|
>
|
|
</li>
|
|
<li>
|
|
<a href={twitterArchive} class="p-1" target="_blank"
|
|
><i class="fa-brands fa-twitter"></i> Twitter(Archive)</a
|
|
>
|
|
</li>
|
|
</ul>
|
|
|
|
<script>
|
|
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");
|
|
});
|
|
}
|
|
</script>
|