Skip to content

Commit 59fe8c3

Browse files
authored
feat: add bluesky link
1 parent 394c3f2 commit 59fe8c3

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

src/components/Footer.astro

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
// i would happily use regular fedi/mail icons but simple-icons doesn't have either. better than just calling it all mastodon 🧌
3+
import BlueskyIcon from "../components/icons/Bluesky.astro";
34
import FirefishIcon from "../components/icons/Firefish.astro";
45
import GitHubIcon from "../components/icons/GitHub.astro";
56
import GmailIcon from "../components/icons/Gmail.astro";
@@ -16,6 +17,10 @@ const today = new Date();
1617
<span class="sr-only">Follow me on the Fediverse</span>
1718
<FirefishIcon />
1819
</a>
20+
<a href="https://rexo1183.bsky.social" target="_blank">
21+
<span class="sr-only">Follow me on Bluesky</span>
22+
<BlueskyIcon />
23+
</a>
1924
<a href="https://github.com/rexogamer" target="_blank">
2025
<span class="sr-only">View my GitHub profile</span>
2126
<GitHubIcon />

src/components/icons/Bluesky.astro

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
const props = Astro.props
3+
---
4+
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" {...props}>
5+
<path fill="currentColor" d="M12 10.8c-1.087-2.114-4.046-6.053-6.798-7.995C2.566.944 1.561 1.266.902 1.565C.139 1.908 0 3.08 0 3.768c0 .69.378 5.65.624 6.479c.815 2.736 3.713 3.66 6.383 3.364q.204-.03.415-.056q-.207.033-.415.056c-3.912.58-7.387 2.005-2.83 7.078c5.013 5.19 6.87-1.113 7.823-4.308c.953 3.195 2.05 9.271 7.733 4.308c4.267-4.308 1.172-6.498-2.74-7.078a9 9 0 0 1-.415-.056q.21.026.415.056c2.67.297 5.568-.628 6.383-3.364c.246-.828.624-5.79.624-6.478c0-.69-.139-1.861-.902-2.206c-.659-.298-1.664-.62-4.3 1.24C16.046 4.748 13.087 8.687 12 10.8" />
6+
</svg>

0 commit comments

Comments
 (0)