Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 7 additions & 17 deletions client/src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import structsLogo from '../../assets/img/structs.png';
import janeStreetLogo from '../../assets/img/sponsors/jane_street.svg';
import aristaLogo from '../../assets/img/sponsors/arista.png';
import theTradeDeskLogo from '../../assets/img/sponsors/thetradedesk.png';
import hrtLogo from '../../assets/img/sponsors/hrt.png'
import hrtLogo from '../../assets/img/sponsors/hrt.png';
import lyraLogo from '../../assets/img/sponsors/lyra.svg';
import atlassianLogo from '../../assets/img/sponsors/atlassian.png'
import qrtLogo from '../../assets/img/sponsors/qrt.svg'
import atlassianLogo from '../../assets/img/sponsors/atlassian.png';
import qrtLogo from '../../assets/img/sponsors/qrt.svg';
import airwallexLogo from '../../assets/img/sponsors/airwallex.avif';

const StyledFooter = styled('footer')(({ theme }) => ({
Expand Down Expand Up @@ -55,7 +55,7 @@ const Footer = () => {
</Typography>
<Typography color="textSecondary">
<address>
<Link href="mailto:projects@csesoc.org.au" color="inherit">
<Link href="mailto:structs@devsoc.app" color="inherit">
Email Us
</Link>{' '}
</address>
Expand Down Expand Up @@ -94,12 +94,7 @@ const Footer = () => {
rel="noopener noreferrer"
sx={{ transition: 'transform 0.2s', '&:hover': { transform: 'scale(1.1)' } }}
>
<img
src={hrtLogo}
alt="HRT Logo"
height={50}
style={{ verticalAlign: 'middle' }}
/>
<img src={hrtLogo} alt="HRT Logo" height={50} style={{ verticalAlign: 'middle' }} />
</Link>

{/* Jane Street Logo */}
Expand Down Expand Up @@ -153,7 +148,7 @@ const Footer = () => {
Gold Tier
</Typography>

{ /* Airwallex, Arista, Atlassian, QRT */}
{/* Airwallex, Arista, Atlassian, QRT */}
<Box display="flex" justifyContent="center" gap={6} flexWrap="wrap" alignItems="center">
{/* Airwallex Logo */}
<Link
Expand Down Expand Up @@ -206,12 +201,7 @@ const Footer = () => {
rel="noopener noreferrer"
sx={{ transition: 'transform 0.2s', '&:hover': { transform: 'scale(1.1)' } }}
>
<img
src={qrtLogo}
alt="QRT Logo"
height={40}
style={{ verticalAlign: 'middle' }}
/>
<img src={qrtLogo} alt="QRT Logo" height={40} style={{ verticalAlign: 'middle' }} />
</Link>
</Box>
</Grid>
Expand Down
Loading