File tree Expand file tree Collapse file tree 3 files changed +24
-6
lines changed Expand file tree Collapse file tree 3 files changed +24
-6
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,23 @@ export default function ConfLayout({
28
28
} : {
29
29
children : ReactNode
30
30
} ) : ReactElement {
31
+ // Change to similar color to separate it from the 2024 info
32
+ const primary = "#d946ef"
33
+ const hover = "#c026d3"
31
34
return (
32
35
< >
36
+ < style > { `
37
+ .text-primary,
38
+ .hover\\:text-primary:hover {
39
+ color: ${ primary } ;
40
+ }
41
+ .bg-primary {
42
+ background: ${ primary } ;
43
+ }
44
+ .hover\\:bg-primary\\/40:hover {
45
+ background: ${ hover } ;
46
+ }
47
+ ` } </ style >
33
48
< Header
34
49
logo = {
35
50
< NextLink
@@ -74,7 +89,10 @@ export default function ConfLayout({
74
89
[
75
90
{ children : "GraphQL" , href : "/" } ,
76
91
{ children : "GraphQL Foundation" , href : "/foundation" } ,
77
- { children : "Code of Conduct" , href : "/conf/2023/faq/#codeofconduct" } ,
92
+ {
93
+ children : "Code of Conduct" ,
94
+ href : "/conf/2023/faq/#codeofconduct" ,
95
+ } ,
78
96
{ children : "Diversity & Inclusion" , href : "/conf/2023/faq/#dni" } ,
79
97
] ,
80
98
] }
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ export default function Page() {
49
49
href = "/conf/2024/speak"
50
50
className = "whitespace-nowrap with-arrow w-40 hover:text-primary transition-colors"
51
51
>
52
- Join as a Speaker
52
+ Submit to Speak
53
53
</ a >
54
54
< a
55
55
href = "/conf/2024/sponsor"
Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ const includes: string[] = [
35
35
"Full-day GraphQL workshop" ,
36
36
"Lunch and all-day beverages" ,
37
37
"Entry to Sponsor Showcase" ,
38
- "GraphQLConf event T -shirt" ,
39
- "Access to watch all sessions" ,
38
+ "GraphQLConf event t -shirt" ,
39
+ "Access to watch all sessions post-event " ,
40
40
]
41
41
42
42
const classes = {
@@ -71,12 +71,12 @@ export function Pricing() {
71
71
</ Button >
72
72
</ div >
73
73
< div className = { classes . container } >
74
- < h3 className = { classes . heading } > What's included ?</ h3 >
74
+ < h3 className = { classes . heading } > What's Included ?</ h3 >
75
75
< div className = "grid md:grid-cols-2 xl:grid-cols-3 gap-10 text-2xl" >
76
76
{ includes . map ( ( item , i ) => (
77
77
< div key = { i } className = "flex items-center gap-4" >
78
78
< CheckIcon className = "text-primary h-7" />
79
- < p className = "" > { item } </ p >
79
+ < p > { item } </ p >
80
80
</ div >
81
81
) ) }
82
82
</ div >
You can’t perform that action at this time.
0 commit comments