File tree 1 file changed +21
-13
lines changed
1 file changed +21
-13
lines changed Original file line number Diff line number Diff line change @@ -8,26 +8,34 @@ import Switcher from "$schedule/switcher.svelte";
8
8
const schedules = await getSessionizeSchedules ()
9
9
10
10
const container = await experimental_AstroContainer .create ();
11
- const workshopDay = await container .renderToString (Day , {
12
- // @ts-ignore
13
- props: schedules [0 ]
14
- });
15
- const conferenceDay = await container .renderToString (Day , {
16
- // @ts-ignore
17
- props: schedules [1 ]
18
- });
11
+ // const workshopDay = await container.renderToString(Day, {
12
+ // // @ts-ignore
13
+ // props: schedules[0]
14
+ // });
15
+ // const conferenceDay = await container.renderToString(Day, {
16
+ // // @ts-ignore
17
+ // props: schedules[1]
18
+ // });
19
19
---
20
20
21
21
<section class =" py-12 px-8 bg-white" >
22
22
<div class =" pb-12 text-center" >
23
23
<h1 class =" pb-6 text-5xl font-bold text-brand-orange" >Schedule</h1 >
24
24
</div >
25
25
26
- <Switcher
27
- workshopHtml ={ workshopDay }
28
- conferenceHtml ={ conferenceDay }
29
- client:idle
30
- />
26
+ <h1 class =" font-bold text-3xl md:text-4xl" >
27
+ Conference
28
+ </h1 >
29
+ <h2 class =" md:text-lg pb-8" >
30
+ (Sat) October 19, 2024 @True Digital Park
31
+ </h2 >
32
+ <Day {... schedules [1 ]} />
33
+
34
+ <!-- <Switcher-->
35
+ <!-- workshopHtml={workshopDay}-->
36
+ <!-- conferenceHtml={conferenceDay}-->
37
+ <!-- client:idle-->
38
+ <!-- />-->
31
39
<!-- <Day {...schedules[0]} />-->
32
40
<!-- <Day {...schedules[1]} />-->
33
41
</section >
You can’t perform that action at this time.
0 commit comments