Skip to content

Commit 59545f0

Browse files
authored
Merge pull request #104 from vladh/main
Add Bluesky and Mastodon to footer
2 parents f5dbf91 + 67665e3 commit 59545f0

File tree

5 files changed

+28
-2
lines changed

5 files changed

+28
-2
lines changed
Lines changed: 6 additions & 0 deletions
Loading

src/components/elements/icon/custom/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ import ShippingFast from './shipping-fast.svg';
2020
import SquareJSLogo from './square-js-logo.svg';
2121
import TwitterX from './twitter-x.svg';
2222
import YCombinator from './ycombinator-logo.svg';
23+
import Bluesky from './bluesky.svg';
24+
import Mastodon from './mastodon.svg';
2325

2426
export {
2527
AppleLogo,
@@ -44,4 +46,6 @@ export {
4446
SquareJSLogo,
4547
TwitterX,
4648
YCombinator,
49+
Bluesky,
50+
Mastodon,
4751
};
Lines changed: 6 additions & 0 deletions
Loading

src/components/elements/icon/index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ import {
7070
ChromeLogo,
7171
YCombinator,
7272
ProductHuntLogo,
73+
Bluesky,
74+
Mastodon,
7375
} from './custom';
7476

7577
export {
@@ -139,5 +141,7 @@ export {
139141
Trash,
140142
XLogo,
141143
CrosshairSimple,
142-
DeviceMobile
144+
DeviceMobile,
145+
Bluesky,
146+
Mastodon,
143147
};

src/components/layout/footer/index.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
} from './footer.styles';
1212

1313
import { Container } from '@/components/elements/container';
14-
import { Github, HalfColoredLogo, TwitterX } from '@/components/elements/icon';
14+
import { Github, HalfColoredLogo, TwitterX, Bluesky, Mastodon } from '@/components/elements/icon';
1515
import { Link } from '@/components/elements/link';
1616
import { SquareIcon } from '@/components/elements/square-icon';
1717
import Stack from '@/components/elements/stack';
@@ -50,6 +50,12 @@ export const Footer = ({ withoutNewsletter }: FooterProps) => {
5050
<Link href="https://github.com/httptoolkit" title="Github" aria-label="Github">
5151
<SquareIcon $size="small" icon={Github} />
5252
</Link>
53+
<Link href="https://bsky.app/profile/httptoolkit.com" title="Bluesky" aria-label="Bluesky">
54+
<SquareIcon $size="small" icon={Bluesky} />
55+
</Link>
56+
<Link href="https://mastodon.social/@httptoolkit" title="Mastodon" aria-label="Mastodon">
57+
<SquareIcon $size="small" icon={Mastodon} />
58+
</Link>
5359
<Link href="https://twitter.com/httptoolkit" title="Twitter" aria-label="Twitter">
5460
<SquareIcon $size="small" icon={TwitterX} />
5561
</Link>

0 commit comments

Comments
 (0)