-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.ts
51 lines (45 loc) · 1.78 KB
/
events.ts
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
48
49
50
51
import dayjs from "dayjs"
import timezone from "dayjs/plugin/timezone"
import utc from "dayjs/plugin/utc"
import endent from "endent"
import type { CalendarOptions } from 'datebook';
dayjs.extend(utc)
dayjs.extend(timezone)
const thursday: CalendarOptions = {
title: "Welcome Dinner at The Smoke Shack!",
location: "3714 Broadway, San Antonio, TX",
description: endent`
Come join us for some Texas BBQ! This is our favorite place in Texas so far.
`,
start: dayjs.tz('2022-11-10T18:00', 'America/Chicago').toDate(),
end: dayjs.tz('2022-11-10T20:00', 'America/Chicago').toDate(),
}
const friday: CalendarOptions = {
title: "Michelley & Audrow\'s Wedding Ceremony + Dinner",
location: "Urban Ecology Center, Phil Hardberger Park, 8400 NW Military Hwy, San Antonio, TX 78231, USA",
description: endent`
We'll meet in the park for a quick ceremony and then go to dinner.
`,
start: dayjs.tz('2022-11-11T16:00', 'America/Chicago').toDate(),
end: dayjs.tz('2022-11-11T21:00', 'America/Chicago').toDate(),
}
const saturday: CalendarOptions = {
title: "Brunch",
location: "623 Hemisfair Blvd, San Antonio, TX 78205",
description: endent`
We'll meet for brunch and then walk around the area.
`,
start: dayjs.tz('2022-11-12T10:00', 'America/Chicago').toDate(),
end: dayjs.tz('2022-11-12T14:00', 'America/Chicago').toDate(),
}
const sunday: CalendarOptions = {
title: "Michelley Makes Pancakes!",
location: "Our Home, San Antonio, TX 78230, USA",
description: endent`
For those still around, Michelley will be making pancakes!
`,
start: dayjs.tz('2022-11-13T11:00', 'America/Chicago').toDate(),
end: dayjs.tz('2022-11-13T14:00', 'America/Chicago').toDate(),
}
export const plans = {thursday, friday, saturday, sunday}
export const weddingDate = friday.start