-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.ts
480 lines (467 loc) · 16.3 KB
/
data.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
import {
CoPresent,
EmojiObjects as Lightbulb,
Facebook,
GitHub,
Groups,
Instagram,
LinkedIn,
School,
FlightTakeoff,
} from "@mui/icons-material";
import { RecruitmentProps } from "./app/(pages)/get-involved/page";
import DiscordIcon from "./components/nav/DiscordIcon";
import { ProjectCardProps } from "./components/ProjectCard";
import janeStreet from "./assets/jane_street.svg";
import rs from "./assets/rs.png";
import rp from "./assets/rp.png";
import sig from "./assets/sig.png";
import imc from "./assets/imc.png";
import sc from "./assets/sc.png";
import quickli from "./assets/quickli.png";
import zurich from "./assets/zurich.png";
import citadel from "./assets/citadel.png";
import optiver from "./assets/optiver.png";
import macquarie from "./assets/macquarie.svg";
import tiktok from "./assets/tiktok.svg";
import acnc from "./assets/acnc.png";
import cse from "./assets/CSE.jpeg";
import unsw from "./assets/unsw.png";
import arc from "./assets/arc.png";
import csesoc from "./assets/csesocwhite.png";
import { StaticImport } from "next/dist/shared/lib/get-img-props";
// General stuff:
// - All images need to go somewhere in /public, and the links are rooted at the /public folder
// - Available icons can be found here: https://mui.com/material-ui/material-icons/
// Pages and links displayed on nav
// Probably shouldn't be touched
export const navData = [
{ text: "About", href: "/about-us" },
{ text: "Projects", href: "/our-projects" },
{ text: "Starlight", href: "/starlight" },
{ text: "Get Involved", href: "/get-involved" },
{ text: "Sponsors", href: "/supporters" },
];
// Links to socials on nav
export const socialsData = [
{ Icon: GitHub, href: "https://github.com/devsoc-unsw" },
{ Icon: Facebook, href: "https://www.facebook.com/devsocUNSW/" },
{ Icon: Instagram, href: "https://www.instagram.com/devsoc_unsw/" },
{ Icon: LinkedIn, href: "https://www.linkedin.com/company/97436660/" },
{ Icon: DiscordIcon, href: "https://discord.com/invite/u9p34WUTcs" },
];
// Data displayed on the cards of the "Our Projects" page
// If "projectUrl" is not set, then the card will say 'Coming soon!'
export const projectData: Omit<ProjectCardProps, "trainee">[] = [
{
name: "Notangles",
desc: "An interactive drag-and-drop timetable planner designed to help UNSW students plan their ideal weekly timetable.",
logoUrl: "/projects/notangles/logo.png",
thumbnailUrl: "/projects/notangles/thumbnail.png",
projectUrl: "https://notangles.devsoc.app/",
status: "Operational",
},
{
name: "Circles",
desc: "A UNSW degree planner where you can explore and validate your degree structure.",
logoUrl: "/projects/circles/logo.png",
thumbnailUrl: "/projects/circles/thumbnail.png",
projectUrl: "https://circles.devsoc.app/",
status: "Operational",
},
{
name: "Unilectives",
desc: "Your one-stop shop for UNSW course and elective reviews.",
logoUrl: "/projects/unilectives/logo.png",
thumbnailUrl: "/projects/unilectives/thumbnail.png",
projectUrl: "https://unilectives.devsoc.app/",
status: "Operational",
},
{
name: "Structs.sh",
desc: "An interactive data structure and algorithm visualiser and educational platform for computer science students.",
logoUrl: "/projects/structs/logo.png",
thumbnailUrl: "/projects/structs/thumbnail.png",
projectUrl: "https://structs.sh/",
status: "Operational",
},
{
name: "Freerooms",
desc: "A tool to view the timetable of any room on campus, and find an available room that suits all your needs.",
logoUrl: "/projects/freerooms/logo.png",
thumbnailUrl: "/projects/freerooms/thumbnail.png",
projectUrl: "https://freerooms.devsoc.app/",
status: "Operational",
},
{
name: "Chaos",
desc: "A platform for simplifying applying and recruiting for student society subcommittees at UNSW.",
logoUrl: "/projects/chaos/logo.png",
thumbnailUrl: "/projects/chaos/thumbnail.png",
status: "Operational",
},
];
export const traineeProjectData: Omit<ProjectCardProps, "trainee">[] = [
{
name: "Groveify - 24T1 Trainee Project",
desc: "Groveify is a habit tracker and productivity manager that comes with a cute little world to keep you going!",
projectUrl: "https://groveify.com",
thumbnailUrl: "/traineeProjects/groveify.png",
},
{
name: "UNSWswipe (24T1)",
desc: "Find the perfect groupmate for your CSE course with this real-time messaging app.",
projectUrl: "https://github.com/devsoc-unsw/trainee-uranus-24t1",
thumbnailUrl: "/traineeProjects/unswipe.png",
},
{
name: "Moodify (23T3)",
desc: "Discover the power of personalized playlists tailored to your mood and activities with Moodify!",
projectUrl: "https://github.com/csesoc/trainee-3-23t3",
thumbnailUrl: "/traineeProjects/moodify.png",
},
{
name: "Waves (23T1)",
desc: "An app to help coordinate and arrange the 'when' and the 'where' of meetings.",
projectUrl: "https://github.com/csesoc/trainee-2-23t1",
thumbnailUrl: "/traineeProjects/waves.png",
},
{
name: "Loft (22T3)",
desc: "A customisable productivity app with multiple widgets such as a pomodoro timer, YouTube player and notepad.",
projectUrl: "https://github.com/csesoc/trainee-3-22t3",
thumbnailUrl: "/traineeProjects/loft.png",
},
];
export const starlightProjectData: Omit<ProjectCardProps, "trainee">[] = [
// {
// name: "Your project can be here!",
// desc: "Submissions are still open! Take your chance to showcase your favourite project through the link below!",
// projectUrl: "https://forms.gle/FMGM8YbrhB4kXKUe8",
// thumbnailUrl: "/starlightProjects/placeholder.jpg",
// },
{
name: "LemonOS",
desc: "Hobby operating system written to run on PC hardware. Contains features and software found in many modern operating systems. Can run software common on Linux/unix systems and even games like DOOM!",
projectUrl: "https://github.com/LemonOSProject/LemonOS",
thumbnailUrl: "/starlightProjects/24_16_LemonOS.png",
},
{
name: "Campus Collab - 24T1 Trainee Project",
desc: "The ultimate platform for connecting and collaborating with fellow students. Effortlessly create and manage project listings and discover exciting events on and off campus!",
projectUrl: "https://github.com/sohumshah2/campuscollab",
thumbnailUrl: "/starlightProjects/24_15_CampusCollab.jpg",
},
{
name: "FairShare",
desc: "A receipt sharing website aimed at helping making splitting bills easier!",
projectUrl: "https://fairshared.me",
thumbnailUrl: "starlightProjects/24_17_FairShare.png",
},
{
name: "Discord LeetCode Bot",
desc: "Get motivated to LeetCode with this customisable Discord bot!",
projectUrl: "https://github.com/Kaiqi-Liang/LeetCode-Daily",
thumbnailUrl: "/starlightProjects/24_14_DiscordLeetCodeBot.png",
},
{
name: "Quests - Stamp Rally Management System",
desc: "A mobile friendly stamp rally management system equipped with tasks, rooms, societies and a raffle developed for MegaLAN Events!",
projectUrl: "https://github.com/megalan-association/quests",
thumbnailUrl: "/starlightProjects/24_11_Quests.jpeg",
},
{
name: "Propagate.ink",
desc: "The website application for visual learners! Create mind maps with accompanying, details and aesthetic notes for each node!",
projectUrl: "https://www.propagate.ink",
thumbnailUrl: "/starlightProjects/24_10_Propagate.png",
},
{
name: "Way Home",
desc: "WayHome is a cross platform location sharing app. Share your location and memories of your favorite places with your pookies!",
projectUrl: "https://github.com/mt-fns/WayHome",
thumbnailUrl: "/starlightProjects/24_09_WayHome.png",
},
{
name: "Beem Memo Pay",
desc: "Capture memories from group expenses and conclude your trips by sharing your favorite moments. Make group expenses on Beem fun and social!",
projectUrl: "https://github.com/AI-Hack-2024/Beem-MemoPay",
thumbnailUrl: "/starlightProjects/24_08_BeemMemoPay.png",
},
{
name: "AchieveMint - 24T1 Trainee Project",
desc: "Enhance your productivity with this all-in-one organization website, featuring a to-do list, note-taking, reminders and a resting page to help you stay on track and achieve more!",
projectUrl: "https://github.com/devsoc-unsw/trainee-saturn-24t1",
thumbnailUrl: "/starlightProjects/24_07_AchieveMint.png",
},
{
name: "UNSWipe - 24T1 Trainee Project",
desc: "Find the perfect groupmate for your CSE course with this real-time messaging app!",
projectUrl: "https://github.com/devsoc-unsw/trainee-uranus-24t1",
thumbnailUrl: "/traineeProjects/unswipe.png",
},
{
name: "UNSW Redback Racing - Autonomous Vehicles",
desc: "Suite of automated systems to allow an autonomous car to percieve and navigate around a circuit. This includes developing both vehicle simulations alongside hardware.",
projectUrl: "https://www.redbackracing.com/",
thumbnailUrl:
"/starlightProjects/24_05_UNSWRedbackRacingAutonomousVehicles.png",
},
{
name: "UNSW Redback Racing - Data Acquistion",
desc: `Redback Racing's Data Acquisition Team focuses on capturing vehicle telemetry data and displaying it in a meaningful way. Check out their vehicle driver display and a live telemetry web app!`,
projectUrl: "https://www.redbackracing.com/",
thumbnailUrl:
"/starlightProjects/24_04_UNSWRedbackRacingDataAcquisition.JPG",
},
{
name: "Browoser",
desc: "Funni browser app for Apple Watch built in SwiftUI. Also contains a useless AI to comfort you when you're lonely!!",
projectUrl: "https://apps.apple.com/us/app/browoser/id6463472872",
thumbnailUrl: "/starlightProjects/24_12_Browoser.png",
},
{
name: "Hardstuck Debating Script",
desc: "Automatically create debating scrim groups with this python script!",
projectUrl: "https://github.com/TAS-scorchedshadow/DebatingAlgorithm",
thumbnailUrl: "/starlightProjects/24_03_HardstuckDebating.png",
},
{
name: "Groveify - 24T1 Trainee Project",
desc: "Groveify is a habit tracker and productivity manager that comes with a cute little world to keep you going!",
projectUrl: "https://groveify.com",
thumbnailUrl: "/traineeProjects/groveify.png",
},
{
name: "Generic Assembler",
desc: "Convert assembly in a custom MIPS-Like assembly language into binary or hex format!",
projectUrl: "https://github.com/JamesTreloar/GenericAssembler",
thumbnailUrl: "/starlightProjects/24_01_GenericAssembler.png",
},
{
name: "Riflelytics",
desc: "Data aggregation and visualisation website for rifle shooting. Easily integrates with existing target hardware!",
thumbnailUrl: "/starlightProjects/24_0A_riflelytics.png",
projectUrl: "https://github.com/TAS-scorchedshadow/Rifle_Shooting_Major",
},
];
// Data for the "Join DevSoc" section
// Should set/unset applicationUrl to mark recruitment as open/closed
export const recruitmentData: RecruitmentProps[] = [
{ position: "Directors", Icon: Lightbulb },
// { position: "New Projects", Icon: FlightTakeoff },
{ position: "Subcommittee", Icon: Groups },
{
position: "Training Leads",
Icon: CoPresent,
applicationUrl: "https://tp.devso.cc/leads"
},
{
position: "Trainees",
Icon: School,
applicationUrl: "https://tp.devso.cc/trainees"
},
];
export const feedbackFormUrl = "https://forms.gle/TjHcB9MHf6AwojiE8";
export interface SponsorInfo {
name: string;
logo: StaticImport | string;
url: string;
}
export interface StarlightSupporterData {
supporterLogos: SponsorInfo[];
industryLogos: SponsorInfo[];
}
export const starlightSupporterData: { [n: number]: StarlightSupporterData } = {
2024: {
supporterLogos: [
{
name: "UNSW",
logo: unsw,
url: "https://www.unsw.edu.au/",
},
{
name: "Arc",
logo: arc,
url: "https://www.arc.unsw.edu.au/",
},
{
name: "Roundhouse",
logo: "https://www.arc.unsw.edu.au/assets/images/roundhouse-header.svg",
url: "https://www.arc.unsw.edu.au/roundhouse",
},
],
industryLogos: [
{
name: "Macquarie",
logo: "https://online.macquarie.com.au/modelmanager/assets/resources/app/macquarie-modelmanager/images/logo-vertical-inverse.png",
url: "https://www.macquarie.com/au/en.html",
},
{
name: "Zip Co",
logo: "https://media.boohoo.com/i/boohooamplience/zippay_new_white_nobg_1309?fmt=webp",
url: "https://zip.co/au",
},
],
},
};
export interface SupporterData {
title: string;
subtitle?: string;
logos: SponsorInfo[];
}
export const projectSupporterData: SupporterData[] = [
{
title: "Affiliations",
logos: [
{
name: "Registered Charity",
logo: acnc,
url: "https://www.acnc.gov.au/charity/charities/7fa763bf-0876-ee11-8179-00224893b0ed/profile",
},
{
name: "School of CSE",
logo: cse,
url: "https://www.unsw.edu.au/engineering/our-schools/computer-science-and-engineering",
},
{
name: "CSESoc",
logo: csesoc,
url: "https://www.csesoc.unsw.edu.au/",
},
],
},
{
title: "Project Sponsors",
logos: [
{
name: "Jane Street",
logo: janeStreet,
url: "https://www.janestreet.com/",
},
{
name: "TikTok",
logo: tiktok,
url: "https://careers.tiktok.com/",
},
{
name: "Macquarie",
logo: macquarie,
url: "https://www.macquarie.com",
},
],
},
{
title: "Diamond Tier",
subtitle: "CSESoc & DevSoc Joint Sponsorship Drive",
logos: [
{
name: "Jane Street",
logo: janeStreet,
url: "https://www.janestreet.com/",
},
{
name: "TikTok",
logo: tiktok,
url: "https://careers.tiktok.com/",
},
],
},
{
title: "Gold Tier",
subtitle: "CSESoc & DevSoc Joint Sponsorship Drive",
logos: [
{
name: "Atlassian",
logo: "https://www.skillfinder.com.au/media/wysiwyg/atlassian-logo-gradient-horizontal-white.png",
url: "https://www.atlassian.com/",
},
{
name: "Citadel",
logo: citadel,
url: "https://www.citadelsecurities.com/",
},
{
name: "imc",
logo: imc,
url: "https://www.imc.com/",
},
{
name: "neara",
logo: "https://neara.com/wp-content/uploads/2023/03/footer-white-logo-with-red-icon.png",
url: "https://neara.com/",
},
{
name: "SafetyCulture",
logo: sc,
url: "https://safetyculture.com/",
},
{
name: "Zurich",
logo: zurich,
url: "https://www.zurich.com.au/",
},
],
},
{
title: "Silver Tier",
subtitle: "CSESoc & DevSoc Joint Sponsorship Drive",
logos: [
{
name: "appian",
logo: "https://www.cds.co.uk/hs-fs/hubfs/Appian-white-logo.png?width=1200&height=627&name=Appian-white-logo.png",
url: "https://appian.com/",
},
{
name: "FlowTraders",
logo: "https://paragonnational.org/Companies/flow.png",
url: "https://www.flowtraders.com/",
},
{
name: "Macquarie",
logo: macquarie,
url: "https://www.macquarie.com",
},
{
name: "Optiver",
logo: optiver,
url: "https://optiver.com/",
},
{
name: "quantium",
logo: "https://becarwise.com.au/wp-content/uploads/2022/04/quantium-logo-w.png",
url: "https://quantium.com/",
},
{
name: "Quickli",
logo: quickli,
url: "https://quickli.com.au/",
},
{
name: "revolutioniseSPORT",
logo: rs,
url: "https://www.revolutionise.com.au/",
},
{
name: "RecordPoint",
logo: rp,
url: "https://www.recordpoint.com/",
},
{
name: "SIG",
logo: sig,
url: "https://sig.com/",
},
{
name: "ZIP",
logo: "https://media.boohoo.com/i/boohooamplience/zippay_new_white_nobg_1309?fmt=webp",
url: "https://zip.co/au",
},
{
name: "Canva",
logo: "https://www.edigitalagency.com.au/wp-content/uploads/Canva-wordmark-logo-white-font-png.png",
url: "https://www.canva.com/",
},
],
},
];