](https://itunes.apple.com/us/app/nativescript-playground/id1263543946?mt=8&ls=1)
-[
](https://play.google.com/store/apps/details?id=org.nativescript.play)
-
-## Create a new Svelte-Native app
-
-The easiest way to get started is to use the [latest template app](https://github.com/halfnelson/svelte-native-template):
-
-```bash
-$ npx degit halfnelson/svelte-native-template myapp
-```
-
-A fresh svelte-native app will be found in the `myapp` folder.
-
-## Launch It
-
-Launch your app with:
-
-```bash
-$ cd myapp
-$ ns preview
-```
-
-You will need to scan the ascii art QR code using the "Playground" app you installed previously.
-
-
-
-## Draw the rest of the owl
-
-You can check out the [Grocery App Example](https://github.com/halfnelson/svelte-native-grocery) for an example of a larger application.
-
-Jump into the [Docs](/docs) or follow the [Tutorial](/tutorial) to get started.
\ No newline at end of file
diff --git a/docs_src/content/blog/2019-09-19-hot-module-reloading.md b/docs_src/content/blog/2019-09-19-hot-module-reloading.md
deleted file mode 100644
index 878695b..0000000
--- a/docs_src/content/blog/2019-09-19-hot-module-reloading.md
+++ /dev/null
@@ -1,82 +0,0 @@
----
-title: Hot Module Reloading
-description: Trying out experimental HMR
-pubdate: 2019-09-19
-author: Halfnelson
-authorURL: https://twitter.com/halfnelson_au/
----
-
-An awesome member of the Svelte community [Rixo](https://github.com/rixo) has implemented preliminary support for hot module reloading in Svelte. This is a quick guide on how to set it up in your Svelte Native project
-
-## Start with a Svelte Native Project
-
-Use an existing one or start a new one by following the [Getting Started Guide](/blog/svelte-native-quick-start)
-
-### Change svelte-loader to use Rixo's Fork
-
-Edit `package.json` and replace
-
-```js
- "svelte-loader": "github:halfnelson/svelte-loader#fix-virtual-purge"
-```
-
-with
-
-
-```js
- "svelte-loader": "github:rixo/svelte-loader#hmr"
-```
-
-### Enable the hmr option in webpack
-
-Edit `webpack.config.js` and replace
-
-```js
- {
- test: /\.svelte$/,
- exclude: /node_modules/,
- use: [
- {
- loader: 'svelte-loader',
- options: {
- preprocess: svelteNativePreprocessor()
- }
- }
- ]
- }
-```
-
-with
-
-```js
- {
- test: /\.svelte$/,
- exclude: /node_modules/,
- use: [
- {
- loader: 'svelte-loader',
- options: {
- preprocess: svelteNativePreprocessor(),
- hotReload: true,
- hotOptions: {
- native: true
- }
- }
- }
- ]
- }
-```
-
-### Take it for a test toast
-
-That should be it. Fire up your app with
-
-```js
-tns run android
-```
-
-and make a change and watch it update.
-
-
-
-
diff --git a/docs_src/content/docs/0-important-note.md b/docs_src/content/docs/0-important-note.md
deleted file mode 100644
index d285b5b..0000000
--- a/docs_src/content/docs/0-important-note.md
+++ /dev/null
@@ -1,9 +0,0 @@
----
-title: Important note
----
-
-### This is a community project
-
-Svelte Native is developed by members of the Svelte community who wish to have the same smooth development experience on mobile devices as they have on the web. This project is not an officially supported product of either the NativeScript or Svelte projects.
-
-Yet.
diff --git a/docs_src/content/docs/00-introduction.md b/docs_src/content/docs/00-introduction.md
deleted file mode 100644
index 20f61c1..0000000
--- a/docs_src/content/docs/00-introduction.md
+++ /dev/null
@@ -1,21 +0,0 @@
----
-title: Introduction
----
-
-#### What is NativeScript?
-
-[NativeScript](https://www.nativescript.org/) is an open-source framework to develop apps on the Apple iOS and Android platforms. It is open source and can be found on [github](https://github.com/nativescript/nativescript).
-
-#### What is Svelte?
-
-[Svelte](https://svelte.technology) is a radical new approach to building user interfaces. Whereas traditional frameworks like React and Vue do the bulk of their work in the browser, Svelte shifts that work into a compile step that happens when you build your app.
-
-Instead of using techniques like virtual DOM diffing, Svelte writes code that surgically updates the DOM when the state of your app changes.
-
-#### What is Svelte Native
-
-Svelte Native is a tool for building mobile applications. It combines NativeScript's access to the native platform views and Svelte's fast and efficient view updates to allow you to build native mobile experiences using tools such as HTML, CSS and Javascript.
-
-[Read the introductory blog post](/blog/svelte-goes-native).
-
-
\ No newline at end of file
diff --git a/docs_src/content/docs/01-getting-started.md b/docs_src/content/docs/01-getting-started.md
deleted file mode 100644
index 8135988..0000000
--- a/docs_src/content/docs/01-getting-started.md
+++ /dev/null
@@ -1,97 +0,0 @@
----
-title: Getting Started
----
-
-### Quick Start
-
-#### Install Nativescript
-
-Svelte-Native works on top of NativeScript. To install NativeScript:
-
-```bash
-$ npm install -g nativescript
-```
-
-Check it worked by running `ns`:
-
-
-
-#### Install the NativeScript Playground app
-
-Svelte-Native really is native, so it needs a mobile device to run. The build setup for iOS or Android can be a pain, so the wizards at Nativescript have created the NativeScript playground app. This allows us to run Svelte-Native application code without having to build the full mobile application.
-
-[
](https://itunes.apple.com/us/app/nativescript-playground/id1263543946?mt=8&ls=1)
-[
](https://play.google.com/store/apps/details?id=org.nativescript.play)
-
-#### Create a new Svelte-Native app
-
-The easiest way to get started is to use the [latest template app](https://github.com/halfnelson/svelte-native-template):
-
-```bash
-$ npx degit halfnelson/svelte-native-template myapp
-```
-
-A fresh svelte-native app will be found in the `myapp` folder.
-
-#### Launch It
-
-Launch your app with:
-
-```bash
-$ cd myapp
-$ ns preview
-```
-
-You will need to scan the QR Code using the "Playground" app you installed previously.
-
-
-
-### Advanced Install
-
-To compile your apps for distribution, you will need to set up your system for local compilation.
-
-Svelte-Native runs on top of an unmodified NativeScript platform. Installation instructions for your operating system can be found in the [Native Script Guide](https://docs.nativescript.org/start/quick-setup).
-
-Check you have the NativeScript build environment configured correctly by using the Nativescript doctor command:
-
-```bash
-$ ns doctor
-```
-
-Once that is happy you can do a full compile and launch of your application with
-
-```bash
-$ ns run android
-```
-
-or
-
-```bash
-$ ns run ios
-```
-
-
-### Using Nativescript Plugins
-
-Since Svelte Native uses unmodified NativeScript, it is possible to use NativeScript plugins, such as those found on the [marketplace](https://market.nativescript.org/).
-
-Follow the instructions for the component and if there isn't instructions for svelte, look for the Nativescript Vue instructions involving `registerElement`.
-Register the element using `registerNativeViewElement(tagName, ()=> NativeConstructor)`
-
-eg for [Nativescript Mapbox Plugin](https://market.nativescript.org/plugins/nativescript-mapbox)
-
-```bash
-$ ns plugin add nativescript-mapbox
-```
-
-in app.ts before app startup
-
-```js
-import { registerNativeViewElement } from 'svelte-native/dom'
-
-registerNativeViewElement("mapBox", () => require("nativescript-mapbox").MapboxView);
-```
-
-You can now use the `