From 44aa2b9cd0ffa84d457abec164cef89a2b85bc70 Mon Sep 17 00:00:00 2001 From: Ben McCallum Date: Sat, 26 Sep 2026 13:51:23 +1000 Subject: [PATCH 1/2] GraphQL Day Melbourne: link tickets, date is Oct 29 Replace the disabled "Tickets coming soon" buttons with links to the FOST portal, set the GraphQL Day date to 29 October, and note that API Days spans 28-29 October in the About section. Co-Authored-By: Claude Opus 5.5 --- src/app/day/2026/components/about-section.tsx | 10 +++++++-- .../day/2026/melbourne/opengraph-image.tsx | 2 +- src/app/day/2026/melbourne/page.tsx | 21 +++++++++++-------- 3 files changed, 21 insertions(+), 12 deletions(-) diff --git a/src/app/day/2026/components/about-section.tsx b/src/app/day/2026/components/about-section.tsx index 4eb0ce5a9e..84777c9afc 100644 --- a/src/app/day/2026/components/about-section.tsx +++ b/src/app/day/2026/components/about-section.tsx @@ -1,6 +1,12 @@ import { ReactNode } from "react" -export function AboutSection({ children }: { children?: ReactNode }) { +export function AboutSection({ + children, + hostNote, +}: { + children?: ReactNode + hostNote?: ReactNode +}) { return (
@@ -17,7 +23,7 @@ export function AboutSection({ children }: { children?: ReactNode }) { FOST {" "} (Future of Software Technologies, think federation of - conferences!). + conferences!).{hostNote && <> {hostNote}}

It is an opportunity to connect with other API ecosystems, meet diff --git a/src/app/day/2026/melbourne/opengraph-image.tsx b/src/app/day/2026/melbourne/opengraph-image.tsx index 761b066efd..d532c7b840 100644 --- a/src/app/day/2026/melbourne/opengraph-image.tsx +++ b/src/app/day/2026/melbourne/opengraph-image.tsx @@ -7,6 +7,6 @@ export { export default SimpleOpengraphImage.bind(null, { pageTitle: "Melbourne", - date: "Oct 28-29, 2026", + date: "Oct 29, 2026", location: "Melbourne, Australia", }) diff --git a/src/app/day/2026/melbourne/page.tsx b/src/app/day/2026/melbourne/page.tsx index f16598c6fa..477dd90148 100644 --- a/src/app/day/2026/melbourne/page.tsx +++ b/src/app/day/2026/melbourne/page.tsx @@ -27,8 +27,11 @@ const MARQUEE_ITEMS = [ ], ] +const TICKETS_URL = + "https://portal.joinfost.io/event/future-of-software-technologies-australia-2026/f2ece7d0-7781-4c6e-a8de-3b03da1eda85/graphql-day-australia-2026" + export const metadata: Metadata = { - title: "GraphQL Day @ FOST Melbourne — Oct 28-29", + title: "GraphQL Day @ FOST Melbourne — Oct 29", } export default function MelbournePage() { @@ -38,18 +41,18 @@ export default function MelbournePage() {

-
- + Date: Sat, 26 Sep 2026 13:51:52 +1000 Subject: [PATCH 2/2] GraphQL Day Melbourne: put the date in the About sentence Co-Authored-By: Claude Opus 5.5 --- src/app/day/2026/components/about-section.tsx | 5 ++++- src/app/day/2026/melbourne/page.tsx | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/app/day/2026/components/about-section.tsx b/src/app/day/2026/components/about-section.tsx index 84777c9afc..ceefe170b8 100644 --- a/src/app/day/2026/components/about-section.tsx +++ b/src/app/day/2026/components/about-section.tsx @@ -2,9 +2,11 @@ import { ReactNode } from "react" export function AboutSection({ children, + date, hostNote, }: { children?: ReactNode + date?: ReactNode hostNote?: ReactNode }) { return ( @@ -15,7 +17,8 @@ export function AboutSection({ {children || ( <>

- GraphQL Day is a one-day community event hosted at{" "} + GraphQL Day is a one-day community event + {date && <> on {date}} hosted at{" "}

- +