-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.js
More file actions
73 lines (71 loc) · 1.69 KB
/
Copy pathevents.js
File metadata and controls
73 lines (71 loc) · 1.69 KB
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
65
66
67
68
69
70
71
72
73
import React from 'react';
const events = [
{
name: 'Level Up',
description: (
<p>
Join us for an engaging Leetcode practice session where we will be
solving problems together and discussing the best approaches to solve
them. Here you will have the opportunity to bolster your problem solving
skills and learn from your peers.
</p>
),
series: 'Community Leetcode Practice',
day: '28',
month: 'February',
year: '2024',
time: {
start: '7:00PM',
end: '8:00PM',
},
location: {
name: '144 Curry Student Center (CIE)',
},
cancelled: false,
},
{
name: 'Effects of Music',
description: (
<p>
Join us on for our meeting centered around music and its abiltiy to
improve mental health, support community building skills and its general
promotion of cohesion through activity.
</p>
),
series: 'Breaking the Stigma',
day: '21',
month: 'February',
year: '2024',
time: {
start: '7:00PM',
end: '8:00PM',
},
location: {
name: '144 Curry Student Center (CIE)',
},
cancelled: false,
},
{
name: 'Tech Talk w/ Neel Jawaid',
description: (
<p>
Join us for a talk with Neel Jawaid, a designer at Google, as he
discusses his journey through the tech industry and how he has navigated
the challenges he has faced.
</p>
),
series: 'Tech Talk',
day: '31',
month: 'January',
year: '2024',
time: {
start: '7:00PM',
end: '8:00PM',
},
location: {
name: '144 Curry Student Center (CIE)',
},
cancelled: false,
},
];
export default events;