-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocialInfos.ts
43 lines (42 loc) · 952 Bytes
/
socialInfos.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
export type socialInfo = {
href: string;
src: string;
alt: string;
};
export const socialLinks: socialInfo[] = [
{
href: 'https://bit.ly/CSESocDiscord',
src: '/assets/discord_logo.svg',
alt: 'Discord'
},
{
href: 'https://www.facebook.com/csesoc/',
src: '/assets/fb_logo.svg',
alt: 'Facebook'
},
{
href: 'https://twitter.com/csesoc?lang=en',
src: '/assets/x_twitter_icon.svg',
alt: 'X/Twitter'
},
{
href: 'https://www.youtube.com/@CSESocUNSW',
src: '/assets/youtube_logo.svg',
alt: 'Youtube'
},
{
href: 'https://www.instagram.com/csesoc_unsw/?hl=en',
src: '/assets/instagram_logo.svg',
alt: 'Instagram'
},
{
href: 'https://www.tiktok.com/@csesoc?lang=en',
src: '/assets/tiktok_logo.svg',
alt: 'TikTok'
},
{
href: 'https://www.linkedin.com/company/csesoc?originalSubdomain=au',
src: '/assets/linkedin_logo.svg',
alt: 'LinkedIn'
}
];