Skip to content

Commit b157bcb

Browse files
committed
add fake event data
1 parent e63b0aa commit b157bcb

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

frontend/public/data/data.ts

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@ export type socialInfo = {
1010
alt: string;
1111
};
1212

13+
export type eventInfo = {
14+
title: string;
15+
startTime: string;
16+
endTime: string;
17+
location: string;
18+
description: string;
19+
image: string;
20+
link: string;
21+
};
22+
1323
export const diamondLinks: sponsorInfo[] = [
1424
{
1525
href: 'https://www.janestreet.com/',
@@ -151,3 +161,24 @@ export const socialLinks: socialInfo[] = [
151161
alt: 'LinkedIn'
152162
}
153163
];
164+
165+
export const events: eventInfo[] = [
166+
{
167+
title: 'Rookie Code Rumble - Capture The Flag (CTF) Competition',
168+
startTime: 'Wednesday, 19 June 2024 16:00:00',
169+
endTime: '23:45 22 June 2024',
170+
location: 'Columbo Theatre A, UNSW',
171+
description: 'Want to learn how to hack the mainframe❓ Want to explore security❓ Join us for the Rookie Code Rumble Capture The Flag on June 19th‼️ 🚀\nWin prizes from a $450 Prize Pool🏆 Teams of up to 3 allowed. Beginners welcomed, no prior experience required and students who haven\'t done security courses are especially welcomed.',
172+
image: 'https://scontent.fsyd10-1.fna.fbcdn.net/v/t39.30808-6/448249337_964318925477719_4689171588021736660_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=5f2048&_nc_ohc=f7DlIly-QDgQ7kNvgHT9Fw9&_nc_ht=scontent.fsyd10-1.fna&oh=00_AYDFXHym0otALqZ18_Rxfvm2eLtQ4E8MgmojLxFhsG_H4w&oe=6670BC75',
173+
link: 'https://www.facebook.com/events/427443166914907',
174+
},
175+
{
176+
title: 'Open Dev Workshop 1',
177+
startTime: 'Thursday, 13 June 2024 14:00:00',
178+
endTime: 'Thursday, 13 June 2024 16:00:00',
179+
location: 'Civil Engineering Building 102, UNSW',
180+
description: 'Feeling the FOMO to start your own side projects😖?? But don\'t know where or how to start??🧐 We have the solution for you: Open Dev Workshop!! 💻\nOpen Dev Workshop is an introductory workshop focusing on HTML/CSS and Javascript. With no prior knowledge required, bring your laptop and an eagerness to learn.❤️‍🔥\nDon\'t miss out on this exciting opportunity and let\'s turn your ideas into reality, one line at a time!! 🔥',
181+
image: 'https://scontent.fsyd10-2.fna.fbcdn.net/v/t39.30808-6/446935726_959621305947481_1708375961476055751_n.jpg?stp=dst-jpg_s960x960&_nc_cat=102&ccb=1-7&_nc_sid=5f2048&_nc_ohc=Eb--uYtnevgQ7kNvgEtNpvA&_nc_ht=scontent.fsyd10-2.fna&oh=00_AYA3B55iger5ZGu1aa1gvZHfLKrfk7YZ2g7QxaqSZf9q2A&oe=6670DED6',
182+
link: 'https://www.facebook.com/events/1020624239688532',
183+
}
184+
];

0 commit comments

Comments
 (0)