Skip to content

Commit 42c5f17

Browse files
committed
Update event type for ESWEEK tutorial.
1 parent 8084d9a commit 42c5f17

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

src/components/Events/events.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export interface Event {
55
location: string;
66
description: string;
77
link?: string;
8-
type: "conference" | "workshop" | "meetup" | "webinar" | "hackathon";
8+
type: "conference" | "workshop" | "meetup" | "webinar" | "hackathon" | "tutorial";
99
isUpcoming: boolean;
1010
isExternal?: boolean; // true if link goes to external site
1111
}
@@ -66,7 +66,7 @@ export const events: Event[] = [
6666
description:
6767
"A comprehensive tutorial introducing Lingua Franca, a polyglot coordination language for concurrent and time-sensitive applications. Part of the Embedded Systems Week (ESWEEK) 2021.",
6868
link: "/events/esweek-2021-tutorial",
69-
type: "workshop",
69+
type: "tutorial",
7070
isUpcoming: false,
7171
},
7272
];

src/components/Events/styles.module.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,16 @@
7676
color: #fce4ec;
7777
}
7878

79+
.tutorial {
80+
background-color: #e0f7fa;
81+
color: #00838f;
82+
}
83+
84+
[data-theme="dark"] .tutorial {
85+
background-color: #00838f;
86+
color: #e0f7fa;
87+
}
88+
7989
.eventMeta {
8090
display: flex;
8191
flex-wrap: wrap;

0 commit comments

Comments
 (0)