-
-
Notifications
You must be signed in to change notification settings - Fork 387
/
Schedule.svelte
47 lines (45 loc) · 1.36 KB
/
Schedule.svelte
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<script lang="ts">
import InfoBox from '$lib/layout/InfoBox.svelte';
import PersonLink from '$lib/layout/PersonLink.svelte';
</script>
<InfoBox title="Friday schedule">
<p>
JSCraftCamp 2024 will be facilitated by <PersonLink
linkedIn="https://www.linkedin.com/in/stefanie-hasler-05458a4/"
mastodon="">Stefanie Hasler</PersonLink
>!
</p>
<ol>
<li>09:00 - 10:00 Doors open, breakfast</li>
<li>10:00 - 11:00 Opening and Marketplace</li>
<li>11:00 - 13:00 Two session slots</li>
<li>13:00 - 14:00 Lunch</li>
<li>14:00 - 17:00 Three session slots</li>
<li>17:00 - 18:00 Review and Learnings</li>
<li>18:00 - 22:00 Pizza, board games, networking, party</li>
</ol>
</InfoBox>
<InfoBox title="Saturday schedule">
<p>
If you did not attend the JSCraftCamp before and are only able to come on Saturday, please try
to be there as early as possible. The orga team, facilitator and participants will help you
understand the format better if you missed the Opening on Friday.
</p>
<ol>
<li>09:00 - 10:00 Doors open, breakfast</li>
<li>10:00 - 11:00 Marketplace</li>
<li>11:00 - 13:00 Two session slots</li>
<li>13:00 - 14:00 Lunch</li>
<li>14:00 - 17:00 Three session slots</li>
<li>17:00 - 18:00 Review, Learnings and closing</li>
</ol>
</InfoBox>
<style>
ol {
display: grid;
gap: 1em;
list-style: none;
margin: 0;
padding: 0;
}
</style>