Skip to content

Commit

Permalink
feat: add a sponsor page
Browse files Browse the repository at this point in the history
  • Loading branch information
astorije committed Sep 26, 2024
1 parent 7852505 commit 037bb48
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions app/routes/sponsor.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
import { MetaFunction } from "@remix-run/node";

import { ExternalAnchor } from "~/components/Anchor";
import { BodyText } from "~/components/BodyText";
import { Heading } from "~/components/Heading";
import { Layout } from "~/components/Layout";
import { UnorderedList } from "~/components/UnorderedList";
import { createMeta } from "~/config";

const tagline = `Get your name and branding in front of Boston's most active and engaged TypeScript developer community!`;

export const meta: MetaFunction = () =>
createMeta({ page: "Sponsor", tagline });

export default function About() {
return (
<Layout back title="Sponsor">
<Heading level={2}>Sponsor Boston TS Club</Heading>

<BodyText>
Thinking about sponsoring us? Awesome! We're excited to work with you
and are grateful for your support!
</BodyText>

<Heading level={3}>Why sponsor us?</Heading>

<BodyText>{tagline}</BodyText>

<BodyText>As a meetup sponsor, you'll receive:</BodyText>

<UnorderedList>
<li>A featured mention in our opening slides</li>
<li>A dedicated talk slot to showcase your product</li>
<li>Shout-outs on our social media profiles</li>
<li>The opportunity to distribute your swag at our events</li>
</UnorderedList>

<BodyText>
We're flexible! If you want to try something different, let us know,
we'd love to make it happen! 💙
</BodyText>

<Heading level={3}>Ready to team up?</Heading>

<BodyText>
<ExternalAnchor href="mailto:[email protected]" target="_blank">
Email us
</ExternalAnchor>{" "}
to get started.
</BodyText>
</Layout>
);
}

0 comments on commit 037bb48

Please sign in to comment.