Skip to content

Commit

Permalink
Merge pull request #593 from devsoc-unsw/master
Browse files Browse the repository at this point in the history
Added sponsor logos to landing page
  • Loading branch information
Shubh141 authored Feb 13, 2024
2 parents e6bde8d + 06e2315 commit 8c57302
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
Binary file added client/src/assets/img/JaneStreetWhite.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions client/src/assets/img/tiktokColouredWhite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions client/src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ import { Box, Container, Grid, Typography, Link } from '@mui/material';
import { styled } from '@mui/material/styles';
import { Link as RouterLink } from 'react-router-dom';
import structsLogo from 'assets/img/structs.png';
import tiktokLogo from 'assets/img/tiktokColouredWhite.svg';
import janeStreetLogo from 'assets/img/JaneStreetWhite.png';


const StyledFooter = styled('footer')(({ theme }) => ({
backgroundColor: theme.palette.background.default,
Expand Down Expand Up @@ -68,6 +71,22 @@ const Footer = () => {
</Link>
</Typography>
</Grid>
{/* New Grid item for Company Sponsors */}
<Grid item xs={12} textAlign="center">
<Typography color="textPrimary" variant="h5" style={{ marginBottom: '1.3rem' }}>
Our Sponsors
</Typography>
{/* TikTok logo*/}
<Link href="https://www.tiktok.com/" target="_blank" rel="noopener noreferrer">
<img src={tiktokLogo} alt="TikTok Logo" height={40} style={{ marginRight: '2vw', verticalAlign: 'middle' }} />
</Link>

{/* Jane Street*/}
<Link href="https://www.janestreet.com/" target="_blank" rel="noopener noreferrer">
<img src={janeStreetLogo} alt="Jane Street Logo" height={50} style={{ verticalAlign: 'middle', marginBottom: '0px' }} />
</Link>

</Grid>
</Grid>
</Container>
<Box textAlign="center" paddingTop={5}>
Expand Down

0 comments on commit 8c57302

Please sign in to comment.