-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspeakers.js
114 lines (111 loc) · 4.32 KB
/
speakers.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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
const speakers = [
{
name: 'Yochai Benkler',
honours: 'Berkman Professor of Entrepreneurial Legal Studies at Harvard Law School',
books: 'Benkler studies commons-based peer production, and published his seminal book, The Wealth of Networks in 2006',
image: {
src: 'images/speaker_011.png',
},
},
{
name: 'Kilnam Chon',
honours: "BBC's 100 businessmen 0f 2021",
books: 'Kilnam Chon helped bring the internet to Asia and is an outspoken advocate for the open web and digital com-mons. In 2012. he was inducted into the inaugural class of the Internet Society’s (ISOC) Internet Hall of Fame',
image: {
src: 'images/speaker_012.png',
},
},
];
const seeMoreSpeakers = [
{
name: 'SohYeong Noh',
honours: 'Director of Art Centre Nabi and a board member of CC Korea',
books: 'As the main venue for new media art production in Korea, Nabi promotes cross-disciplinary collaboration and understanding among science technology, humanities, and the arts.',
image: {
src: 'images/speaker_013.png',
alt: '',
},
},
{
name: 'Julia Leda',
honours: 'President of Young Pirates of Europe',
books: 'European ingetration, political democracy and participation of youth through online as her major condern, Reda’s report outlining potential changes to EU copyright law was approved by the Parliament in July',
image: {
src: 'images/speaker_014.png',
alt: '',
},
},
{
name: 'Lila tretikov',
honours: 'Executive Director of the Wikimedia Foundation',
books: 'Lila Tretikov is the Executive of the Wikimedia Foundation, the nonprofit organization that operates Wikipedia. Wikipedia is freely available in 290 languag-es and used by nearly half a billion people around the world every month.',
image: {
src: 'images/speaker_015.png',
alt: '',
},
},
{
name: 'Ryan Merkley',
honours: 'CEO of Creativve Commons, ex COO of the Mozilla Foundation',
books: 'Ryan had been leading open-source projects at the Mozilla Foundation such as the open-source move-ment',
image: {
src: 'images/speaker_016.png',
alt: '',
},
},
];
const fullSpeakerList = [
{
name: 'Yochai Benkler',
honours: 'Berkman Professor of Entrepreneurial Legal Studies at Harvard Law School',
books: 'Benkler studies commons-based peer production, and published his seminal book, The Wealth of Networks in 2006',
image: {
src: 'images/speaker_011.png',
},
},
{
name: 'Kilnam Chon',
honours: "BBC's 100 businessmen 0f 2021",
books: 'Kilnam Chon helped bring the internet to Asia and is an outspoken advocate for the open web and digital com-mons. In 2012. he was inducted into the inaugural class of the Internet Society’s (ISOC) Internet Hall of Fame',
image: {
src: 'images/speaker_012.png',
},
},
{
name: 'SohYeong Noh',
honours: 'Director of Art Centre Nabi and a board member of CC Korea',
books: 'As the main venue for new media art production in Korea, Nabi promotes cross-disciplinary collaboration and understanding among science technology, humanities, and the arts.',
image: {
src: 'images/speaker_013.png',
alt: '',
},
},
{
name: 'Julia Leda',
honours: 'President of Young Pirates of Europe',
books: 'European ingetration, political democracy and participation of youth through online as her major condern, Reda’s report outlining potential changes to EU copyright law was approved by the Parliament in July',
image: {
src: 'images/speaker_014.png',
alt: '',
},
},
{
name: 'Lila tretikov',
honours: 'Executive Director of the Wikimedia Foundation',
books: 'Lila Tretikov is the Executive of the Wikimedia Foundation, the nonprofit organization that operates Wikipedia. Wikipedia is freely available in 290 languag-es and used by nearly half a billion people around the world every month.',
image: {
src: 'images/speaker_015.png',
alt: '',
},
},
{
name: 'Ryan Merkley',
honours: 'CEO of Creativve Commons, ex COO of the Mozilla Foundation',
books: 'Ryan had been leading open-source projects at the Mozilla Foundation such as the open-source move-ment',
image: {
src: 'images/speaker_016.png',
alt: '',
},
},
];
export { speakers, seeMoreSpeakers, fullSpeakerList };