Skip to content

Commit 7bd2850

Browse files
committed
Add a footer to the schedule page
1 parent 658bbbf commit 7bd2850

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

src/app/conf/2025/schedule/page.tsx

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@ import { Metadata } from "next"
33
import { schedule } from "../_data"
44
import { ScheduleList } from "./_components/schedule-list"
55
import { filterCategories2024 } from "./_components/filter-categories"
6-
import { eventsColors } from "../utils"
6+
import { eventsColors, HERO_MARQUEE_ITEMS } from "../utils"
77
import { Button } from "../../_design-system/button"
88
import { GET_TICKETS_LINK } from "../links"
99
import { Hero } from "../components/hero"
10+
import { CtaCardSection } from "../components/cta-card-section"
11+
import { MarqueeRows } from "../components/marquee-rows"
12+
import { FAQ } from "../faq"
1013

1114
const year = "2025"
1215

@@ -33,6 +36,23 @@ export default function SchedulePage() {
3336
scheduleData={schedule}
3437
/>
3538
</div>
39+
<div className="gql-conf-navbar-strip border-t border-neu-200 bg-neu-0 py-8 text-neu-900 before:bg-white/40 dark:border-neu-100 before:dark:bg-blk/30 xl:py-16">
40+
<div className="gql-conf-container">
41+
<FAQ />
42+
43+
<CtaCardSection
44+
title="Get your ticket"
45+
description="Join three transformative days of expert insights and innovation to shape the next decade of APIs!"
46+
>
47+
<Button variant="primary" href={GET_TICKETS_LINK}>
48+
Get tickets
49+
</Button>
50+
</CtaCardSection>
51+
<div className="py-8">
52+
<MarqueeRows variant="secondary" items={HERO_MARQUEE_ITEMS} />
53+
</div>
54+
</div>
55+
</div>
3656
</main>
3757
)
3858
}

0 commit comments

Comments
 (0)