Skip to content

Commit 8fd0d63

Browse files
committed
misc fixes
1 parent c4a4d59 commit 8fd0d63

File tree

4 files changed

+5
-11
lines changed

4 files changed

+5
-11
lines changed
Loading

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

frontend/public/data/sponsorInfos.ts

-7
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/pages/sponsors.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default function SponsorsPage() {
2424
}}
2525
/>
2626
)}
27-
<div className="flex flex-wrap rounded-[1rem] px-14 py-10 gap-16 justify-center rounded border border-[#595F6D] my-10">
27+
<div className="flex flex-wrap rounded-[1rem] px-14 py-10 mb-14 gap-16 justify-center rounded border-2 border-[#595F6D] my-10">
2828
{diamondLinks.map((item, index) => {
2929
return (
3030
<div
@@ -43,7 +43,7 @@ export default function SponsorsPage() {
4343
</div>
4444
<h2 className="text-4xl font-black text-center font-bold">Gold Sponsors</h2>
4545
<div>
46-
<div className="flex flex-wrap rounded-[1rem] px-14 py-10 gap-16 justify-evenly rounded border border-[#595F6D] my-10">
46+
<div className="flex flex-wrap rounded-[1rem] px-14 py-10 mb-14 gap-16 justify-evenly rounded border-2 border-[#595F6D] my-10">
4747
{goldLinks.map((item, index) => {
4848
return (
4949
<div
@@ -61,7 +61,7 @@ export default function SponsorsPage() {
6161
</div>
6262
<h2 className="text-4xl font-black text-center font-bold">Silver Sponsors</h2>
6363
<div>
64-
<div className="flex flex-wrap rounded-[1rem] px-14 py-10 gap-16 justify-evenly rounded border border-[#595F6D] mt-10">
64+
<div className="flex flex-wrap rounded-[1rem] px-14 py-10 mb-14 gap-16 justify-evenly rounded border-2 border-[#595F6D] mt-10">
6565
{silverLinks.map((item, index) => {
6666
return (
6767
<div

0 commit comments

Comments
 (0)