Skip to content

Commit 858478e

Browse files
committed
Add GraphQLFoundationCard
1 parent 25d343f commit 858478e

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

src/app/colors.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
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

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
}

src/app/conf/2025/page.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import TopMindsSection from "./components/top-minds"
1010
import { GetYourTicket } from "./components/get-your-ticket"
1111
import { RegisterSection } from "./components/register-section"
1212
import { Sponsors } from "./components/sponsors"
13-
13+
import { GraphQLFoundationCard } from "./components/graphql-foundation-card"
1414
export 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>

0 commit comments

Comments
 (0)