diff --git a/src/app/conf/2025/components/register-today/index.tsx b/src/app/conf/2025/components/register-today/index.tsx index 30539999d5..e31f22226d 100644 --- a/src/app/conf/2025/components/register-today/index.tsx +++ b/src/app/conf/2025/components/register-today/index.tsx @@ -14,7 +14,7 @@ export function RegisterToday({ className }: RegisterTodayProps) { return (
@@ -28,10 +28,10 @@ export function RegisterToday({ className }: RegisterTodayProps) { />
-

+

Let's celebrate 10 years of GraphQL together

-

+

Join three transformative days of expert insights and innovation to shape the next decade of APIs!

diff --git a/src/app/conf/2025/components/what-to-expect.tsx b/src/app/conf/2025/components/what-to-expect.tsx new file mode 100644 index 0000000000..ca43874413 --- /dev/null +++ b/src/app/conf/2025/components/what-to-expect.tsx @@ -0,0 +1,38 @@ +import clsx from "clsx" +import { HTMLAttributes } from "react" + +interface WhatToExpectSectionProps extends HTMLAttributes {} + +export default function WhatToExpectSection({ + className, + ...rest +}: WhatToExpectSectionProps) { + return ( +
+

What to expect

+
+ + + + +
+
+ ) +} + +function ListItem({ number, text }: { number: string; text: string }) { + return ( +
  • + + {number} + {" "} + {text} +
  • + ) +} diff --git a/src/app/conf/2025/page.tsx b/src/app/conf/2025/page.tsx index 739a3ed114..f2fa5e6c97 100644 --- a/src/app/conf/2025/page.tsx +++ b/src/app/conf/2025/page.tsx @@ -9,36 +9,21 @@ import { Sponsors } from "./sponsors" import { Speakers } from "./speakers" import { RegisterToday } from "./components/register-today" import { Hero } from "./components/hero" +import WhatToExpectSection from "./components/what-to-expect" export const metadata: Metadata = { title: "GraphQLConf 2025 — Sept 08-10", } -function Intro() { - return ( -
    -

    - Celebrating 10 Years of GraphQL. Three transformative days of expert - insights and innovation to shape the next decade of APIs together! -

    - - -
    - ) -} - export default function Page() { return (
    -
    - +
    + +
    -
    - +
    diff --git a/src/globals.css b/src/globals.css index aff1482ad9..8e215c2f3d 100644 --- a/src/globals.css +++ b/src/globals.css @@ -509,5 +509,5 @@ div[id^="headlessui-menu-items"] { } .gql-conf-container { - @apply w-[120rem]; + @apply mx-auto w-full max-w-[120rem]; }