diff --git a/site/content/docs/00-introduction.md b/site/content/docs/00-introduction.md index 4fc3f05..0148a9e 100644 --- a/site/content/docs/00-introduction.md +++ b/site/content/docs/00-introduction.md @@ -2,7 +2,9 @@ title: Introduction --- -*Note: Sapper is in early development, and some things may change before we hit version 1.* +### Before we begin + +> Sapper is in early development, and some things may change before we hit version 1.0. This document is a work-in-progress. If you get stuck, reach out for help in the [Discord chatroom](https://discord.gg/yy75DKs). ### What is Sapper? @@ -29,7 +31,7 @@ For web developers, the stakes are generally lower than for combat engineers. Bu * Sapper is powered by Svelte instead of React, so it's faster and your apps are smaller * Instead of route masking, we encode route parameters in filenames (see the [routing](guide#routing) section below) -* As well as *pages*, you can create *server routes* in your `src/routes` directory. This makes it very easy to, for example, add a JSON API such as the one powering this very page (try visiting [/guide.json](/guide.json)) +* As well as *pages*, you can create *server routes* in your `src/routes` directory. This makes it very easy to, for example, add a JSON API such as the one powering this very page (try visiting [/docs.json](/docs.json)) * Links are just `` elements, rather than framework-specific `` components. That means, for example, that [this link right here](/), despite being inside a blob of markdown, works with the router as you'd expect diff --git a/site/src/routes/_layout.svelte b/site/src/routes/_layout.svelte index e5768a8..98f9286 100644 --- a/site/src/routes/_layout.svelte +++ b/site/src/routes/_layout.svelte @@ -6,20 +6,23 @@