Skip to content

Commit c4a4d59

Browse files
authored
Merge branch 'master' into CW2-49-Fix-up-sponsors-display
2 parents 7e79d48 + 53d0d93 commit c4a4d59

File tree

5 files changed

+31
-1
lines changed

5 files changed

+31
-1
lines changed
Loading

frontend/public/assets/zurich_logo.svg

+1-1
Loading

frontend/public/data/sponsorInfos.ts

+6
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,12 @@ export const silverLinks: sponsorInfo[] = [
8989
description:
9090
'JDS Australia delivers specialist services in a set of technologies and capabilities that ensure critical IT systems work'
9191
},
92+
{
93+
href: 'https://www.jds.net.au/',
94+
svg: '/assets/jds_logo.svg',
95+
alt: 'jds logo',
96+
description: "JDS Australia delivers specialist services in a set of technologies and capabilities that ensure critical IT systems work",
97+
},
9298
{
9399
href: 'https://www.macquarie.com.au/',
94100
svg: '/assets/macquarie_logo.svg',

frontend/src/components/Hamburger.tsx

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ export default function Hamburger() {
5050
<li className="py-2 text-lg">
5151
<Link href={'/contact-us'}>Contact Us</Link>
5252
</li>
53+
<li className="py-2 text-lg">
54+
<a target="_blank" href="https://csesoc-merch.square.site/">Merch Store</a>
55+
</li>
5356
</ul>
5457
</motion.div>
5558
)}

frontend/src/components/Navbar.tsx

+9
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,15 @@ const Navbar = () => {
4646
<Link href="/contact-us">
4747
<div className="text-xl">{'//'} contact us</div>
4848
</Link>
49+
<a target="_blank" href="https://csesoc-merch.square.site/" className='flex'>
50+
<Image
51+
src="/assets/merch-store-icon.svg"
52+
alt="Merchandise Store Icon"
53+
width={29}
54+
height={29}
55+
draggable={false}
56+
/>
57+
</a>
4958
</div>
5059
<div className="md:hidden xl:hidden lg:hidden text-right font-bold block">
5160
<Hamburger />

0 commit comments

Comments
 (0)