1
- import { siGithub , siReddit , siX } from 'simple-icons' ;
1
+ import { siGithub , siInstagram , siReddit , siX } from 'simple-icons' ;
2
2
import { SimpleIconComponent } from './browser-support' ;
3
3
4
4
interface SocialLink {
@@ -10,11 +10,23 @@ interface SocialLink {
10
10
}
11
11
12
12
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
+ } ,
13
25
{
14
26
label : 'Reddit' ,
15
27
link : 'https://www.reddit.com/r/UXPatterns/' ,
16
28
shortlink : 'https://ddias.link/ux-reddit' ,
17
- rel : 'me' ,
29
+ rel : 'me' as const ,
18
30
icon : (
19
31
< SimpleIconComponent
20
32
icon = { siReddit }
@@ -26,7 +38,7 @@ export const SOCIAL_LINKS: SocialLink[] = [
26
38
label : 'X' ,
27
39
link : 'https://x.com/thedaviddias' ,
28
40
shortlink : 'https://x.com/thedaviddias' ,
29
- rel : 'me' ,
41
+ rel : 'me' as const ,
30
42
icon : (
31
43
< SimpleIconComponent
32
44
icon = { siX }
@@ -38,13 +50,13 @@ export const SOCIAL_LINKS: SocialLink[] = [
38
50
label : 'LinkedIn' ,
39
51
link : 'https://www.linkedin.com/in/thedaviddias' ,
40
52
shortlink : 'https://www.linkedin.com/in/thedaviddias/' ,
41
- rel : 'me' ,
53
+ rel : 'me' as const ,
42
54
} ,
43
55
{
44
56
label : 'Github' ,
45
57
link : 'https://github.com/thedaviddias' ,
46
58
shortlink : 'https://github.com/thedaviddias' ,
47
- rel : 'me' ,
59
+ rel : 'me' as const ,
48
60
icon : (
49
61
< SimpleIconComponent
50
62
icon = { siGithub }
0 commit comments