Skip to content

Sponsor page: Add new Ready to sign button #1414

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 25 additions & 6 deletions src/pages/conf/sponsor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,26 @@ import LayoutConf from "../../components/Conf/Layout"
import ButtonConf from "../../components/Conf/Button"
import SeoConf from "../../components/Conf/Seo"

type Button = {
href: string
text: string
}

const Buttons: Button[] = [
{
href: "https://events.linuxfoundation.org/wp-content/uploads/2023/03/sponsor_GraphQLConf_2023_032423.pdf",
text: "Explore Sponsorship Opportunity",
},
{
href: "https://powerforms.docusign.net/ba1e05a3-244d-4c94-9b3a-fd769966e479?env=na3&acct=f30e10ec-fea1-4dd8-a262-384a61edabb5&accountId=f30e10ec-fea1-4dd8-a262-384a61edabb5",
text: "Ready To Sign",
},
{
href: "mailto:[email protected]?subject=Sponsorships",
text: "Contact Us",
},
]

export default () => {
return (
<LayoutConf>
Expand All @@ -16,12 +36,11 @@ export default () => {
<span className="block lg:inline">Sponsor GraphQLConf 2023</span>
</div>
<div className="flex justify-center items-center gap-4 flex-col sm:flex-row">
<ButtonConf href="https://events.linuxfoundation.org/wp-content/uploads/2023/03/sponsor_GraphQLConf_2023_032423.pdf">
Explore Sponsorship
</ButtonConf>
<ButtonConf href="mailto:[email protected]?subject=Sponsorships">
Contact Us
</ButtonConf>
{Buttons.map(button => (
<ButtonConf key={button.text} href={button.href}>
{button.text}
</ButtonConf>
))}
</div>
</div>
<div className="mx-auto max-w-prose mt-8">
Expand Down