From 8462e86d89a1b07ee789a2f187f3326e790ca0f1 Mon Sep 17 00:00:00 2001 From: beerose Date: Wed, 9 Aug 2023 17:08:57 +0200 Subject: [PATCH] conf: add unconference to list of events; link to sched to build the agenda --- src/templates/schedule.tsx | 8 +++++++- src/utils/eventsColors.ts | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/templates/schedule.tsx b/src/templates/schedule.tsx index 8b5d22c7ea..5173cc8b6f 100644 --- a/src/templates/schedule.tsx +++ b/src/templates/schedule.tsx @@ -30,7 +30,7 @@ const ScheduleTemplate: FC> = ({ subject to change.

-
+
{eventsColors.map(([event, color]) => (
@@ -43,6 +43,12 @@ const ScheduleTemplate: FC> = ({ ))}
+ + 🔗 Bookmark sessions & plan your days on Sched +
diff --git a/src/utils/eventsColors.ts b/src/utils/eventsColors.ts index 445682a3fb..9cc4bc9a99 100644 --- a/src/utils/eventsColors.ts +++ b/src/utils/eventsColors.ts @@ -4,4 +4,5 @@ export const eventsColors = [ ["Lightning Talks", "rgb(22, 165, 150)", "rgb(22, 165, 150, 0.1)"], ["Session Presentations", "rgb(236, 70, 70)", "rgb(236, 70, 70, 0.1)"], ["Workshops", "rgb(230, 129, 47)", "rgb(230, 129, 47, 0.1)"], + ["Unconference", "rgb(255, 209, 102)", "rgb(255, 209, 102, 0.1)"], ]