File tree Expand file tree Collapse file tree 3 files changed +24
-3
lines changed Expand file tree Collapse file tree 3 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 1
1
: root ,
2
2
.light {
3
3
--color-pri-lighter : 319 100% 90% ;
4
- --color-pri-light : 319 100% 90 % ;
5
- --color-pri-base : 319 100% 44% ;
4
+ --color-pri-light : 318 100% 80 % ;
5
+ --color-pri-base : 319 100% 44.1 % ;
6
6
--color-pri-dark : 319 100% 30% ;
7
7
--color-pri-darker : 319 100% 20% ;
8
8
Original file line number Diff line number Diff line change
1
+ import { clsx } from "clsx"
2
+
3
+ import FoundationWordmark from "../assets/graphql-foundation-wordmark.svg?svgr"
4
+
5
+ export function GraphQLFoundationCard ( { className } : { className ?: string } ) {
6
+ return (
7
+ < section className = { clsx ( "gql-conf-section" , className ) } >
8
+ < div className = "flex divide-neu-300 border border-neu-300 bg-neu-100 dark:divide-neu-100 dark:border-neu-100 dark:bg-neu-50 max-md:flex-col max-md:divide-y md:divide-x" >
9
+ < div className = "items-center px-8 py-10 md:px-16 md:py-24" >
10
+ < FoundationWordmark className = "mx-auto h-[68px] text-pri-base dark:text-pri-light md:h-[100px] [&_g]:fill-current" />
11
+ </ div >
12
+ < p className = "text-pretty px-8 py-10 typography-body-lg max-md:text-center md:px-16 md:py-24" >
13
+ GraphQLConf is presented by the GraphQL Foundation, uniting the global
14
+ GraphQL community to promote education, adoption, and advancement of
15
+ GraphQL.
16
+ </ p >
17
+ </ div >
18
+ </ section >
19
+ )
20
+ }
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import TopMindsSection from "./components/top-minds"
10
10
import { GetYourTicket } from "./components/get-your-ticket"
11
11
import { RegisterSection } from "./components/register-section"
12
12
import { Sponsors } from "./components/sponsors"
13
-
13
+ import { GraphQLFoundationCard } from "./components/graphql-foundation-card"
14
14
export const metadata : Metadata = {
15
15
title : "GraphQLConf 2025 — Sept 08-10" ,
16
16
}
@@ -33,6 +33,7 @@ export default function Page() {
33
33
< CallForProposals />
34
34
< Sponsor />
35
35
< Venue />
36
+ < GraphQLFoundationCard />
36
37
< FAQ />
37
38
</ div >
38
39
</ main >
You can’t perform that action at this time.
0 commit comments