Skip to content

Commit

Permalink
Added sponsor logos to landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
Shubh committed Feb 13, 2024
1 parent e5d8c5a commit 323fc18
Show file tree
Hide file tree
Showing 3 changed files with 31 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.
13 changes: 13 additions & 0 deletions client/src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import { Theme, Box, Container, Grid, Typography, Link } from '@mui/material';
import { useTheme, 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 @@ -71,6 +74,16 @@ 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*/}
<img src={tiktokLogo} alt="TikTok Logo" height={40} style={{ marginRight: '2vw', verticalAlign: 'middle' }} />
{/* Jane Street*/}
<img src={janeStreetLogo} alt="Jane Street Logo" height={50} style={{ verticalAlign: 'middle', marginBottom: '0px' }} />
</Grid>
</Grid>
</Container>
<Box textAlign="center" paddingTop={5}>
Expand Down

0 comments on commit 323fc18

Please sign in to comment.