Skip to content

Commit 42cd65f

Browse files
authored
add bluesky link (#812)
1 parent a9552a3 commit 42cd65f

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading

packages/site-kit/src/lib/nav/MobileMenu.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@
146146

147147
<ul>
148148
<li><a href="/chat">Discord</a></li>
149+
<li><a href="https://bsky.app/profile/sveltesociety.dev">Bluesky</a></li>
149150
<li><a href="https://github.com/sveltejs/svelte">GitHub</a></li>
150151
</ul>
151152
</div>

packages/site-kit/src/lib/nav/Nav.svelte

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,11 @@ Top navigation bar for the application. It provides a slot for the left side, th
124124

125125
<div class="external-links">
126126
<a href="/chat" data-icon="discord" aria-label="Discord Chat"></a>
127+
<a
128+
href="https://bsky.app/profile/sveltesociety.dev"
129+
data-icon="bluesky"
130+
aria-label="Svelte Society on Bluesky"
131+
></a>
127132
<a href="https://github.com/sveltejs/svelte" data-icon="github" aria-label="GitHub Repo"
128133
></a>
129134
</div>
@@ -385,6 +390,15 @@ Top navigation bar for the application. It provides a slot for the left side, th
385390
}
386391
}
387392
393+
[data-icon='bluesky'] {
394+
width: 3rem;
395+
background-image: url($lib/icons/bluesky-light.svg);
396+
397+
:global(.dark) & {
398+
background-image: url($lib/icons/bluesky-dark.svg);
399+
}
400+
}
401+
388402
[data-icon='github'] {
389403
width: 3rem;
390404
background-image: url($lib/icons/github-light.svg);

0 commit comments

Comments
 (0)