diff --git a/src/app/day/2026/components/about-section.tsx b/src/app/day/2026/components/about-section.tsx index 4eb0ce5a9e..ceefe170b8 100644 --- a/src/app/day/2026/components/about-section.tsx +++ b/src/app/day/2026/components/about-section.tsx @@ -1,6 +1,14 @@ import { ReactNode } from "react" -export function AboutSection({ children }: { children?: ReactNode }) { +export function AboutSection({ + children, + date, + hostNote, +}: { + children?: ReactNode + date?: ReactNode + hostNote?: ReactNode +}) { return (
@@ -9,7 +17,8 @@ export function AboutSection({ children }: { children?: ReactNode }) { {children || ( <>

- GraphQL Day is a one-day community event hosted at{" "} + GraphQL Day is a one-day community event + {date && <> on {date}} hosted at{" "} {" "} (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..31995f151f 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,21 @@ export default function MelbournePage() {

-
- +