diff --git a/src/components/Conf/Header/index.tsx b/src/components/Conf/Header/index.tsx
index 8f81604bb8..5016539d07 100644
--- a/src/components/Conf/Header/index.tsx
+++ b/src/components/Conf/Header/index.tsx
@@ -9,7 +9,7 @@ interface LinkItem {
const links: LinkItem[] = [
{ text: "Attend", href: "/conf/#attend" },
- { text: "Speak", href: "/conf/speak/" },
+ { text: "Program", href: "/conf/program/" },
{ text: "Sponsor", href: "/conf/sponsor/" },
{ text: "Partner", href: "/conf/partner/" },
{ text: "FAQ", href: "/conf/faq/" },
diff --git a/src/pages/conf/index.tsx b/src/pages/conf/index.tsx
index 91f629307e..e7f1a08c5b 100644
--- a/src/pages/conf/index.tsx
+++ b/src/pages/conf/index.tsx
@@ -13,16 +13,12 @@ import SeoConf, { defaults as seoDefaults } from "../../components/Conf/Seo"
import { CalendarIcon, GlobeIcon } from "@radix-ui/react-icons"
export default () => {
- const today = new Date()
- const expiredDate = new Date("2023-06-10")
- const isExpired = expiredDate > today
-
return (
-
+

{
San Francisco Bay Area, CA
-
+
Join as a Sponsor
Join as a Partner
- {isExpired && (
- Submit to Speak
- )}
+ View the Schedule
diff --git a/src/pages/conf/program.tsx b/src/pages/conf/program.tsx
new file mode 100644
index 0000000000..dae95df133
--- /dev/null
+++ b/src/pages/conf/program.tsx
@@ -0,0 +1,60 @@
+import React from "react"
+import FooterConf from "../../components/Conf/Footer"
+import HeaderConf from "../../components/Conf/Header"
+import LayoutConf from "../../components/Conf/Layout"
+import { ReactComponent as TheGuild } from "../../../static/img/conf/Sponsors/TheGuild.svg"
+import SeoConf from "../../components/Conf/Seo"
+import { Script } from "gatsby"
+
+export default () => {
+ return (
+
+
+
+
+
GraphQLConf 2023 Program
+
+ September 19-21, 2023 I San Francisco Bay Area, CA
+
+ We are excited to announce our speakers for GraphQLConf 2023.
+ Please check back for more details about the program.
+
+
+
+
+ Workshop Day
+
+ Join us for a GraphQLConf Workshop Day on September 19. Workshops
+ are included in GraphQLConf registration though pre-registration
+ is required -{" "}
+
+ register now
+
+ , or modify your registration and join us! Workshop space is
+ available on a first come, first served basis.
+
+ Thank you to our Workshop Day sponsor, The Guild.
+
+
+
+
+
+
+
+
+ )
+}
+
+export function Head() {
+ return
+}