Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added sponsor logos to landing page #593

Merged
merged 2 commits into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
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
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 @@ -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,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
Loading