Skip to content

Commit b701d1b

Browse files
committed
Merge branch 'master' of github.com:csesoc/csesoc-website-2023 into CW2-59-Sponsors
2 parents 6f3e0dc + 704cc9e commit b701d1b

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed
Lines changed: 1 addition & 0 deletions
Loading

frontend/public/data/socialInfos.ts

Lines changed: 1 addition & 1 deletion
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.svg',
35+
src: '/assets/tiktok_logo_footer.svg',
3636
alt: 'TikTok'
3737
},
3838
{

frontend/public/data/sponsorInfos.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,6 @@ export const silverLinks: sponsorInfo[] = [
8282
description:
8383
'Flow Traders is a proprietary trading firm. A market maker, it provides liquidity in the securities market by using high frequency and quantitative trading strategies'
8484
},
85-
{
86-
href: 'https://www.jds.net.au/',
87-
svg: '/assets/jds_logo.svg',
88-
alt: 'jds logo',
89-
description:
90-
'JDS Australia delivers specialist services in a set of technologies and capabilities that ensure critical IT systems work'
91-
},
9285
{
9386
href: 'https://www.jds.net.au/',
9487
svg: '/assets/jds_logo.svg',

frontend/src/components/Background.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Spline from '@splinetool/react-spline';
33
const Background = () => {
44
return (
55
<Spline
6-
className="absolute "
6+
className="absolute"
77
scene="https://prod.spline.design/thPGkOvNXu8XjGlk/scene.splinecode"
88
/>
99
);

frontend/src/components/Landing/index.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,13 @@ const Landing = () => {
2020
<p>{'<h2>'}</p>
2121
<h2 className="font-bold 2xl:text-3xl text-xl">
2222
We are the principal representative body for{' '}
23-
<span className="text-[#3977F9]">UNSW computing</span> students.
23+
<a href="https://www.unsw.edu.au/engineering/our-schools/computer-science-and-engineering"
24+
target = "_blank"
25+
className="text-[#3977F9] relative after:bg-current after:absolute after:h-1 after:w-0 after:bottom-0 after:left-0 hover:after:w-full after:duration-200"
26+
>
27+
UNSW computing
28+
</a>
29+
{' '}students.
2430
</h2>
2531
<p>{'</h2>'}</p>
2632
</div>

frontend/src/pages/sponsors.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export default function SponsorsPage() {
4646
}}
4747
/>
4848
)}
49-
<div className="flex flex-wrap rounded-[1rem] px-14 py-10 gap-16 justify-center rounded border border-[#595F6D] my-10">
49+
<div className="flex flex-wrap rounded-[1rem] px-14 py-10 mb-14 gap-16 justify-center rounded border-2 border-[#595F6D] my-10">
5050
{diamondLinks.map((item, index) => {
5151
return (
5252
<div
@@ -65,7 +65,7 @@ export default function SponsorsPage() {
6565
</div>
6666
<h2 className="text-4xl font-black text-center font-bold">Gold Sponsors</h2>
6767
<div>
68-
<div className="flex flex-wrap rounded-[1rem] px-14 py-10 gap-16 justify-evenly rounded border border-[#595F6D] my-10">
68+
<div className="flex flex-wrap rounded-[1rem] px-14 py-10 mb-14 gap-16 justify-evenly rounded border-2 border-[#595F6D] my-10">
6969
{goldLinks.map((item, index) => {
7070
return (
7171
<div
@@ -83,7 +83,7 @@ export default function SponsorsPage() {
8383
</div>
8484
<h2 className="text-4xl font-black text-center font-bold">Silver Sponsors</h2>
8585
<div>
86-
<div className="flex flex-wrap rounded-[1rem] px-14 py-10 gap-16 justify-evenly rounded border border-[#595F6D] mt-10">
86+
<div className="flex flex-wrap rounded-[1rem] px-14 py-10 mb-14 gap-16 justify-evenly rounded border-2 border-[#595F6D] mt-10">
8787
{silverLinks.map((item, index) => {
8888
return (
8989
<div

frontend/src/styles/globals.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ body {
2727
}
2828

2929
.hover-animate:hover {
30-
transform: scale(1.01);
30+
transform: scale(1.03);
3131
}
3232

3333
.sponsor-item {

0 commit comments

Comments
 (0)