File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change
1
+ import clsx from "clsx"
2
+ import { HTMLAttributes } from "react"
3
+
4
+ interface WhatToExpectSectionProps extends HTMLAttributes < HTMLElement > { }
5
+
6
+ export default function WhatToExpectSection ( {
7
+ className,
8
+ ...rest
9
+ } : WhatToExpectSectionProps ) {
10
+ return (
11
+ < section className = { clsx ( "text-neu-900" , className ) } { ...rest } >
12
+ < h1 > What to expect</ h1 >
13
+ < dl className = "uppercase [text-box:trim_cap]" >
14
+ < li className = "p-6" >
15
+ < span className = "text-[72px]" > 3</ span > days
16
+ </ li >
17
+ < li className = "p-6" > 23 speakers</ li >
18
+ < li className = "p-6" > 36 panels & workshops </ li >
19
+ < li className = "p-6" > 1 unique venue</ li >
20
+ </ dl >
21
+ </ section >
22
+ )
23
+ }
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import { Sponsors } from "./sponsors"
9
9
import { Speakers } from "./speakers"
10
10
import { RegisterToday } from "./components/register-today"
11
11
import { Hero } from "./components/hero"
12
+ import WhatToExpectSection from "./components/what-to-expect"
12
13
13
14
export const metadata : Metadata = {
14
15
title : "GraphQLConf 2025 — Sept 08-10" ,
@@ -35,7 +36,8 @@ export default function Page() {
35
36
< main >
36
37
< Hero />
37
38
< div className = "mx-auto max-w-[90rem]" >
38
- < RegisterToday className = "my-8 md:mb-16 md:mt-24" />
39
+ < RegisterToday className = "mt-8 md:mb-16 md:mt-24" />
40
+ < WhatToExpectSection className = "mt-8" />
39
41
</ div >
40
42
< div className = "container my-20 flex flex-col gap-20 md:my-32 md:gap-32" >
41
43
< Intro />
You can’t perform that action at this time.
0 commit comments