From 1db0bb0dda0212b881849422a829e0ccbf587243 Mon Sep 17 00:00:00 2001 From: Wolfdragon24 Date: Wed, 16 Oct 2024 11:25:15 +1100 Subject: [PATCH 1/5] Updates to resources page and data --- frontend/public/assets/freerooms_logo.svg | 15 +++++++++++++ frontend/public/data/resourceCards.ts | 26 +++++++++++------------ frontend/src/pages/resources.tsx | 4 +++- 3 files changed, 31 insertions(+), 14 deletions(-) create mode 100644 frontend/public/assets/freerooms_logo.svg diff --git a/frontend/public/assets/freerooms_logo.svg b/frontend/public/assets/freerooms_logo.svg new file mode 100644 index 0000000..dfb54ee --- /dev/null +++ b/frontend/public/assets/freerooms_logo.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/frontend/public/data/resourceCards.ts b/frontend/public/data/resourceCards.ts index abef610..3e373dc 100644 --- a/frontend/public/data/resourceCards.ts +++ b/frontend/public/data/resourceCards.ts @@ -12,7 +12,7 @@ export type resourceCards = { export const stage1: resourceCards[] = [ { id: 's1-1', - href: 'https://circles.csesoc.app/course-selector', + href: 'https://circles.devsoc.app/', svg: '/assets/circles_logo.svg', alt: 'Circles', title: 'Circles', @@ -35,17 +35,17 @@ export const stage2: resourceCards[] = [ }, { id: 's2-2', - href: 'https://jobsboard.csesoc.unsw.edu.au/', - svg: '/assets/jobsboard_logo.svg', - alt: 'JobsBoard', - title: 'Jobs Board', + href: 'https://freerooms.devsoc.app/', + svg: '/assets/freerooms_logo.svg', + alt: 'Freerooms', + title: 'Freerooms', desc: 'A place where CSESoc students can look for relevant job opportunities.', - width: 60, - height: 60 + width: 70, + height: 70 }, { id: 's2-3', - href: 'https://notangles.csesoc.app/', + href: 'https://notangles.devsoc.app/', svg: '/assets/notangles_logo.svg', alt: 'Notangles', title: 'Notangles', @@ -55,13 +55,13 @@ export const stage2: resourceCards[] = [ }, { id: 's2-4', - href: 'https://unilectives.csesoc.app/', + href: 'https://unilectives.devsoc.app/', svg: '/assets/unilectives_logo.svg', - alt: 'Uni-lectives', - title: 'Uni-lectives', + alt: 'unilectives', + title: 'unilectives', desc: 'Read course electives to help you pick your electives or even write your own!', - width: 80, - height: 80 + width: 70, + height: 70 } ]; diff --git a/frontend/src/pages/resources.tsx b/frontend/src/pages/resources.tsx index d3a3736..ef66999 100644 --- a/frontend/src/pages/resources.tsx +++ b/frontend/src/pages/resources.tsx @@ -16,7 +16,9 @@ export default function ResourcesPage() {
Background -
+
Made by Date: Wed, 16 Oct 2024 11:32:36 +1100 Subject: [PATCH 2/5] Update to Freerooms item description --- frontend/public/data/resourceCards.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/public/data/resourceCards.ts b/frontend/public/data/resourceCards.ts index 3e373dc..a51fb1a 100644 --- a/frontend/public/data/resourceCards.ts +++ b/frontend/public/data/resourceCards.ts @@ -39,7 +39,7 @@ export const stage2: resourceCards[] = [ svg: '/assets/freerooms_logo.svg', alt: 'Freerooms', title: 'Freerooms', - desc: 'A place where CSESoc students can look for relevant job opportunities.', + desc: 'A tool for browsing rooms and timetable schedules on campus.', width: 70, height: 70 }, From 7193d595e3b4d0a54f693638ec0d85c332f8ef8f Mon Sep 17 00:00:00 2001 From: Wolfdragon24 Date: Wed, 16 Oct 2024 11:33:44 +1100 Subject: [PATCH 3/5] Update to unilectives item description --- frontend/public/data/resourceCards.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/public/data/resourceCards.ts b/frontend/public/data/resourceCards.ts index a51fb1a..6b859fc 100644 --- a/frontend/public/data/resourceCards.ts +++ b/frontend/public/data/resourceCards.ts @@ -59,7 +59,7 @@ export const stage2: resourceCards[] = [ svg: '/assets/unilectives_logo.svg', alt: 'unilectives', title: 'unilectives', - desc: 'Read course electives to help you pick your electives or even write your own!', + desc: 'Read course reviews to help you pick your electives or even write your own!', width: 70, height: 70 } From f3bb523d6d8a033c4e578afefa6c4a31146273a2 Mon Sep 17 00:00:00 2001 From: Derek Xu Date: Thu, 17 Oct 2024 14:15:46 +1100 Subject: [PATCH 4/5] fixes --- frontend/public/data/resourceCards.ts | 4 ++-- frontend/src/pages/resources.tsx | 12 ++++-------- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/frontend/public/data/resourceCards.ts b/frontend/public/data/resourceCards.ts index 6b859fc..2122dbf 100644 --- a/frontend/public/data/resourceCards.ts +++ b/frontend/public/data/resourceCards.ts @@ -57,8 +57,8 @@ export const stage2: resourceCards[] = [ id: 's2-4', href: 'https://unilectives.devsoc.app/', svg: '/assets/unilectives_logo.svg', - alt: 'unilectives', - title: 'unilectives', + alt: 'Unilectives', + title: 'Unilectives', desc: 'Read course reviews to help you pick your electives or even write your own!', width: 70, height: 70 diff --git a/frontend/src/pages/resources.tsx b/frontend/src/pages/resources.tsx index ef66999..f656165 100644 --- a/frontend/src/pages/resources.tsx +++ b/frontend/src/pages/resources.tsx @@ -16,16 +16,14 @@ export default function ResourcesPage() {
Background -
+
Made by CSESoc Logo
@@ -60,16 +58,14 @@ export default function ResourcesPage() {
-
+
Made by DevSoc Logo
From 4f74182af85052e34bddc213c8a29bc3f3421b8a Mon Sep 17 00:00:00 2001 From: Derek Xu Date: Thu, 17 Oct 2024 14:24:08 +1100 Subject: [PATCH 5/5] fix tiktok logos --- .../assets/{tiktok_logo_footer.svg => tiktok_logo_no_text.svg} | 0 frontend/public/data/socialInfos.ts | 2 +- frontend/src/components/Contacts/index.tsx | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename frontend/public/assets/{tiktok_logo_footer.svg => tiktok_logo_no_text.svg} (100%) diff --git a/frontend/public/assets/tiktok_logo_footer.svg b/frontend/public/assets/tiktok_logo_no_text.svg similarity index 100% rename from frontend/public/assets/tiktok_logo_footer.svg rename to frontend/public/assets/tiktok_logo_no_text.svg diff --git a/frontend/public/data/socialInfos.ts b/frontend/public/data/socialInfos.ts index 957ec4b..f8b3957 100644 --- a/frontend/public/data/socialInfos.ts +++ b/frontend/public/data/socialInfos.ts @@ -32,7 +32,7 @@ export const socialLinks: socialInfo[] = [ }, { href: 'https://www.tiktok.com/@csesoc?lang=en', - src: '/assets/tiktok_logo_footer.svg', + src: '/assets/tiktok_logo_no_text.svg', alt: 'TikTok' }, { diff --git a/frontend/src/components/Contacts/index.tsx b/frontend/src/components/Contacts/index.tsx index 0f41a69..ef96541 100644 --- a/frontend/src/components/Contacts/index.tsx +++ b/frontend/src/components/Contacts/index.tsx @@ -79,7 +79,7 @@ const Contacts = () => {