Skip to content

Commit e59de54

Browse files
committed
review fixes
1 parent 1057765 commit e59de54

File tree

3 files changed

+24
-6
lines changed

3 files changed

+24
-6
lines changed

website/src/app/conf/2023/layout.tsx

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff 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
]}

website/src/app/conf/2024/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

website/src/app/conf/2024/pricing.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

4242
const 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>

0 commit comments

Comments
 (0)