-
Notifications
You must be signed in to change notification settings - Fork 133
/
config.js
74 lines (68 loc) · 3.15 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
const dedent = require('dedent');
module.exports = {
title: `30 Days of Vue`,
topic: 'Vue',
permalink: '/30-days-of-vue',
subtitle: `A free introduction to Vue in 30 bite-size morsels`,
gitRepoHttpUrl:
'https://github.com/fullstackio/30-days-of-vue/blob/master',
heroLogoUrl: './images/vue-logo.png',
heroPhotoUrl: './images/cover-image-sebastian-unrau-47679-unsplash.jpg',
paperBookPhotoUrl: './images/30-days-of-vue-hardcover.jpg',
paperBookPhotoUrlPng: './images/30-days-of-vue-hardcover.png',
publicLessonCount: 15,
previewPercent: 60,
brandAccentColor1: '#40b882',
lessonPrefix: 'day-',
summary: dedent`
Interested in learning Vue but having trouble getting started?
We'll teach you how it all works - _for free_.
Over the next 30 days, we'll walk through everything you need to know to work with Vue. From the **very beginning** through topics like the **Vue Instance**, **Components**, and even **Testing**.
`,
whatIsThis: dedent`
This post is part of the series [**30 Days of Vue**](/30-days-of-vue).
In this series, we're starting from the very basics and walk through everything you need to know to get started with Vue. If you've ever wanted to learn Vue, this is the place to start!
`,
pdfLength: '330+',
faq: [
{
q: 'What is this?',
a:
'This course is a series of articles which teach you how to use Vue from the ground up. The series provides a step-by-step process you can use to learn Vue from an empty folder to a Webpack-bundled Vue app.',
},
{
q: 'What if I get stuck?',
a:
"Just [send us an email](mailto:vue@fullstack.io) and we'll be happy to help you get unstuck.",
},
{
q: 'Who wrote this?',
a:
"We're the authors of the [Fullstack Vue Book](https://fullstack.io/vue).",
},
],
faqImageUrl: 'todo.jpg',
faqCta: 'Enroll in this free course',
afterword: dedent`
The entire source code for this tutorial series can be found in [the GitHub repo](https://github.com/fullstackio/30-days-of-vue), which includes all the styles and code samples.
If at any point you feel stuck, have further questions, feel free to reach out to us by:
* Creating an issue at the [Github repo](https://github.com/fullstackio/30-days-of-vue).
* Tweeting at us at [@fullstackio](https://twitter.com/fullstackio).
`,
authorSlugs: ['djirdehh'],
closingCtaH1: 'Get started now',
closingCtaCopy: `Join us on our 30-day journey in Vue. Join thousands of other professional Vue developers and learn one of the most powerful web application development frameworks available today.`,
closingCtaButton: 'Download 30 Days of Vue PDF (FREE)',
publishedOn: '2019-01-07',
lessonLanguage: 'Day',
ctaFormAction:
'https://fd338.infusionsoft.com/app/form/process/8c1ddc4f62b89862cde6aa74850295b0',
ctaFormXid: '8c1ddc4f62b89862cde6aa74850295b0',
ctaFormName: 'Web Form submitted',
ctaInfVersion: '1.70.0.77019',
modalCtaHeader: 'Learn Vue (from the very beginning) in 30 days',
modalCtaBody: dedent`
Enter your name and email address below, then click the **"Send my free PDF"** button to get started
`,
modalCtaButton: 'SEND MY FREE PDF',
};