This repository was archived by the owner on Oct 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconstants.js
More file actions
149 lines (143 loc) · 4.46 KB
/
Copy pathconstants.js
File metadata and controls
149 lines (143 loc) · 4.46 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
// Perhaps this should be in the store,
// but none of this stuff gets mutated,
// so I'm fine with it being in this file (for now)
export const REGISTRATION_URL =
'https://ti.to/frontendfoxes/vvdayus/with/zutegidximo'
export const CFP_URL =
'https://docs.google.com/forms/d/e/1FAIpQLSeINlRZRk3QrRPJLFJAjIk_IgEiEvp6NuKDcKp4L_AILbs1zw/viewform?usp=sf_link'
export const FAQ_URL = 'https://www.vuevixens.org/about'
export const SPONSOR_URL = './vvday-us-2020.pdf'
export const HEADER_IMAGE = require('./assets/images/austin-city-darken.jpeg')
export const SPONSORS_DATA = [
{
name: `FrontendMasters`,
logo: require('./assets/images/sponsors/frontendmasters.png'),
link: `https://www.frontendmasters.com`,
level: 'platinum'
},
{
name: `Microsoft`,
logo: require('./assets/images/sponsors/microsoft.png'),
link: `https://www.microsoft.com`,
level: 'platinum'
},
{
name: `Storyblok`,
logo: require('./assets/images/sponsors/storyblok.png'),
link: `https://www.storyblok.com`,
level: 'platinum'
},
{
name: `Cloudinary`,
logo: require('./assets/images/sponsors/cloudinary.png'),
link: `https://www.cloudinary.com`,
level: 'gold'
},
{
name: `Vue Mastery`,
logo: require('./assets/images/sponsors/vuemastery.png'),
link: `https://www.vuemastery.com`,
level: 'silver'
}
]
export const LIGHTNINGS_DATA = [
{
name: `Diana Rodriguez`,
id: 1,
talkTitle: `"Fostering Success in Tech: The DevOps Culture Approach"`,
twitterUrl: `https://twitter.com/cotufa82`,
photo: require('./assets/images/speakers/diana-rodriguez_400x400.png')
},
{
name: `Amarachi Amaechi (remote)`,
id: 2,
talkTitle: `"Networking the Right Way"`,
twitterUrl: `https://twitter.com/AmarachiAmaechi`,
photo: require('./assets/images/speakers/amarachi-amaechi.jpg')
},
{
name: `Tessa Mero`,
id: 3,
talkTitle: `"Joining a Developer Experts Program to Leverage Your Career"`,
twitterUrl: `https://twitter.com/TessaMero`,
photo: require('./assets/images/speakers/tessa-mero.jpg')
}
]
export const WORKSHOPS_DATA = [
{
name: `Chloe Condon`,
id: 1,
talkTitle: `"Build a Fake Boyfriend App with Azure and Twilio"`,
photo: require('./assets/images/speakers/chloe-condon_400x400.jpg'),
twitterUrl: `https://twitter.com/chloecondon`
},
{
name: `Kristin Ruben`,
id: 2,
talkTitle: `"Getting Started with TypeScript for Vue 3"`,
photo: require('./assets/images/speakers/kristin-ruben_400x400.jpg'),
twitterUrl: `https://twitter.com/chloecondon`
},
{
name: `Jen Looper`,
id: 3,
talkTitle: `"Microsoft Cloud Skills Challenge"`,
photo: require('./assets/images/speakers/jen-looper_400x400.png'),
twitterUrl: `https://twitter.com/jenlooper`
}
]
export const PRESENTERS_DATA = [
{
name: `Sarah Drasner (remote)`,
id: 6,
talkTitle: `"The Art of Code Comments"`,
photo: require('./assets/images/speakers/sarah-drasner_400x400.jpg'),
twitterUrl: `https://twitter.com/sarah_edo`,
keynote: true,
opener: true
},
{
name: `Maria Lamardo`,
id: 7,
talkTitle: `"When Life Takes Your Scrubs; npm run build"`,
photo: require('./assets/images/speakers/maria-lamardo_400x400.jpg'),
twitterUrl: `https://twitter.com/MariaLamardo`
},
{
name: `Kim Maida`,
id: 8,
talkTitle: `"7 Secrets of Highly Successful Developers"`,
photo: require('./assets/images/speakers/kim-maida_400x400.jpg'),
twitterUrl: `https://twitter.com/kimmaida`
},
{
name: `Michele Cynowicz`,
id: 9,
talkTitle: `"Building a Successful Remote Work Culture"`,
photo: require('./assets/images/speakers/michele-cynowicz_400x400.jpg'),
twitterUrl: `https://twitter.com/michelecynowicz`
},
{
name: `Jess Sachs (remote)`,
id: 10,
talkTitle: `"Avoiding a Rewrite: Techniques to Progressively Adopt Vue"`,
photo: require('./assets/images/speakers/jess-sachs_400x400.png'),
twitterUrl: `https://twitter.com/_JessicaSachs`
},
{
name: `Tessa`,
id: 11,
talkTitle: `"A Brief Introduction to the Art of the Fox Lunch"`,
photo: require('./assets/images/speakers/tessa_400x400.jpg'),
twitterUrl: `https://twitter.com/halftes6`
},
{
name: `Jen Looper`,
id: 12,
talkTitle: `"Vue Vixens: Past, Present and Future"`,
keynote: true,
closer: true,
photo: require('./assets/images/speakers/jen-looper_400x400.png'),
twitterUrl: `https://twitter.com/jenlooper`
}
]