Skip to content

Commit

Permalink
Update tiers
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewStanciu committed Sep 26, 2023
1 parent f42c255 commit f2775ba
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
24 changes: 12 additions & 12 deletions components/sponsor/sponsor.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,29 +65,31 @@ Hour-long sessions every two weeks that introduce attendees to new concepts, lik

![A screenshot of Discord in a channel called #circles, full of people sharing what they plan on working on at hack night](/img/sponsor/community-circles.png)

A vibrant & friendly online community on Discord with 1800 members. Members hear about upcoming events, hang out, form Hack Night groups, & ship their completed projects. We also run asynchronous hackathon-like events, such as [Commit Overflow](https://blog.purduehackers.com/posts/commit-overflow-2022), which we ran over winter break 2022.
A vibrant & friendly online community on Discord with 1800 members. Members hear about upcoming events, hang out, form Hack Night groups, & ship their projects. We also run asynchronous hackathon-like events, such as [Commit Overflow](https://blog.purduehackers.com/posts/commit-overflow-2022), where dozens of students shipped projects over winter break.

</Grid>

# Where You Come In

Our programs cost $6,000 per year to maintain. Most of our budget is used to purchase food & materials for Hack Night & workshops, as well as occasionally fund student projects. **We are seeking sponsorship to maintain our core programs & expand them to more students at Purdue.**
All the most talented, creative, & dedicated engineers congregate in Purdue Hackers to make real projects. Sponsoring Purdue Hackers is an unparalleled opportunity to get directly in front of these engineers with your company's brand & job postings.

We will partner with you on a workshop, Hack Night, or other event of your choice ([example](https://events.purduehackers.com/-hammerwars-)), through which you will gain direct recruiting access to our uniquely talented members.

In return, we will partner with you on a workshop, Hack Night, or other event of your choice ([example](https://events.purduehackers.com/-hammerwars-)), through which you will gain direct recruiting access to our uniquely talented members.
Our annual budget is $6,000, which goes toward purchasing food & materials for Hack Night & workshops, as well as occasionally funding student projects.

<Grid className="my-4" largeGap overflow singleRow>

<Tier
title="Sponsor a Hack Night"
price={1000}
description="Send your recruiters & engineers to Hack Night & get in front of our highest-achieving members. Get a dedicated spot, collect resumés, speak at opening ceremony. The floor is yours all night."
mostPopular
description="Send your recruiters & engineers to Hack Night & get in front of our highest-achieving members. Network with students, collect resumés, speak at opening ceremony. The floor is yours all night."
/>

<Tier
title="Booster"
price={2500}
description="Sponsor any 3 events of your choice, such as workshops, Hack Nights, or asynchronous community events. Network with hundreds of high achievers and collect resumés & projects."
title="30-Day Access"
price={3000}
description="Gain access to all our events, including Hack Night & workshops, for an entire month (4 Hack Nights, 2-4 workshops). We will mention you at every event even if you're not physically present."
recommended
/>

<Tier
Expand All @@ -97,18 +99,16 @@ In return, we will partner with you on a workshop, Hack Night, or other event of
/>

<Tier
title="Custom Event"
title="Custom"
description={`Partner with us on a custom event of your choice. "Cohosted by [your company]" on all marketing materials. Direct access to all attendees. Full control over event content & schedule.`}
/>

</Grid>

All tiers are negotiable. If you don't see your ideal partnership here, please reach out and we will work with you on a custom plan.
All tiers are negotiable. If you don't see your ideal partnership here, please reach out and we're happy to work with you to find it.

---

All the most talented, creative, & dedicated engineers congregate in Purdue Hackers to make real projects. Sponsoring Purdue Hackers is an unparalleled opportunity to get directly in front of these engineers with your company's brand & job postings.

<div className="print:hidden">

If you're interested in sponsoring Purdue Hackers, please reach out to [email protected].
Expand Down
10 changes: 5 additions & 5 deletions components/sponsor/tier.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@ export function Tier({
title,
description,
price,
mostPopular
recommended
}: {
title: string;
description: string;
price?: number;
mostPopular?: boolean;
recommended?: boolean;
}): JSX.Element {
return (
<div
className={`font-main ${
mostPopular
recommended
? 'bg-gradient-to-br from-amber-400 to-amber-400 via-amber-200 relative'
: 'bg-amber-300'
} rounded-sm border-2 border-black flex flex-col gap-2 p-2 break-inside-avoid shadow-blocks-sm`}
>
{mostPopular ? (
{recommended ? (
<div className="absolute top-0 right-0 transform rotate-12 print:rotate-[35deg] print:translate-x-4 print:translate-y-2 bg-white border-2 border-black px-1 rounded-sm">
<p className="text-base print:text-sm">Most Popular</p>
<p className="text-base print:text-sm">Recommended</p>
</div>
) : null}
<div className="flex flex-col">
Expand Down

0 comments on commit f2775ba

Please sign in to comment.