File tree 1 file changed +10
-13
lines changed 1 file changed +10
-13
lines changed Original file line number Diff line number Diff line change @@ -8,16 +8,19 @@ import SeoConf from "../../components/Conf/Seo"
8
8
type Button = {
9
9
href : string
10
10
text : string
11
+ active ?: boolean
11
12
}
12
13
13
14
const Buttons : Button [ ] = [
14
15
{
15
16
href : "https://events.linuxfoundation.org/sponsor-graphqlconf-23" ,
16
- text : "Explore Sponsorship Opportunity" ,
17
+ text : "Sponsorship sales have closed" ,
18
+ active : false ,
17
19
} ,
18
20
{
19
21
href : "https://powerforms.docusign.net/ba1e05a3-244d-4c94-9b3a-fd769966e479?env=na3&acct=f30e10ec-fea1-4dd8-a262-384a61edabb5&accountId=f30e10ec-fea1-4dd8-a262-384a61edabb5" ,
20
22
text : "Ready To Sign" ,
23
+ active : false ,
21
24
} ,
22
25
{
23
26
href :
"mailto:[email protected] ?subject=Sponsorships" ,
@@ -37,7 +40,11 @@ export default () => {
37
40
</ div >
38
41
< div className = "flex justify-center items-center gap-4 flex-col sm:flex-row" >
39
42
{ 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
+ >
41
48
{ button . text }
42
49
</ ButtonConf >
43
50
) ) }
@@ -64,17 +71,7 @@ export default () => {
64
71
GraphQL.
65
72
</ p >
66
73
< 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 >
78
75
< br />
79
76
< p >
80
77
GraphQLConf will attract members of the GraphQL community from
You can’t perform that action at this time.
0 commit comments