Skip to content

Commit

Permalink
Merge pull request #35 from csesoc/CW2-39-address-devsoc-issues
Browse files Browse the repository at this point in the history
[CW2-39] Updates to Resources Page
  • Loading branch information
derekxu04 authored Oct 17, 2024
2 parents 704cc9e + 4f74182 commit 8cd4943
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 22 deletions.
15 changes: 15 additions & 0 deletions frontend/public/assets/freerooms_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 15 additions & 15 deletions frontend/public/data/resourceCards.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
desc: 'A place where CSESoc students can look for relevant job opportunities.',
width: 60,
height: 60
href: 'https://freerooms.devsoc.app/',
svg: '/assets/freerooms_logo.svg',
alt: 'Freerooms',
title: 'Freerooms',
desc: 'A tool for browsing rooms and timetable schedules on campus.',
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',
Expand All @@ -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',
desc: 'Read course electives to help you pick your electives or even write your own!',
width: 80,
height: 80
alt: 'Unilectives',
title: 'Unilectives',
desc: 'Read course reviews to help you pick your electives or even write your own!',
width: 70,
height: 70
}
];

Expand Down
2 changes: 1 addition & 1 deletion frontend/public/data/socialInfos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
},
{
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Contacts/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const Contacts = () => {
</a>
<a href="https://www.tiktok.com/@csesoc?lang=en" target="_blank">
<Image
src="assets/tiktok_logo.svg"
src="assets/tiktok_logo_no_text.svg"
alt="TikTok"
width={35}
height={35}
Expand Down
8 changes: 3 additions & 5 deletions frontend/src/pages/resources.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function ResourcesPage() {
alt="CSESoc Logo"
width={100}
height={100}
className="pl-2"
className="pl-2 transform transition-transform duration-300 hover:scale-105"
/>
</div>

Expand Down Expand Up @@ -58,16 +58,14 @@ export default function ResourcesPage() {
</div>

<a href="https://devsoc.app/" target="_blank" rel="noopener noreferrer">
<div
className={`flex grow-on-hover cursor-pointer transform transition-transform duration-300 hover:scale-105`}
>
<div className="flex">
<span className="text-lg">Made by</span>
<Image
src="/assets/devsoc_logo.svg"
alt="DevSoc Logo"
width={110}
height={110}
className="pl-1"
className="pl-1 transform transition-transform duration-300 hover:scale-105"
/>
</div>
</a>
Expand Down

0 comments on commit 8cd4943

Please sign in to comment.