-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsessions.ts
64 lines (60 loc) · 2.07 KB
/
sessions.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
52
53
54
55
56
57
58
59
60
61
62
63
64
export interface Topic {
name: string;
slidesLink: string;
worksheetLink: string;
areLinksEnabled: boolean;
}
export const TOPICS: Topic[] = [
{
name: 'Intro to HTML',
slidesLink:
'https://kansascitywomenintechnology.github.io/CodingCocktailsSlideTemplate/01-glasswork/2023-front-end-html.html#/',
worksheetLink:
'https://kansascitywomenintechnology.github.io/cocktails-worksheets/#/?id=worksheets',
areLinksEnabled: true,
},
// {
// name: 'CSS Basics',
// slidesLink:
// 'https://kansascitywomenintechnology.github.io/CodingCocktailsSlideTemplate/css-series/2023-css.html#/',
// worksheetLink:
// 'https://kansascitywomenintechnology.github.io/cocktails-worksheets/#/?id=worksheets',
// areLinksEnabled: true,
// },
// {
// name: 'Intro to JavaScript',
// slidesLink:
// 'http://kansascitywomenintechnology.github.io/CodingCocktailsSlideTemplate/03-liquor/javascript.html#/',
// worksheetLink: 'https://bit.ly/js-worksheet',
// areLinksEnabled: true,
// },
];
export interface Session {
date: string;
time: string;
name: string;
eventbriteLink: string;
eventbriteIFrameLink: string;
}
export const SESSIONS: Session[] = [
{
date: '2024-02-10',
time: '4-8pm',
name: 'Coding & Cocktails: The Glass | HTML & Front-End Architecture',
eventbriteLink:
'https://www.eventbrite.com/e/coding-cocktails-the-glass-html-and-front-end-architecture-tickets-786460995007',
eventbriteIFrameLink:
'//eventbrite.com/tickets-external?eid=786460995007&ref=ccweb',
},
{
date: '2024-03-09',
time: '4-8pm',
name: 'Coding & Cocktails: The Garnish | Intro to CSS',
eventbriteLink:
'https://www.eventbrite.com/e/coding-cocktails-the-garnish-introduction-to-css-tickets-828781697367',
eventbriteIFrameLink:
'//eventbrite.com/tickets-external?eid=828781697367&ref=ccweb',
},
];
// Month to display for upcoming session. Use 7 for July, 8 for Aug, etc
export const UPCOMING_SESSION_MONTH = 2 + 1;