diff --git a/src/app/conf/2026/components/call-for-proposals.tsx b/src/app/conf/2026/components/call-for-proposals.tsx index c91eccaeba..3e41d829fd 100644 --- a/src/app/conf/2026/components/call-for-proposals.tsx +++ b/src/app/conf/2026/components/call-for-proposals.tsx @@ -28,6 +28,10 @@ function DatesTab() { term="Event Dates" definition="Wednesday, May 6 - Thursday, May 7" /> + ) } diff --git a/src/app/conf/2026/components/footer/index.tsx b/src/app/conf/2026/components/footer/index.tsx index 447de91ebc..acbb0ad274 100644 --- a/src/app/conf/2026/components/footer/index.tsx +++ b/src/app/conf/2026/components/footer/index.tsx @@ -33,6 +33,12 @@ export function Footer({ 07, 2026

+

+ WG Day: + + + +

Menlo Park, California
diff --git a/src/app/conf/2026/components/navbar.tsx b/src/app/conf/2026/components/navbar.tsx index bd700baaa9..eec2b12c81 100644 --- a/src/app/conf/2026/components/navbar.tsx +++ b/src/app/conf/2026/components/navbar.tsx @@ -66,6 +66,9 @@ export function Navbar({ links, year }: NavbarProps): ReactElement { -

+

+ WG Day: +

Menlo Park, California
diff --git a/src/app/conf/2026/components/register-today/index.tsx b/src/app/conf/2026/components/register-today/index.tsx index dde2c02002..d2f10788f3 100644 --- a/src/app/conf/2026/components/register-today/index.tsx +++ b/src/app/conf/2026/components/register-today/index.tsx @@ -36,12 +36,27 @@ export function RegisterToday({ className }: RegisterTodayProps) { shape the next decade of APIs!

-
+
+
+

+ Following the conference,{" "} + + WG Day + {" "} + brings working group members and maintainers together to continue + the momentum. +

+
+
+ +
) diff --git a/src/app/conf/2026/faq.tsx b/src/app/conf/2026/faq.tsx index 2b8cf169b9..567ffcba79 100644 --- a/src/app/conf/2026/faq.tsx +++ b/src/app/conf/2026/faq.tsx @@ -12,6 +12,19 @@ const FAQS = [ ), }, + { + question: "Is anything happening on May 08 after the main conference?", + answer: ( + <> + Working Group Day is on May 08, 2026. For attendance, schedule, and + day-of logistics, see{" "} + + the WG Day page + + . + + ), + }, { question: "Can I sponsor the event?", answer: ( diff --git a/src/app/conf/2026/layout.tsx b/src/app/conf/2026/layout.tsx index 600d873910..cf70800fd2 100644 --- a/src/app/conf/2026/layout.tsx +++ b/src/app/conf/2026/layout.tsx @@ -46,6 +46,7 @@ export default function Layout({ href: "https://register.linuxfoundation.org/graphql-conf-2026", }, { children: "Sponsors", href: "/conf/2026/#sponsors" }, + { children: "WG Day", href: "/conf/2026/wg-day" }, { children: "Resources", href: "/conf/2026/resources" }, { children: "2025 Event Photos", diff --git a/src/app/conf/2026/page.tsx b/src/app/conf/2026/page.tsx index 306cbb4054..04fec01555 100644 --- a/src/app/conf/2026/page.tsx +++ b/src/app/conf/2026/page.tsx @@ -21,7 +21,7 @@ import { HeroImage } from "./components/hero/hero-image" import { HERO_MARQUEE_ITEMS } from "./utils" export const metadata: Metadata = { - title: "GraphQLConf 2026 — May 06-07", + title: "GraphQLConf 2026 — May 06-07 + WG Day May 08", } export default function Page() { @@ -68,11 +68,7 @@ export default function Page() { title="Get your ticket" description="Join two transformative days of expert insights and innovation to shape the next decade of APIs!" > - diff --git a/src/app/conf/2026/wg-day/page.tsx b/src/app/conf/2026/wg-day/page.tsx new file mode 100644 index 0000000000..68227e1c32 --- /dev/null +++ b/src/app/conf/2026/wg-day/page.tsx @@ -0,0 +1,112 @@ +import { Metadata } from "next" + +import { Button } from "@/app/conf/_design-system/button" + +import { Hero, HeroStripes } from "../components/hero" +import { NavbarPlaceholder } from "../components/navbar" + +export const metadata: Metadata = { + title: "WG Day | GraphQLConf 2026", + description: + "Working Group Day at GraphQLConf 2026 on May 08 in Menlo Park for GraphQL working group members and maintainers of key GraphQL OSS, with intentionally unstructured time for technical discussion and social connection.", +} + +export default function WGDayPage() { + return ( + <> + + + } + > +

+ A day for GraphQL working group members and maintainers of key GraphQL + open source software to socialize, strategize, and build on the + momentum of the main conference. +

+
+

+ Date:{" "} + +

+

+ Time: 9:30 AM-4:30 PM PT +

+

+ Location: Meta MPK 21, Menlo Park +

+
+
+ +
+
+
+

What is it?

+

+ WG Day is a low-overhead in-person collaboration day right after + GraphQLConf. There is no fixed schedule, no recording, and no + formal programming. This unstructured format is deliberate: it is + equally valid to spend the day diving deep on proposals, planning + across groups, or simply socializing and getting to know each + other. +

+
+ +
+

Attendance

+

+ Capacity is limited, so invitations will go to regular working + group participants first. Additional attendees can join via a + waitlist, with priority for maintainers of GraphQL-related open + source software (clients, servers, libraries, frameworks, tooling, + and documentation), plus Foundation board members and GraphQL + Ambassadors. Room capacity is 48. +

+
+ +
+

Logistics

+
    +
  • + Location: Meta MPK 21 (adjacent to the main conference building) +
  • +
  • + Time: Drop-in between 9:30 AM-4:30 PM PT (last entry 2:00 PM +
  • +
  • + Informal format: drop in and out as needed; early departures for + travel are absolutely fine +
  • +
  • +
  • + Lunch plan: we expect to head to the cafeteria; if you arrive + around midday, you may need to meet the group there +
  • +
+
+ +
+

Contact

+

+ Questions about attendance, waitlist priority, or logistics: +

+ +
+
+
+ + ) +}