Skip to content

Commit 1652222

Browse files
authored
Sponsor page: Change buttons activity (graphql#1540)
1 parent 6a51d59 commit 1652222

File tree

1 file changed

+10
-13
lines changed

1 file changed

+10
-13
lines changed

src/pages/conf/sponsor.tsx

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,19 @@ import SeoConf from "../../components/Conf/Seo"
88
type Button = {
99
href: string
1010
text: string
11+
active?: boolean
1112
}
1213

1314
const Buttons: Button[] = [
1415
{
1516
href: "https://events.linuxfoundation.org/sponsor-graphqlconf-23",
16-
text: "Explore Sponsorship Opportunity",
17+
text: "Sponsorship sales have closed",
18+
active: false,
1719
},
1820
{
1921
href: "https://powerforms.docusign.net/ba1e05a3-244d-4c94-9b3a-fd769966e479?env=na3&acct=f30e10ec-fea1-4dd8-a262-384a61edabb5&accountId=f30e10ec-fea1-4dd8-a262-384a61edabb5",
2022
text: "Ready To Sign",
23+
active: false,
2124
},
2225
{
2326
href: "mailto:[email protected]?subject=Sponsorships",
@@ -37,7 +40,11 @@ export default () => {
3740
</div>
3841
<div className="flex justify-center items-center gap-4 flex-col sm:flex-row">
3942
{Buttons.map(button => (
40-
<ButtonConf key={button.text} href={button.href}>
43+
<ButtonConf
44+
disabled={button.active === false}
45+
key={button.text}
46+
href={button.href}
47+
>
4148
{button.text}
4249
</ButtonConf>
4350
))}
@@ -64,17 +71,7 @@ export default () => {
6471
GraphQL.
6572
</p>
6673
<br />
67-
<p>
68-
Help make this event one to remember by{" "}
69-
<a
70-
className="font-medium"
71-
target="_blank"
72-
href="https://events.linuxfoundation.org/wp-content/uploads/2023/03/sponsor_GraphQLConf_2023_032423.pdf"
73-
>
74-
becoming a sponsor
75-
</a>
76-
.
77-
</p>
74+
<p>Help make this event one to remember by becoming a sponsor.</p>
7875
<br />
7976
<p>
8077
GraphQLConf will attract members of the GraphQL community from

0 commit comments

Comments
 (0)