Skip to content

Commit 6bcdad0

Browse files
committed
Added cselectives
1 parent bcfa4ea commit 6bcdad0

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

frontend/src/views/Home/StudentResources.vue

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<HeaderTitle title="STUDENT RESOURCES" />
1212

1313
<v-row justify="space-between">
14-
<v-col cols="12" sm="4">
14+
<v-col cols="12" sm="3">
1515
<!-- Jobs -->
1616
<a target="_blank" :href="resources.jobs_board.link">
1717
<div data-cy="resources-box" class="box primary rounded-lg">
@@ -20,7 +20,7 @@
2020
</div>
2121
</a>
2222
</v-col>
23-
<v-col cols="12" sm="4">
23+
<v-col cols="12" sm="3">
2424
<!-- CompClub -->
2525
<a target="_blank" :href="resources.comp_club.link">
2626
<div data-cy="resources-box" class="box secondary rounded-lg">
@@ -30,7 +30,7 @@
3030
</div>
3131
</a>
3232
</v-col>
33-
<v-col cols="12" sm="4">
33+
<v-col cols="12" sm="3">
3434
<!-- Notangles -->
3535
<a target="_blank" :href="resources.notangles.link">
3636
<div data-cy="resources-box" class="box primary rounded-lg">
@@ -39,6 +39,15 @@
3939
</div>
4040
</a>
4141
</v-col>
42+
<v-col cols="12" sm="3">
43+
<!-- CSElectives -->
44+
<a target="_blank" :href="resources.cselectives.link">
45+
<div data-cy="resources-box" class="box primary rounded-lg">
46+
<h2>{{ resources.cselectives.title }}</h2>
47+
<h3>{{ resources.cselectives.description }}</h3>
48+
</div>
49+
</a>
50+
</v-col>
4251
<v-col cols="12" sm="12">
4352
<!-- Media -->
4453
<a target="_blank" :href="resources.media.link">
@@ -82,9 +91,14 @@ export default {
8291
resources: {
8392
jobs_board: {
8493
link: 'https://jobsboard.csesoc.unsw.edu.au/login',
85-
title: 'Job Board',
94+
title: 'Jobs Board',
8695
description: 'A place where CSESoc students can look for relevant job opportunities.'
8796
},
97+
cselectives: {
98+
link: 'https://cselectives.csesoc.unsw.edu.au/',
99+
title: 'CSElectives',
100+
description: 'Read course reviews to help you pick your electives or even write your own!'
101+
},
88102
fy_guide: {
89103
link: 'https://media.csesoc.org.au/first-year-guide/',
90104
title: 'First Year Guide',

0 commit comments

Comments
 (0)