Skip to content
This repository was archived by the owner on Oct 18, 2023. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 63 additions & 3 deletions src/stores.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,73 @@ export const currentSection = writable({
// about, swag, events, issues

export const events = writable([
{
isOpened: false,
timeISO: '2023-09-27T16:00:00.000Z',
durationInMs: DurationMinute * 60,
name: 'IllaCloud LiveStream',
presenter: 'Wesley Cope',
//link: 'https://lu.ma/hf-kickoff-blr',
hasStarted: false,
sessions: []
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Last year we broke down the event into sessions. This is also important because a session is required to show some of the additional details for the event like the link.

},
{
isOpened: false,
timeISO: '2023-10-01T16:00:00.000Z',
durationInMs: DurationMinute * 0,
durationInMs: DurationMinute * 480,
name: 'Hacktoberfest Kickoff!',
presenter: 'Appwrite, TBA',
// link: 'https://www.youtube.com/watch?v=oPswl1Vvpxc',
presenter: 'Appwrite and DigitalOcean',
link: 'https://lu.ma/hf-kickoff-blr',
hasStarted: false,
sessions: []
},
{
isOpened: false,
timeISO: '2023-10-05T16:00:00.000Z',
durationInMs: DurationMinute * 60,
name: 'Appwrite and Hacktoberfest: How To Contribute',
presenter: 'Aditya Oberai',
//link: 'https://lu.ma/hf-kickoff-blr',
hasStarted: false,
sessions: []
},
{
isOpened: false,
timeISO: '2023-10-06T16:00:00.000Z',
durationInMs: DurationMinute * 60,
name: 'Open Source Friday with Appwrite and GitHub',
presenter: 'Dennis Ivy',
link: 'https://www.youtube.com/watch?v=VJvawxeUhN4',
hasStarted: false,
sessions: []
},
{
isOpened: false,
timeISO: '2023-10-10T16:00:00.000Z',
durationInMs: DurationMinute * 60,
name: 'Appwrite x GitHub Education livestream',
presenter: 'Aditya Oberai',
//link: 'https://lu.ma/hf-kickoff-blr',
hasStarted: false,
sessions: []
},
{
isOpened: false,
timeISO: '2023-10-12T16:00:00.000Z',
durationInMs: DurationMinute * 60,
name: 'Appwrite x Novu livestream',
presenter: 'Aditya Oberai',
//link: 'https://lu.ma/hf-kickoff-blr',
hasStarted: false,
sessions: []
},
{
isOpened: false,
timeISO: '2023-10-17T14:00:00.000Z',
durationInMs: DurationMinute * 60,
name: 'Building Appwrite Functions',
presenter: 'Aditya Oberai',
//link: 'https://lu.ma/hf-kickoff-blr',
hasStarted: false,
sessions: []
}
Expand Down