Skip to content

Commit

Permalink
update sponsors
Browse files Browse the repository at this point in the history
  • Loading branch information
ImNotRog committed Jan 24, 2024
1 parent 9243004 commit 1f89844
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
Binary file added public/docs/sponsorship_prospectus.pdf
Binary file not shown.
Binary file added public/sponsors/city-of-palo-alto.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/sponsors/thinkfund.webp
Binary file not shown.
4 changes: 2 additions & 2 deletions src/app/(landing)/Sponsor.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
export default function Sponsor(props: {href: string, src: string, alt: string}) {
export default function Sponsor(props: {href: string, src: string, alt: string, width?:string}) {
const {href, src, alt} = props;
return (
<a target="_blank" rel="noopener noreferrer" href={href}>
<img
src={src}
alt={alt}
className="max-h-[6rem] px-4 py-2"
className={"px-4 py-2 " + (props.width === "md" ? `w-[15rem]` : props.width === "sm" ? `w-[12rem]` : props.width === "lg" ? `w-[25rem]` : "max-h-[6rem]")}
/>
</a>
)
Expand Down
7 changes: 4 additions & 3 deletions src/app/(landing)/Sponsors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,16 @@ export default function Sponsors() {
<Sponsor href="https://www.janestreet.com/" src="/sponsors/jane-street.png" alt="Jane Street" />
<Sponsor href="https://www.hudsonrivertrading.com/" src="/sponsors/HRT.png" alt="Hudson River Trading" />
<Sponsor href="https://www.wolfram.com" src="/sponsors/wolfram.png" alt="Wolfram" />
<Sponsor href="https://mlh.io/" src="/sponsors/MLH.png" alt="MLH" />
<Sponsor href="https://mlh.io/" src="/sponsors/MLH.png" alt="MLH" width="sm" />
<Sponsor href="https://www.mitchellparkteenservices.org/thinkfund" src="/sponsors/thinkfund.webp" alt="Think Fund" width="md" />
<Sponsor href="https://www.cityofpaloalto.org/" src="/sponsors/city-of-palo-alto.png" alt="City of Palo Alto" />

{/* <Sponsor href="https://www.wolfram.com" src="/sponsors/wolfram.svg" alt="Wolfram" />
<Sponsor href="https://artofproblemsolving.com" src="/sponsors/aops.png" alt="AoPS" />
<Sponsor href="https://mule.to/p3df" src="/sponsors/sticker-mule.png" alt="Sticker Mule" />

<Sponsor href="https://linktr.ee/leadinglearners" src="/sponsors/leading-learners.png" alt="Leading Learners" />
<Sponsor href="https://www.leangap.org/" src="/sponsors/leangap.svg" alt="Leangap" />
<Sponsor href="https://www.mitchellparkteenservices.org/thinkfund" src="/sponsors/think-fund.png" alt="Think Fund" />
<Sponsor href="https://www.cityofpaloalto.org/" src="/sponsors/city-of-palo-alto.png" alt="City of Palo Alto" />
<Sponsor href="https://gunn.paloaltopta.org/" src="/sponsors/ptsa.png" alt="Gunn PTSA" /> */}
</div>

Expand Down

1 comment on commit 1f89844

@github-actions
Copy link

Choose a reason for hiding this comment

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

Deploy preview for gunnhacks10 ready!

✅ Preview
https://gunnhacks10-fz9gk8sot-imnotrog.vercel.app

Built with commit 1f89844.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.