Skip to content

Commit 29ff688

Browse files
authored
conf: add unconference to list of events; link to sched to build the agenda (graphql#1525)
1 parent 8ab0a16 commit 29ff688

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

src/templates/schedule.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const ScheduleTemplate: FC<PageProps<{}, { schedule: ScheduleSession[] }>> = ({
3030
<b>subject to change</b>.
3131
</p>
3232

33-
<div className="flex lg:flex-row flex-col items-start mt-8">
33+
<div className="flex lg:flex-row flex-col items-start my-8">
3434
<div className="flex gap-2.5 flex-wrap w-full">
3535
{eventsColors.map(([event, color]) => (
3636
<div className="flex items-center">
@@ -43,6 +43,12 @@ const ScheduleTemplate: FC<PageProps<{}, { schedule: ScheduleSession[] }>> = ({
4343
))}
4444
</div>
4545
</div>
46+
<a
47+
href="https://graphqlconf23.sched.com/"
48+
className="rounded-md border-2 py-2 font-normal underline-offset-2"
49+
>
50+
🔗 Bookmark sessions & plan your days on Sched
51+
</a>
4652
<ScheduleList scheduleData={schedule} />
4753
</section>
4854
</div>

src/utils/eventsColors.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ export const eventsColors = [
44
["Lightning Talks", "rgb(22, 165, 150)", "rgb(22, 165, 150, 0.1)"],
55
["Session Presentations", "rgb(236, 70, 70)", "rgb(236, 70, 70, 0.1)"],
66
["Workshops", "rgb(230, 129, 47)", "rgb(230, 129, 47, 0.1)"],
7+
["Unconference", "rgb(255, 209, 102)", "rgb(255, 209, 102, 0.1)"],
78
]

0 commit comments

Comments
 (0)