+ This will be pre-compiled
+
+
+
+```
+
+## Getting Started
+
+### Example Sandbox
+
+If you want to dive right in and start playing with single-file components, check out [this simple todo app](https://codesandbox.io/s/vue-todo-list-app-with-single-file-component-vzkl3?file=/src/App.vue) on CodeSandbox.
+
+### For Users New to Module Build Systems in JavaScript
+
+With `.vue` components, we're entering the realm of advanced JavaScript applications. That means learning to use a few additional tools if you haven't already:
+
+- **Node Package Manager (NPM)**: Read the [Getting Started guide](https://docs.npmjs.com/packages-and-modules/getting-packages-from-the-registry) section about how to get packages from the registry.
+
+- **Modern JavaScript with ES2015/16**: Read through Babel's [Learn ES2015 guide](https://babeljs.io/docs/en/learn). You don't have to memorize every feature right now, but keep this page as a reference you can come back to.
+
+After you've taken a day to dive into these resources, we recommend checking out [Vue CLI](https://cli.vuejs.org/). Follow the instructions and you should have a Vue project with `.vue` components, ES2015, webpack and hot-reloading in no time!
+
+### For Advanced Users
+
+The CLI takes care of most of the tooling configurations for you, but also allows fine-grained customization through its own [config options](https://cli.vuejs.org/config/).
+
+In case you prefer setting up your own build setup from scratch, you will need to manually configure webpack with [vue-loader](https://vue-loader.vuejs.org). To learn more about webpack itself, check out [their official docs](https://webpack.js.org/configuration/) and [webpack learning academy](https://webpack.academy/p/the-core-concepts).
diff --git a/src/style-guide/README.md b/src/style-guide/README.md
index cc36c02f26..75329897b6 100644
--- a/src/style-guide/README.md
+++ b/src/style-guide/README.md
@@ -1810,7 +1810,7 @@ $color-priority-d: #3f536d;
margin-top: 0;
&::before {
- font-family: FontAwesome;
+ font-family: 'Font Awesome 5 Free';
margin-right: .4em;
}
}