Skip to content

Commit 8cd4943

Browse files
authored
Merge pull request #35 from csesoc/CW2-39-address-devsoc-issues
[CW2-39] Updates to Resources Page
2 parents 704cc9e + 4f74182 commit 8cd4943

File tree

6 files changed

+35
-22
lines changed

6 files changed

+35
-22
lines changed

Diff for: frontend/public/assets/freerooms_logo.svg

+15
Loading

Diff for: frontend/public/data/resourceCards.ts

+15-15
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export type resourceCards = {
1212
export const stage1: resourceCards[] = [
1313
{
1414
id: 's1-1',
15-
href: 'https://circles.csesoc.app/course-selector',
15+
href: 'https://circles.devsoc.app/',
1616
svg: '/assets/circles_logo.svg',
1717
alt: 'Circles',
1818
title: 'Circles',
@@ -35,17 +35,17 @@ export const stage2: resourceCards[] = [
3535
},
3636
{
3737
id: 's2-2',
38-
href: 'https://jobsboard.csesoc.unsw.edu.au/',
39-
svg: '/assets/jobsboard_logo.svg',
40-
alt: 'JobsBoard',
41-
title: 'Jobs Board',
42-
desc: 'A place where CSESoc students can look for relevant job opportunities.',
43-
width: 60,
44-
height: 60
38+
href: 'https://freerooms.devsoc.app/',
39+
svg: '/assets/freerooms_logo.svg',
40+
alt: 'Freerooms',
41+
title: 'Freerooms',
42+
desc: 'A tool for browsing rooms and timetable schedules on campus.',
43+
width: 70,
44+
height: 70
4545
},
4646
{
4747
id: 's2-3',
48-
href: 'https://notangles.csesoc.app/',
48+
href: 'https://notangles.devsoc.app/',
4949
svg: '/assets/notangles_logo.svg',
5050
alt: 'Notangles',
5151
title: 'Notangles',
@@ -55,13 +55,13 @@ export const stage2: resourceCards[] = [
5555
},
5656
{
5757
id: 's2-4',
58-
href: 'https://unilectives.csesoc.app/',
58+
href: 'https://unilectives.devsoc.app/',
5959
svg: '/assets/unilectives_logo.svg',
60-
alt: 'Uni-lectives',
61-
title: 'Uni-lectives',
62-
desc: 'Read course electives to help you pick your electives or even write your own!',
63-
width: 80,
64-
height: 80
60+
alt: 'Unilectives',
61+
title: 'Unilectives',
62+
desc: 'Read course reviews to help you pick your electives or even write your own!',
63+
width: 70,
64+
height: 70
6565
}
6666
];
6767

Diff for: frontend/public/data/socialInfos.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const socialLinks: socialInfo[] = [
3232
},
3333
{
3434
href: 'https://www.tiktok.com/@csesoc?lang=en',
35-
src: '/assets/tiktok_logo_footer.svg',
35+
src: '/assets/tiktok_logo_no_text.svg',
3636
alt: 'TikTok'
3737
},
3838
{

Diff for: frontend/src/components/Contacts/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const Contacts = () => {
7979
</a>
8080
<a href="https://www.tiktok.com/@csesoc?lang=en" target="_blank">
8181
<Image
82-
src="assets/tiktok_logo.svg"
82+
src="assets/tiktok_logo_no_text.svg"
8383
alt="TikTok"
8484
width={35}
8585
height={35}

Diff for: frontend/src/pages/resources.tsx

+3-5
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default function ResourcesPage() {
2323
alt="CSESoc Logo"
2424
width={100}
2525
height={100}
26-
className="pl-2"
26+
className="pl-2 transform transition-transform duration-300 hover:scale-105"
2727
/>
2828
</div>
2929

@@ -58,16 +58,14 @@ export default function ResourcesPage() {
5858
</div>
5959

6060
<a href="https://devsoc.app/" target="_blank" rel="noopener noreferrer">
61-
<div
62-
className={`flex grow-on-hover cursor-pointer transform transition-transform duration-300 hover:scale-105`}
63-
>
61+
<div className="flex">
6462
<span className="text-lg">Made by</span>
6563
<Image
6664
src="/assets/devsoc_logo.svg"
6765
alt="DevSoc Logo"
6866
width={110}
6967
height={110}
70-
className="pl-1"
68+
className="pl-1 transform transition-transform duration-300 hover:scale-105"
7169
/>
7270
</div>
7371
</a>

0 commit comments

Comments
 (0)