Skip to content

Commit 09d7049

Browse files
authored
docs: include Bluesky profile in social links (typescript-eslint#10296)
* feat: add to svg * feat: add the Bluesky * chore: add cspell like Bluesky * fix: icon * fix: sort social links
1 parent a76fa6e commit 09d7049

File tree

5 files changed

+17
-1
lines changed

5 files changed

+17
-1
lines changed

.cspell.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
"bivariant",
7373
"Bjorn",
7474
"blockless",
75+
"Bluesky",
7576
"blurple",
7677
"bradzacher",
7778
"Burzyński",

docs/contributing/Issues.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ You can instead:
4848

4949
- Ask in our [Discord server](https://discord.gg/FSxKq8Tdyg)'s `#help` server
5050
- Ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript-eslint 'StackOverflow questions tagged with typescript-eslint') using the `typescript-eslint` tag
51-
- Publicly toot [@tseslint on Mastodon](https://fosstodon.org/@tseslint) or tweet [@tseslint on Twitter](https://twitter.com/tseslint)
51+
- Publicly toot [@tseslint on Mastodon](https://fosstodon.org/@tseslint), tweet [@tseslint on Twitter](https://twitter.com/tseslint), or post [@typescript-eslint.io on Bluesky](https://bsky.app/profile/typescript-eslint.io)
5252

5353
> Note that requests to add documentation _are_ allowed, even encouraged! 📝
5454

packages/website/docusaurus.config.mts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@ const themeConfig: AlgoliaThemeConfig & ThemeCommonConfig = {
6868
links: [
6969
{
7070
items: [
71+
{
72+
className: 'image-link bluesky-link social-link-icon',
73+
href: 'https://bsky.app/profile/typescript-eslint.io',
74+
label: 'Bluesky',
75+
rel: 'me noopener',
76+
},
7177
{
7278
className: 'image-link discord-link social-link-icon',
7379
href: 'https://discord.gg/FSxKq8Tdyg',

packages/website/src/css/custom.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,10 @@ html[data-theme='dark'] .image-link::before {
111111
background: url('/img/twitter.svg') no-repeat;
112112
}
113113

114+
.bluesky-link::before {
115+
background: url('/img/bluesky.svg') no-repeat;
116+
}
117+
114118
.header-image-link:hover {
115119
opacity: 0.6;
116120
}
Lines changed: 5 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)