-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
81 lines (80 loc) · 2.05 KB
/
data.js
File metadata and controls
81 lines (80 loc) · 2.05 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
74
75
76
77
78
79
80
81
var people = [
{
id: "calstephens",
name: "Cal Stephens",
year: "4th Year",
major: "Computer Science"
}, {
id: "premsakala",
name: "Prem Sakala",
year: "2nd Year",
major: "Computer Science"
}, {
id: "andrewvincent",
name: "Andrew Vincent",
year: "4th Year",
major: "Business"
}, {
id: "jaredraiola",
name: "Jared Raiola",
year: "2nd Year",
major: "Computer Science"
}, {
id: "kailashnagapudi",
name: "Kailash Nagapudi",
year: "4th Year",
major: "BME"
}, {
id: "craigschwartz",
name: "Craig Schwartz",
year: "4th Year",
major: "MSE"
}, {
id: "giancarlovargas",
name: "Giancarlo Vargas",
year: "4th Year",
major: "Chemical Engineer"
}, {
id: "walkerbyrnes",
name: "Walker Byrnes",
year: "4th Year",
major: "Mechanical Engineering"
}, {
id: "jaleenwalker",
name: "Jaleen Walker",
year: "3rd Year",
major: "Computer Science"
}, {
id: "jackconway",
name: "Jack Conway",
year: "4th Year",
major: "LMC"
},
]
var events = [
{
id: "rockclimbing",
name: "Rock Climbing",
description: "Head over to the CRC and test your climbing skills",
}, {
id: "shoothooch",
name: "Shoot the Hooch",
description: "Come raft the Chattahoochee!"
}, {
id: "lasertag",
name: "Laser Tag",
description: "It's tag, but with lasers.",
}, {
id: "bravesgame",
name: "Braves game",
description: "Cheer on the Braves together at Sun Trust Park",
}, {
id: "concert",
name: "Find a local concert",
description: "Get together with your group and find an artist you'd like to see perform!",
}, {
id: "daveandbusters",
name: "Dave and Busters",
description: "Play games of skill and win cool prizes",
},
]