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 11: root ,
22.light {
33 --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 % ;
66 --color-pri-dark : 319 100% 30% ;
77 --color-pri-darker : 319 100% 20% ;
88
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"
1010import { GetYourTicket } from "./components/get-your-ticket"
1111import { RegisterSection } from "./components/register-section"
1212import { Sponsors } from "./components/sponsors"
13-
13+ import { GraphQLFoundationCard } from "./components/graphql-foundation-card"
1414export const metadata : Metadata = {
1515 title : "GraphQLConf 2025 — Sept 08-10" ,
1616}
@@ -33,6 +33,7 @@ export default function Page() {
3333 < CallForProposals />
3434 < Sponsor />
3535 < Venue />
36+ < GraphQLFoundationCard />
3637 < FAQ />
3738 </ div >
3839 </ main >
You can’t perform that action at this time.
0 commit comments