Skip to content

Commit

Permalink
Merge branch 'master' into add-kaitlyn
Browse files Browse the repository at this point in the history
  • Loading branch information
charisgao authored Nov 9, 2024
2 parents 6d21762 + d5d5ddc commit 07e9871
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
13 changes: 12 additions & 1 deletion src/components/Home/Sponsors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ export const Sponsors = (): React.ReactElement => {
}
}
}
imc: file(relativePath: { eq: "sponsors/imc.png" }) {
childImageSharp {
fluid(maxWidth: 500, quality: 100) {
...GatsbyImageSharpFluid
}
}
}
}
`)

Expand All @@ -33,6 +40,10 @@ export const Sponsors = (): React.ReactElement => {
fluid: data.jane_street.childImageSharp.fluid,
alt: 'Jane Street',
},
{
fluid: data.imc.childImageSharp.fluid,
alt: 'IMC Trading',
},
]

return (
Expand All @@ -59,7 +70,7 @@ export const Sponsors = (): React.ReactElement => {
<Img
fluid={fluid}
alt={alt}
style={{ maxWidth: '60%', height: 'auto' }}
style={{ maxHeight: '100px', maxWidth: '60%' }}
/>
</div>
</Col>
Expand Down
Binary file added src/images/sponsors/imc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/json/members/sunmi.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"roles": [
"Backend Engineer"
],
"photo": "https://i.imgur.com/hjS4LDt.jpeg",
"photo": "https://i.imgur.com/vYaG6JC.jpeg",
"linkedin": "https://www.linkedin.com/in/minghan-sun-46a591236/",
"website": "https://minghansun.com/",
"github": "https://github.com/minghansun1",
Expand Down

0 comments on commit 07e9871

Please sign in to comment.