-
Notifications
You must be signed in to change notification settings - Fork 0
/
links.ts
71 lines (70 loc) · 1.27 KB
/
links.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import {
FaBluesky,
FaDiscord,
FaGithub,
FaHouse,
FaInstagram,
FaLinkedin,
FaTelegram,
FaTwitch,
FaUserGroup,
FaXTwitter,
FaYoutube,
} from 'react-icons/fa6'
export const links = [
{
Icon: FaHouse,
name: 'Personal Website',
url: 'https://hendraaagil.dev',
},
{
Icon: FaDiscord,
name: 'Discord Server',
url: 'https://discord.gg/VVvmVFyVE6',
},
{
Icon: FaUserGroup,
name: 'Book Session (EN/ID)',
url: 'https://cal.com/hendraaagil/30-minutes-session',
},
{
Icon: FaGithub,
name: 'GitHub',
url: 'https://github.com/hendraaagil',
},
{
Icon: FaLinkedin,
name: 'LinkedIn',
url: 'https://linkedin.com/in/hendraaagil',
},
{
Icon: FaTelegram,
name: 'Telegram',
url: 'https://t.me/hendraaagil',
},
{
Icon: FaInstagram,
name: 'Instagram',
url: 'https://instagram.com/hendraaagil',
},
{
Icon: FaBluesky,
name: 'Bluesky',
url: 'https://bsky.app/profile/hendraaagil.dev',
},
{
Icon: FaXTwitter,
name: 'X (Twitter)',
url: 'https://twitter.com/hendraaagil',
},
{
Icon: FaTwitch,
name: 'Twitch',
url: 'https://twitch.tv/hendraaagil',
},
{
Icon: FaYoutube,
name: 'YouTube',
url: 'https://youtube.com/@hendraaagil',
},
]