Skip to content

Commit

Permalink
Update DevSoc resources (#256)
Browse files Browse the repository at this point in the history
* Update DevSoc resources

- Fix URLs
- Replace Jobsboard with Freerooms

* Fix Unilectives references
  • Loading branch information
lhvy authored Dec 24, 2024
1 parent 86e701a commit 5ad0f7b
Showing 1 changed file with 21 additions and 21 deletions.
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

0 comments on commit 5ad0f7b

Please sign in to comment.