-
Notifications
You must be signed in to change notification settings - Fork 0
/
fair.js
53 lines (51 loc) · 1.82 KB
/
fair.js
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
var fairs = {
"hackathon-turkiye": {
"name": "Hackathon Türkiye",
"description": `Hackathon Türkiye is a community for all hackathon lovers all over the country.
You can join *athon events by following our website, social media accounts and also by subscribing our e-mail newsletter.`,
"x": 3400,
"y": 920,
"website": "https://hackathonturkiye.com/"
},
"back2theschool": {
"name": "Back2TheSchool",
"description": `Back2TheSchool is an Online Ideathon to search solving problems on education system in pandemic situation`,
"x": 4840,
"y": 1260,
"website": "https://back2theschool.com/"
},
"edebiyat-yarismalari": {
"name": "Edebiyat Yarışmaları",
"description": `Announcing all literature competitions in Turkey`,
"x": 5800,
"y": 1480,
"website": "http://edebiyatyarismalari.com/"
},
"zoo-adventure": {
"name": "Zoo Adventure",
"description": `Choose your own adventure book for kids`,
"x": 2000,
"y": 1340,
"website": "https://play.google.com/store/apps/details?id=com.ionicframework.coon866068&hl=tr&gl=US"
},
"master-of-soccer": {
"name": "Master of Soccer",
"description": `Swipe game to lead a football club for android`,
"x": 3240,
"y": 1600,
"website": "https://play.google.com/store/apps/details?id=com.ballkaya.game.soccer"
},
"choose-your-swipe-game": {
"name": "Choose Your Swipe Game",
"description": `Create your swipe games and quizes for friends on web`,
"x": 4200,
"y": 1800,
"website": "http://www.chooseyourswipegame.com/"
}
};
exports.getFair = function (id) {
return fairs[id];
};
exports.getFairs = function () {
return fairs;
};