forked from rwieruch/blog_robinwieruch_content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
526 lines (503 loc) · 15.5 KB
/
config.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
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
module.exports = {
siteUrl: 'https://www.robinwieruch.de/',
languageCode: 'en-US',
// manifest
manifest: {
name: 'Robin Wieruch',
short_name: 'RW',
start_url: '/',
background_color: '#fff',
theme_color: '#823EB7',
display: 'standalone',
icon: 'static/icon.png',
},
// sitemap
sitemap: {
enabled: true,
exclude: [
'/legal',
'/categories/recent/**',
'/categories/react/**',
'/categories/javascript/**',
'/categories/freelance/**',
'/categories/react-table-library/**',
'/categories/tooling/**',
'/categories/webpack/**',
'/categories/babel/**',
'/categories/eslint/**',
'/categories/react-native/**',
'/categories/firebase/**',
'/categories/web-development/**',
'/categories/deno/**',
'/categories/node/**',
'/categories/docker/**',
'/categories/redux/**',
'/categories/jest/**',
'/categories/nextjs/**',
'/categories/enzyme/**',
'/categories/gatsby/**',
'/categories/vs-node/**',
'/categories/web-components/**',
'/categories/mobx/**',
'/categories/reason/**',
'/categories/graphql/**',
'/categories/angular/**',
'/categories/vue/**',
'/categories/machine-learning/**',
'/categories/growth/**',
'/categories/d3/**',
],
},
// can be specified in gatsby-config.js
// default rss.xml
rssUrl: 'index.xml',
// can be specified in frontmatter
title: 'RWieruch',
// can be specified in frontmatter
description:
'Freelance Developer for React.js and JavaScript. Based in Berlin, German/English speaking. Consulting/Freelancing for Web Development project: Code Audits/Reviews, Workshops, Training, Implementation ...',
// can be specified in frontmatter
author: 'Robin Wieruch',
// can be specified in frontmatter
keywords: ['freelance', 'react', 'developer'],
monetization: '$ilp.uphold.com/xBpREnjPwD4j',
hashtags: ['#ReactJs'],
blog: {
enabled: true,
// provide a link which is used with article's slug to edit article by reader
// specify: provide contribute property as whole URL in frontmatter
contributeBase:
'https://github.com/rwieruch/blog_robinwieruch_content/edit/master/blog',
// how many posts should show up on /category
pagination: 10,
slug: '/categories',
otherCategories: {
prefix: 'Read more about',
suffix: '',
labelFn: (category) => category,
limit: 4,
},
configuredCategories: [
{
prefix: '',
suffix: '',
labelFn: () => 'Recent articles',
limit: 4,
customCategory: true,
byGrouping: {
category: 'recent',
categoryFn: (edges) =>
edges.sort(
(a, b) =>
new Date(b.node.fields.date) - new Date(a.node.fields.date)
),
},
},
{
prefix: '',
suffix: '',
labelFn: () => 'Getting Started Tutorials',
limit: 4,
customCategory: false,
byGrouping: {
category: 'Starter',
},
},
],
},
// analytics defined in .env file
analytics: {
enabled: false,
},
// goodie shown below each blog post
goodie: {
enabled: true,
header: 'The Road to React',
text: 'Learn React by building real world applications. No setup configuration. No tooling. Plain React in 200+ pages of learning material. Learn React like <strong>50.000+ readers</strong>.',
cta: 'Get the Book',
ctaSecondary: 'Get it on Amazon.',
url: 'https://courses.robinwieruch.de',
urlSecondary: 'https://amzn.to/2LHjxRB',
},
// Navigation
navigation: {
enabled: true,
hasLogo: true,
links: [
{ to: '/about/', label: 'About' },
{ to: '/work-with-me/', label: 'Hire' },
{ to: '/blog/', label: 'Blog' },
{ to: 'https://courses.robinwieruch.de', label: 'Courses' },
{ to: '/index.xml', label: 'RSS' },
],
},
// Landing Page
pattern: '',
lazyLanding: [
'Hero',
'About',
'Services',
'Portfolio',
'Vita',
'Testimonial',
],
hero: {
header: 'Robin Wieruch',
subheader: 'German Software Engineer for React.js, Node.js and GraphQL',
},
bait: {
header: '',
subheader: '',
features: [
{
description: '',
label: '',
},
],
},
ppp: {
header: '',
subheader: '',
suffix: '',
},
about: {
header: 'About me',
subheader: 'Get to know me before you dive into my content.',
social: [
{
icon: 'twitter-round',
url: 'https://twitter.com/rwieruch',
},
{
icon: 'github-round',
url: 'https://www.github.com/rwieruch/',
},
{
icon: 'facebook-round',
url: 'https://www.facebook.com/rwieruch/',
},
{ icon: 'email', url: 'mailto:[email protected]' },
],
text: `
<p>I am a self-employed software and web engineer dedicated to learning and teaching JavaScript for client-server architectures. After obtaining my Master's Degree in computer science, I gained experience from the startup world, where I used JavaScript intensively during both my professional life and spare time. Eventually it led me to teach others about these topics and to offer online courses and on-site consulting for companies. I am happy to welcome you on my website :-)</p>
`,
},
services: {
header: 'What I offer',
subheader: 'Why you might want to hire me.',
items: [
{
icon: 'plant-pot',
label: 'Workshops',
description:
'Teaching your team on-site/remote to get them up to speed with the latest web technologies for client-server applications in JavaScript.',
},
{
icon: 'health-care',
label: 'Code Audit',
description:
'Conducting code reviews for your JavaScript application together with your team or a single person which usually last 2-3 days.',
},
{
icon: 'man-in-a-party-dancingW-with-people',
label: 'MVP',
description:
'Bringing your idea to code from zero to one as a minimal viable product (MVP) and beyond within a well-architected application.',
},
{
icon: 'search-data',
label: 'Complex Problems',
description:
"Solving complex problems in JavaScript code which you want to have eliminated in your application's code base but no one dares to fix.",
},
{
icon: 'megaphone',
label: 'Writing Code',
description:
'Coding along with your team on a large scale application to make your customers happy with new features and performance improvements.',
},
{
icon: 'feather',
label: 'Technical Writing',
description:
'Writing tutorials about your technical product, open source work, or API (all related to JavaScript) to get more publicity for it.',
},
],
},
portfolio: {
header: 'Portfolio',
subheader: 'What you can learn from me.',
items: [
{
label: 'Online Courses',
description: 'My in-depth content ...',
url: 'https://courses.robinwieruch.de',
},
{
label: 'Open Source',
description: 'My contributions ...',
url: 'https://github.com/rwieruch',
},
{
label: 'Tutorials',
description: 'My free content ...',
url: '/blog/',
},
],
},
vita: {
header: 'Vita',
subheader: 'My professional story.',
themed: false,
lastItem: 'Be part of my story.',
items: [
{
label: 'Master of Science',
description:
'<p>I graduated with a master of science in computer science. Lots of this knowledge can be applied for more complex problems in client-server architectures.</p>',
year: '2009 - 2014',
},
{
label: 'Freelancer',
description:
'<p>While studing computer science, I got my hands dirty by writing JavaScript, Java, and C# applications for several clients in Germany.</p>',
year: '2010 - 2014',
},
{
label: 'Startups',
description:
'<p>I worked closely with an exceptional team of engineers at a company in Berlin developing large scale applications for thousands of customers.</p>',
year: '2014 - 2017',
},
{
label: 'React Book',
description:
'<p>This year I published my first book about React.js. Within the first month it had more than 10.000 readers and today it is one of the most popular React.js books.</p>',
year: '2016',
},
{
label: 'Redux Book',
description:
'<p>I published my second book about state management with Redux in React.js which I took one level further by packaging it as a full-blown online course.</p>',
year: '2017',
},
{
label: 'GraphQL Book',
description:
'<p>As an early adopter of GraphQL in my recent jobs, I wrote my third book about it for modern client-server applications using GraphQL in JavaScript.</p>',
year: '2018',
},
{
label: 'Developer Magazines',
description:
'<p>Every other month I write for a German software developer magazine educational content about JavaScript and its ecosystem.</p>',
year: '2018',
},
{
label: 'Firebase Book',
description:
'<p>Later this year, I published my fourth book/course about Firebase in React to build modern frontend applications without worrying about your backend application.</p>',
year: '2018',
},
{
label: 'Self-Employed',
description:
'<p>Lots of demand for JavaScript on-site or remote training, implementations for MVPs, code reviews, or complex JavaScript problem solving, led me to being self-employed.</p>',
year: '2017 - TODAY',
},
],
},
table: {
header: '',
subheader: '',
chapters: [
{
label: '',
sections: [''],
},
],
secondaryHeader: '',
secondarySubheader: '',
curriculum: [
{
label: '',
type: '',
sections: [''],
},
],
},
sproof: {
header: '',
subheader: '',
cites: [
{
author: '',
url: '',
text: '',
},
],
tweets: [''],
},
testimonial: {
header: 'Testimonials',
subheader: 'What industry leaders are saying',
items: [
{
label: 'Shawn Wang',
sublabel: 'Developer Experience at Netlify',
description:
'Robin is one of the most consistently high quality React educators. His approach directly addresses practical concerns you *will* face in your daily React work, without talking down to you or wasting your time with fluff. Don’t just take my word for it - look at his public work and you’ll see.',
url: 'https://twitter.com/swyx',
},
{
label: 'Tania Rascia',
sublabel: 'JS Dev, Online Educator',
description:
"Robin is an excellent teacher. His articles and tutorials are in-depth and informative, and his code is clear and concise. I've found an answer on his site countless times when researching a problem, and I know that's one less article I have to write.",
url: 'https://twitter.com/taniarascia',
},
{
label: 'Kent C. Dodds',
sublabel: 'Full-time JavaScript Instructor',
description: `Everything that I've read from Robin has been top tier quality stuff. There are blog posts that I have wanted to write, but then I found one by Robin and decided I didn't need to. Fantastic content 💯`,
url: 'https://twitter.com/kentcdodds',
},
{
label: 'Christian Nwamba',
sublabel: 'JS Dev, Organizer of Concatenate',
description: "You can tell how much time Robin has put into a teaching piece when you consume his content. I have partnered with Robin and he sets the bar high for other teachers and content creators – this results to a quality learning ecosystem for his students regardless if a content or course was thought by him or not.",
url: 'https://twitter.com/codebeast',
},
{
label: 'Dan Abramov',
sublabel: 'React.js Core Team',
description:
"I haven't read this book yet, but the previous educational materials made by Robin were nothing short of amazing. Thanks for creating this content and putting it out there!",
url: 'http://twitter.com/dan_abramov',
},
{
label: 'Preethi Kasireddy',
sublabel: 'Founder & CEO of TruStory',
description:
"If it's anything to do with React and it's written by Robin, you can trust that it'll be world-class. His books are some of the best content you'll find on the web for learning React.",
url: 'https://twitter.com/iam_preethi',
},
{
label: 'Kamran Ahmed',
sublabel: 'Founder & CEO of roadmap.sh',
description:
"I have known Robin through his content for 5+ years; I have read his books and several of his blog posts. Robin is an excellent teacher and content creator. I can guarantee that you'll be hard pressed to find anyone knowing React and the ecosystem more than Robin.",
url: 'https://roadmap.sh/',
},
],
},
faq: {
header: '',
subheader: '',
items: [
{
label: '',
description: '',
},
],
},
sale: {
header: '',
subheader: '',
courseUrl: '',
courseId: '',
},
newsletter: {
enabled: true,
header: 'Take Part',
subheader: 'Never miss an article about web development and JavaScript.',
items: [
'Join 50.000+ Developers',
'Learn Web Development',
'Learn JavaScript',
'Access Tutorials, eBooks and Courses',
'Personal Development as a Software Engineer',
],
url: 'https://rwieruch.substack.com/',
},
subfooter: {
enabled: true,
items: [
{
label: 'Portfolio',
items: [
{
label: 'Online Courses',
url: 'https://courses.robinwieruch.de',
},
{
label: 'Open Source',
url: 'https://github.com/rwieruch',
},
{
label: 'Tutorials',
url: '/blog/',
},
],
},
{
label: 'About',
items: [
{
label: 'About me',
url: '/about/',
},
{
label: 'How to work with me',
url: '/work-with-me/',
},
{
label: 'What I use',
url: '/about#what-i-use',
},
{
label: 'How to support me',
url: '/about#support-me',
},
],
},
],
},
footer: {
copyright: '© Robin Wieruch',
social: [
{
icon: 'twitter-round',
url: 'https://twitter.com/rwieruch',
},
{
icon: 'github-round',
url: 'https://www.github.com/rwieruch',
},
{
icon: 'facebook-round',
url: 'https://www.facebook.com/rwieruch',
},
{ icon: 'email', url: 'mailto:[email protected]' },
],
links: [
{
label: 'Contact Me',
url: 'mailto:[email protected]',
},
{
label: 'Privacy & Terms',
url: '/legal/',
},
],
},
// Social Media
share: ['facebook', 'twitter', 'linkedin'],
follow: ['twitter', 'facebook'],
socialHandles: {
instagram: 'rwieruch',
twitter: 'rwieruch',
github: 'rwieruch',
facebook: 'rwieruch',
},
};