diff --git a/components/sponsors.tsx b/components/sponsors.tsx
index 6ebd76d..c81b263 100644
--- a/components/sponsors.tsx
+++ b/components/sponsors.tsx
@@ -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;
diff --git a/pages/sponsors.tsx b/pages/sponsors.tsx
index 095e738..ec91fb8 100644
--- a/pages/sponsors.tsx
+++ b/pages/sponsors.tsx
@@ -30,6 +30,12 @@ export default function Contact() {
+
+
+
+
+
+
diff --git a/public/logos/janestreet.png b/public/logos/janestreet.png
new file mode 100644
index 0000000..4e5ea21
Binary files /dev/null and b/public/logos/janestreet.png differ