Skip to content

Commit 9ca8cc7

Browse files
committed
Add Bluesky to socials
1 parent 0c25139 commit 9ca8cc7

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

app/components/icons/bluesky.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/components/icons/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ export { default as Dev } from './dev'
1010
export { default as Check } from './check'
1111
export { default as Copy } from './copy'
1212
export { default as Mastodon } from './mastodon'
13+
export { default as Bluesky } from './bluesky'

app/components/social-links/index.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import Link from '@components/link';
22
import { GitHub, Mail, RSS, Mastodon } from '@components/icons';
33
import Tooltip from '@components/tooltip';
44
import styles from './social-links.module.css';
5+
import Bluesky from '@components/icons/bluesky';
56

67
type SocialButtonProps = {
78
href: string;
@@ -73,6 +74,19 @@ export default function Socials() {
7374
tooltip="Mastodon"
7475
rel="me"
7576
/>
77+
<SocialButton
78+
href="https://bsky.app/profile/rivea0.bsky.social"
79+
icon={
80+
<Bluesky
81+
width={18}
82+
height={20}
83+
strokeWidth={0}
84+
fillColor={`var(--icon-generic-color)`}
85+
color={`var(--icon-generic-color)`}
86+
/>
87+
}
88+
tooltip="Bluesky"
89+
/>
7690
</div>
7791
);
7892
}

0 commit comments

Comments
 (0)