diff --git a/src/app/day/2026/amsterdam/page.tsx b/src/app/day/2026/amsterdam/page.tsx index 5c0fd2e5fb..1fb9e51928 100644 --- a/src/app/day/2026/amsterdam/page.tsx +++ b/src/app/day/2026/amsterdam/page.tsx @@ -1,6 +1,85 @@ -// Amsterdam is TBC — redirect to /day until confirmed -import { redirect } from "next/navigation" +import { Metadata } from "next" + +import { Button } from "@/app/conf/_design-system/button" +import { Hero, HeroDateAndLocation } from "../components/hero" +import { AboutSection } from "../components/about-section" +import { WhyAttendSection } from "../components/why-attend-section" +import { + BecomeASpeakerSection, + CfpButton, +} from "../components/become-a-speaker" +import { EventPartnersSection } from "../components/event-partners" +import { CtaCardSection } from "../components/cta-card-section" +import { MarqueeRows } from "@/app/conf/2026/components/marquee-rows" +import { PastSpeakersSection } from "../components/past-speakers" +import { NavbarPlaceholder } from "../components/navbar" +import { GallerySection } from "../../gallery-section" + +const MARQUEE_ITEMS = [ + ["AMSTERDAM", "JUNE 2026", "GRAPHQL DAY", "FOST", "COMMUNITY", "APIs"], + [ + "OPEN SOURCE", + "WORKSHOPS", + "FEDERATION", + "DEVELOPER EXPERIENCE", + "GRAPHQL DAY", + "AMSTERDAM", + ], +] + +export const metadata: Metadata = { + title: "GraphQL Day @ FOST AMSTERDAM — June 9-10", +} export default function AmsterdamPage() { - redirect("/day") + return ( + <> + + + + + + + Tickets coming soon + + + + + + + + + + + + + + + Tickets coming soon + + + + + + > + ) } diff --git a/src/app/day/events-data.ts b/src/app/day/events-data.ts index 36d4b9d26b..7d5222ee04 100644 --- a/src/app/day/events-data.ts +++ b/src/app/day/events-data.ts @@ -24,15 +24,14 @@ export const EVENTS: EventMapItem[] = [ lon: -74.006, lat: 40.7128, }, - // Amsterdam TBC — uncomment when confirmed - // { - // id: "amsterdam", - // city: "Amsterdam", - // date: "Jun 9-10 [TBC]", - // href: "/day/2026/amsterdam", - // lon: 4.9041, - // lat: 52.3676, - // }, + { + id: "amsterdam", + city: "Amsterdam", + date: "Jun 9-10", + href: "/day/2026/amsterdam", + lon: 4.9041, + lat: 52.3676, + }, { id: "melbourne", city: "Melbourne",