Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update DevSoc resources #256

Merged
merged 2 commits into from
Dec 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions frontend/src/views/Home/StudentResources.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
</v-col>

<v-col cols="12" sm="3">
<!-- Jobs -->
<a target="_blank" :href="resources.jobs_board.link">
<!-- Freerooms -->
<a target="_blank" :href="resources.freerooms.link">
<div data-cy="resources-box" class="box secondary rounded-lg">
<h2>{{ resources.jobs_board.title }}</h2>
<h3>{{ resources.jobs_board.description }}</h3>
<h2>{{ resources.freerooms.title }}</h2>
<h3>{{ resources.freerooms.description }}</h3>
</div>
</a>
</v-col>
Expand All @@ -48,11 +48,11 @@
</a>
</v-col>
<v-col cols="12" sm="3">
<!-- CSElectives -->
<a target="_blank" :href="resources.cselectives.link">
<!-- Unilectives -->
<a target="_blank" :href="resources.unilectives.link">
<div data-cy="resources-box" class="box secondary rounded-lg">
<h2>{{ resources.cselectives.title }}</h2>
<h3>{{ resources.cselectives.description }}</h3>
<h2>{{ resources.unilectives.title }}</h2>
<h3>{{ resources.unilectives.description }}</h3>
</div>
</a>
</v-col>
Expand Down Expand Up @@ -108,24 +108,19 @@ export default {
data: () => ({
resources: {
circles: {
link: 'https://circles.csesoc.app/',
link: 'https://circles.devsoc.app/',
title: 'Circles',
description: 'A UNSW degree planner where you can explore and validate your degree structure.',
},
structs: {
link: 'https://structs.sh',
link: 'https://structs.sh/',
title: 'Structs',
description: 'An educational data structures and algorithms platform.',
},
jobs_board: {
link: 'https://jobsboard.csesoc.unsw.edu.au/',
title: 'Jobs Board',
description: 'A place where CSESoc students can look for relevant job opportunities.'
},
cselectives: {
link: 'https://cselectives.csesoc.unsw.edu.au/',
title: 'CSElectives',
description: 'Read course reviews to help you pick your electives or even write your own!'
unilectives: {
link: 'https://unilectives.devsoc.app/',
title: 'Unilectives',
description: 'Your one-stop shop for UNSW course and elective reviews.'
},
fy_guide: {
link: 'https://media.csesoc.org.au/first-year-guide/',
Expand All @@ -143,9 +138,14 @@ export default {
description: 'Promoting computing to high school students'
},
notangles: {
link: 'https://notangles.csesoc.unsw.edu.au/',
link: 'https://notangles.devsoc.app/',
title: 'Notangles',
description: 'Trimester timetabling tool - no more timetable tangles!'
description: 'An interactive drag-and-drop timetable planner designed to help UNSW students plan their ideal weekly timetable.'
},
freerooms: {
link: 'https://freerooms.devsoc.app/',
title: 'Freerooms',
description: 'A tool to view the timetable of any room on campus, and find an available room that suits all your needs.'
},
pe_guide: {
link: 'https://media.csesoc.org.au/enrolment-guide/',
Expand Down
Loading