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({
2828} : {
2929 children : ReactNode
3030} ) : ReactElement {
31+ // Change to similar color to separate it from the 2024 info
32+ const primary = "#d946ef"
33+ const hover = "#c026d3"
3134 return (
3235 < >
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 >
3348 < Header
3449 logo = {
3550 < NextLink
@@ -74,7 +89,10 @@ export default function ConfLayout({
7489 [
7590 { children : "GraphQL" , href : "/" } ,
7691 { 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+ } ,
7896 { children : "Diversity & Inclusion" , href : "/conf/2023/faq/#dni" } ,
7997 ] ,
8098 ] }
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ export default function Page() {
4949 href = "/conf/2024/speak"
5050 className = "whitespace-nowrap with-arrow w-40 hover:text-primary transition-colors"
5151 >
52- Join as a Speaker
52+ Submit to Speak
5353 </ a >
5454 < a
5555 href = "/conf/2024/sponsor"
Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ const includes: string[] = [
3535 "Full-day GraphQL workshop" ,
3636 "Lunch and all-day beverages" ,
3737 "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 " ,
4040]
4141
4242const classes = {
@@ -71,12 +71,12 @@ export function Pricing() {
7171 </ Button >
7272 </ div >
7373 < div className = { classes . container } >
74- < h3 className = { classes . heading } > What's included ?</ h3 >
74+ < h3 className = { classes . heading } > What's Included ?</ h3 >
7575 < div className = "grid md:grid-cols-2 xl:grid-cols-3 gap-10 text-2xl" >
7676 { includes . map ( ( item , i ) => (
7777 < div key = { i } className = "flex items-center gap-4" >
7878 < CheckIcon className = "text-primary h-7" />
79- < p className = "" > { item } </ p >
79+ < p > { item } </ p >
8080 </ div >
8181 ) ) }
8282 </ div >
You can’t perform that action at this time.
0 commit comments