diff --git a/src/app/conf/2025/components/register-section/index.tsx b/src/app/conf/2025/components/register-section/index.tsx new file mode 100644 index 0000000000..05b83ff920 --- /dev/null +++ b/src/app/conf/2025/components/register-section/index.tsx @@ -0,0 +1,90 @@ +import { Button } from "@/app/conf/_design-system/button" +import { clsx } from "clsx" +import { BECOME_A_SPEAKER_LINK } from "../../links" + +export interface RegisterSectionProps + extends React.HTMLAttributes {} + +export function RegisterSection({ className, ...props }: RegisterSectionProps) { + return ( +
+
+

Register

+

+ Join a diverse community of GraphQL developers, architects, and + enthusiasts while experiencing premium content and networking + opportunities in a vendor-neutral environment. +

+

+ We never sell attendee lists or contact information, nor do we + authorize others to do so. If you receive an email claiming to sell an + attendee list for a Linux Foundation event, please forward it to + events@linuxfoundation.org. +

+
+
+
+

Speakers

+

+ You should have received a registration link in your acceptance + email. If you did not, please contact us for more details:{" "} + + cfp@linuxfoundation.org + +

+ +
+
+

Sponsors

+

+ A registration link was shared in an email to your company's + sponsorship contact. Please reach out to them if you need to + register as a Sponsor. For further questions, please email us:{" "} + + graphql_events@linuxfoundation.org + +

+ +
+
+

Media

+

+ If you are a member of the media interested in attending this event, + write us an email. +

+ +
+
+
+ ) +} diff --git a/src/app/conf/2025/page.tsx b/src/app/conf/2025/page.tsx index 722edcc88b..c02f4c3d6f 100644 --- a/src/app/conf/2025/page.tsx +++ b/src/app/conf/2025/page.tsx @@ -12,6 +12,8 @@ import { Hero } from "./components/hero" import WhatToExpectSection from "./components/what-to-expect" import TopMindsSection from "./components/top-minds" import { GetYourTicket } from "./components/get-your-ticket" +import { RegisterSection } from "./components/register-section" + export const metadata: Metadata = { title: "GraphQLConf 2025 — Sept 08-10", } @@ -20,13 +22,15 @@ export default function Page() { return (
-
+
- +
+ +