Skip to content

Commit f779fb8

Browse files
authored
feat: refactor remove heading bold (#208)
1 parent 1d26b41 commit f779fb8

File tree

31 files changed

+1922
-912
lines changed

31 files changed

+1922
-912
lines changed

app/_components/social.tsx

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { siGithub, siReddit, siX } from 'simple-icons';
1+
import { siGithub, siInstagram, siReddit, siX } from 'simple-icons';
22
import { SimpleIconComponent } from './browser-support';
33

44
interface SocialLink {
@@ -10,11 +10,23 @@ interface SocialLink {
1010
}
1111

1212
export const SOCIAL_LINKS: SocialLink[] = [
13+
{
14+
label: 'Instagram',
15+
link: 'https://www.instagram.com/uxpatternsfordevs',
16+
shortlink: 'https://www.instagram.com/uxpatternsfordevs',
17+
rel: 'me' as const,
18+
icon: (
19+
<SimpleIconComponent
20+
icon={siInstagram}
21+
className="w-10 h-10 p-1.5 border rounded-full transition-colors duration-200 hover:bg-gray-100 dark:hover:bg-gray-800 border-gray-200 dark:border-gray-700"
22+
/>
23+
),
24+
},
1325
{
1426
label: 'Reddit',
1527
link: 'https://www.reddit.com/r/UXPatterns/',
1628
shortlink: 'https://ddias.link/ux-reddit',
17-
rel: 'me',
29+
rel: 'me' as const,
1830
icon: (
1931
<SimpleIconComponent
2032
icon={siReddit}
@@ -26,7 +38,7 @@ export const SOCIAL_LINKS: SocialLink[] = [
2638
label: 'X',
2739
link: 'https://x.com/thedaviddias',
2840
shortlink: 'https://x.com/thedaviddias',
29-
rel: 'me',
41+
rel: 'me' as const,
3042
icon: (
3143
<SimpleIconComponent
3244
icon={siX}
@@ -38,13 +50,13 @@ export const SOCIAL_LINKS: SocialLink[] = [
3850
label: 'LinkedIn',
3951
link: 'https://www.linkedin.com/in/thedaviddias',
4052
shortlink: 'https://www.linkedin.com/in/thedaviddias/',
41-
rel: 'me',
53+
rel: 'me' as const,
4254
},
4355
{
4456
label: 'Github',
4557
link: 'https://github.com/thedaviddias',
4658
shortlink: 'https://github.com/thedaviddias',
47-
rel: 'me',
59+
rel: 'me' as const,
4860
icon: (
4961
<SimpleIconComponent
5062
icon={siGithub}

0 commit comments

Comments
 (0)