File tree Expand file tree Collapse file tree 8 files changed +66
-4
lines changed Expand file tree Collapse file tree 8 files changed +66
-4
lines changed Original file line number Diff line number Diff line change 18
18
new mapkit.CoordinateSpan(0.1, 0.11)
19
19
)
20
20
21
- map.cameraZoomRange = new mapkit.CameraZoomRange(500 , 75000)
21
+ map.cameraZoomRange = new mapkit.CameraZoomRange(250 , 75000)
22
22
map.region = region
23
23
24
24
// @ts-expect-error CameraBoundaryDescription.region does not exist in Map
28
28
new mapkit.MarkerAnnotation(coordinate, {
29
29
title: 'True Digital Park West',
30
30
subtitle: 'Grand Hall, 3rd Fl.',
31
+ selected: true,
31
32
}),
32
33
])
33
34
})
Original file line number Diff line number Diff line change 1
- <section class =" bg-เหล็กไหล py-12 text-white" >
2
- <h1 class =" text-center text-4xl font-bold" >Schedule</h1 >
1
+ ---
2
+ import TBA from ' ./tba.astro'
3
+ ---
4
+
5
+ <section class =" py-12 text-เหล็กไหล" >
6
+ <h1 class =" pb-12 text-center text-4xl font-bold" >Schedule</h1 >
7
+ <TBA />
3
8
</section >
Original file line number Diff line number Diff line change
1
+ <article class =" flex rounded-xl bg-ขาวผ่อง px-4 py-6 text-เหล็กไหล" >
2
+ <div class =" shrink-0" >
3
+ <div class =" aspect-square w-24 rounded-full bg-green-400" ></div >
4
+ </div >
5
+ <div class =" pl-4" >
6
+ <h1 class =" text-2xl font-bold" >John Appleseed</h1 >
7
+ <p class =" " >
8
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec nec odio
9
+ vitae nunc.
10
+ </p >
11
+ </div >
12
+ </article >
Original file line number Diff line number Diff line change
1
+ ---
2
+ import Speaker from ' ./speaker.astro'
3
+ import TBA from ' ./tba.astro'
4
+ ---
5
+
6
+ <section class =" bg-เหล็กไหล py-12 text-white" >
7
+ <h1 class =" pb-12 text-center text-4xl font-bold" >Speakers</h1 >
8
+ <TBA >
9
+ <div class =" mx-auto grid max-w-4xl gap-4 px-4 md:grid-cols-2" >
10
+ <Speaker />
11
+ <Speaker />
12
+ <Speaker />
13
+ <Speaker />
14
+ </div >
15
+ </TBA >
16
+ </section >
Original file line number Diff line number Diff line change
1
+ ---
2
+ import TBA from ' ./tba.astro'
3
+ ---
4
+
5
+ <section class =" bg-เหล็กไหล py-12 text-white" >
6
+ <h1 class =" pb-12 text-center text-4xl font-bold" >Sponsors</h1 >
7
+ <TBA />
8
+ </section >
Original file line number Diff line number Diff line change
1
+ ---
2
+ const isShow = import .meta .env .DEV
3
+ ---
4
+
5
+ {
6
+ isShow ? (
7
+ <slot />
8
+ ) : (
9
+ <p class = " text-center" >
10
+ To be announced, please look forward in the future!
11
+ </p >
12
+ )
13
+ }
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ import Base from '$layouts/base.astro'
4
4
import Center from ' $front/center.astro'
5
5
import Schedule from ' $front/schedule.astro'
6
6
import Map from ' $front/map.astro'
7
+ import Sponsors from ' $front/sponsors.astro'
8
+ import Speakers from ' $front/speakers.astro'
7
9
8
10
import Playground from ' $playground/playground.svelte'
9
11
import Date from ' $playground/date.svelte'
@@ -17,5 +19,7 @@ import Location from '$playground/location.svelte'
17
19
<Center />
18
20
</Playground >
19
21
<Map />
22
+ <Speakers />
20
23
<Schedule />
24
+ <Sponsors />
21
25
</Base >
Original file line number Diff line number Diff line change 5
5
"paths" : {
6
6
"$*" : [" ./src/packlets/*" ]
7
7
}
8
- }
8
+ },
9
+ "exclude" : [
10
+ " dist/**/*"
11
+ ]
9
12
}
You can’t perform that action at this time.
0 commit comments