@@ -4,6 +4,12 @@ export type sponsorInfo = {
44 alt : string ;
55} ;
66
7+ export type socialInfo = {
8+ href : string ;
9+ src : string ;
10+ alt : string ;
11+ } ;
12+
713export const diamondLinks : sponsorInfo [ ] = [
814 {
915 href : 'https://www.janestreet.com/' ,
@@ -102,3 +108,41 @@ export const silverLinks: sponsorInfo[] = [
102108 alt : 'Canva logo'
103109 }
104110] ;
111+
112+ export const socialLinks : socialInfo [ ] = [
113+ {
114+ href : 'https://bit.ly/CSESocDiscord' ,
115+ src : 'assets/discord_logo.svg' ,
116+ alt : 'Discord'
117+ } ,
118+ {
119+ href : 'https://www.facebook.com/csesoc/' ,
120+ src : 'assets/fb_logo.svg' ,
121+ alt : 'Facebook'
122+ } ,
123+ {
124+ href : 'https://twitter.com/csesoc?lang=en' ,
125+ src : 'assets/x_twitter_icon.svg' ,
126+ alt : 'X/Twitter'
127+ } ,
128+ {
129+ href : 'https://www.youtube.com/@CSESocUNSW' ,
130+ src : 'assets/youtube_logo.svg' ,
131+ alt : 'Youtube'
132+ } ,
133+ {
134+ href : 'https://www.instagram.com/csesoc_unsw/?hl=en' ,
135+ src : 'assets/instagram_logo.svg' ,
136+ alt : 'Instagram'
137+ } ,
138+ {
139+ href : 'https://www.tiktok.com/@csesoc?lang=en' ,
140+ src : 'assets/tiktok_logo.svg' ,
141+ alt : 'TikTok'
142+ } ,
143+ {
144+ href : 'https://www.linkedin.com/company/csesoc?originalSubdomain=au' ,
145+ src : 'assets/linkedin_logo.svg' ,
146+ alt : 'LinkedIn'
147+ }
148+ ] ;
0 commit comments