Skip to content

Commit

Permalink
Update sponsors
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott-Hickmann committed Oct 12, 2023
1 parent 959304f commit 283268e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/sponsors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ export const Sponsors = styled.div`
text-align: center;
`;

export const Sponsor = styled.div`
export const Sponsor = styled.div<{ width?: number }>`
display: inline-block;
width: 250px;
width: ${(props) => props.width || 250}px;
text-align: center;
padding: 10px;
margin: 0 2px;
Expand Down
6 changes: 6 additions & 0 deletions pages/sponsors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ export default function Contact() {
<Sponsor>
<img src="/logos/citadel2.png" alt="Citadel Securities" />
</Sponsor>
<Sponsor>
<img src="/logos/hrt.png" alt="HRT" width={140} />
</Sponsor>
<Sponsor>
<img src="/logos/janestreet.png" alt="Jane Street" />
</Sponsor>
<Sponsor>
<img src="/logos/sig.png" alt="Sig" />
</Sponsor>
Expand Down
Binary file added public/logos/janestreet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

1 comment on commit 283268e

@vercel
Copy link

@vercel vercel bot commented on 283268e Oct 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.