Skip to content

Commit 49720e7

Browse files
authored
Merge pull request #30 from hasparus/new-landing--trusted-by
new landing — trusted by
2 parents f9132e7 + 69d2bf9 commit 49720e7

File tree

40 files changed

+531
-34
lines changed

40 files changed

+531
-34
lines changed

src/app/(development)/workroom/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export default function WorkroomPage() {
3333
}
3434

3535
return (
36-
<main className="gql-conf-section gql-conf-container [&>p]:pt-8 [&>p]:font-mono [&>p]:text-sm [&>p]:text-neu-600">
36+
<main className="gql-section gql-container [&>p]:pt-8 [&>p]:font-mono [&>p]:text-sm [&>p]:text-neu-600">
3737
<p>SpeakerOpengraphImage</p>
3838
<SpeakerOpengraphImage
3939
speaker={enisdenjo}

src/app/conf/2025/code-of-conduct/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export default function ResourcesPage() {
6565
</Button>
6666
</Hero>
6767
<main className="gql-all-anchors-focusable gql-conf-navbar-strip text-neu-900 before:bg-white/40 before:dark:bg-blk/30">
68-
<div className="gql-conf-container gql-conf-section xl:mb-16 xl:mt-8">
68+
<div className="gql-container gql-section xl:mb-16 xl:mt-8">
6969
<ServerComponentMarkdown
7070
markdown={markdown}
7171
extractToc

src/app/conf/2025/components/become-a-sponsor/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export function BecomeASponsor() {
99
return (
1010
<section id="sponsors" className="relative overflow-hidden">
1111
<Stripes />
12-
<div className="gql-conf-container gql-conf-section xl:py-16">
12+
<div className="gql-container gql-section xl:py-16">
1313
<header className="flex flex-col gap-x-48 gap-y-4 md:flex-row md:items-end md:justify-between">
1414
<div>
1515
<h2 className="typography-h2">Become a Sponsor</h2>

src/app/conf/2025/components/call-for-proposals.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ export function CallForProposals() {
329329
<section
330330
id="speakers"
331331
// todo: the part with `dark:` here is temporary until we have a dark mode version of this section
332-
className="gql-conf-section gql-conf-container dark:text-neu-0"
332+
className="gql-section gql-container dark:text-neu-0"
333333
>
334334
<div className="flex *:basis-1/2 max-lg:flex-col">
335335
<div className="border-sec-dark bg-sec-light p-4 lg:border-r lg:p-8 xl:p-16">

src/app/conf/2025/components/cta-card-section/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export function CtaCardSection({
1717
...rest
1818
}: CtaCardSectionProps) {
1919
return (
20-
<div className="gql-conf-section">
20+
<div className="gql-section">
2121
<section
2222
className="relative overflow-hidden bg-gradient-to-r from-pri-dark to-pri-base p-6 dark:from-pri-darker dark:to-pri-dark sm:p-16"
2323
{...rest}

src/app/conf/2025/components/get-your-ticket/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function GetYourTicket({ className }: { className?: string }) {
1515
)}
1616
>
1717
<Stripes />
18-
<div className="gql-conf-container gql-conf-section relative">
18+
<div className="gql-container gql-section relative">
1919
<header className="flex flex-wrap justify-between gap-6 md:items-end">
2020
<h2 className="typography-h2 whitespace-pre text-white">
2121
Get your ticket

src/app/conf/2025/components/graphql-foundation-card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import FoundationWordmark from "../assets/graphql-foundation-wordmark.svg?svgr"
44

55
export function GraphQLFoundationCard({ className }: { className?: string }) {
66
return (
7-
<section className={clsx("gql-conf-section", className)}>
7+
<section className={clsx("gql-section", className)}>
88
<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">
99
<div className="flex items-center justify-center px-8 py-10 lg:px-16 lg:py-24">
1010
<FoundationWordmark className="h-[68px] text-rhodamine dark:text-current lg:h-[100px] [&_g]:fill-current" />

src/app/conf/2025/components/hero/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export function Hero(props: HeroProps) {
3838
>
3939
<article className="relative">
4040
{props.stripes || <HeroStripes />}
41-
<div className="gql-conf-container mx-auto flex max-w-full flex-col gap-12 overflow-hidden p-4 pt-6 sm:p-8 sm:pt-12 md:gap-12 md:bg-left md:p-12 lg:px-24 lg:pb-16 lg:pt-24">
41+
<div className="gql-container mx-auto flex max-w-full flex-col gap-12 overflow-hidden p-4 pt-6 sm:p-8 sm:pt-12 md:gap-12 md:bg-left md:p-12 lg:px-24 lg:pb-16 lg:pt-24">
4242
<div className="flex gap-10 max-md:flex-col md:justify-between">
4343
{props.pageName ? (
4444
<div>

src/app/conf/2025/components/register-section/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export function RegisterSection({ className, ...props }: RegisterSectionProps) {
99
return (
1010
<section
1111
className={clsx(
12-
"gql-conf-section flex gap-x-12 gap-y-10 py-8 max-md:flex-col sm:py-12 md:py-24 xl:gap-x-24",
12+
"gql-section flex gap-x-12 gap-y-10 py-8 max-md:flex-col sm:py-12 md:py-24 xl:gap-x-24",
1313
className,
1414
)}
1515
{...props}

src/app/conf/2025/components/register-today/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export function RegisterToday({ className }: RegisterTodayProps) {
1414
return (
1515
<section
1616
className={clsx(
17-
"gql-conf-section flex gap-10 max-lg:flex-col-reverse",
17+
"gql-section flex gap-10 max-lg:flex-col-reverse",
1818
className,
1919
)}
2020
>

0 commit comments

Comments
 (0)