diff --git a/documentation/docs/Installation/_category_.json b/documentation/docs/Installation/_category_.json
new file mode 100644
index 0000000..fd67cf3
--- /dev/null
+++ b/documentation/docs/Installation/_category_.json
@@ -0,0 +1,8 @@
+{
+ "label": "Installation 🖥️",
+ "position": 2,
+ "link": {
+ "type": "generated-index",
+ "description": "How to get AdventureLog installed and setup."
+ }
+}
diff --git a/documentation/docs/tutorial-basics/congratulations.md b/documentation/docs/Installation/congratulations.md
similarity index 95%
rename from documentation/docs/tutorial-basics/congratulations.md
rename to documentation/docs/Installation/congratulations.md
index 04771a0..0a69137 100644
--- a/documentation/docs/tutorial-basics/congratulations.md
+++ b/documentation/docs/Installation/congratulations.md
@@ -1,8 +1,8 @@
---
-sidebar_position: 6
+sidebar_position: 3
---
-# Congratulations!
+# Congratulations! 🎉
You have just learned the **basics of Docusaurus** and made some changes to the **initial template**.
diff --git a/documentation/docs/Installation/docker.md b/documentation/docs/Installation/docker.md
new file mode 100644
index 0000000..28119a5
--- /dev/null
+++ b/documentation/docs/Installation/docker.md
@@ -0,0 +1,5 @@
+---
+sidebar_position: 1
+---
+
+# Docker 🐋
diff --git a/documentation/docs/Installation/local.md b/documentation/docs/Installation/local.md
new file mode 100644
index 0000000..47ffd7f
--- /dev/null
+++ b/documentation/docs/Installation/local.md
@@ -0,0 +1,5 @@
+---
+sidebar_position: 2
+---
+
+# Local 🖥️
diff --git a/documentation/docs/Usage/_category_.json b/documentation/docs/Usage/_category_.json
new file mode 100644
index 0000000..7594506
--- /dev/null
+++ b/documentation/docs/Usage/_category_.json
@@ -0,0 +1,8 @@
+{
+ "label": "Usage ✈️",
+ "position": 3,
+ "link": {
+ "type": "generated-index",
+ "description": "How to use AdventureLog."
+ }
+}
diff --git a/documentation/docs/tutorial-extras/img/docsVersionDropdown.png b/documentation/docs/Usage/img/docsVersionDropdown.png
similarity index 100%
rename from documentation/docs/tutorial-extras/img/docsVersionDropdown.png
rename to documentation/docs/Usage/img/docsVersionDropdown.png
diff --git a/documentation/docs/tutorial-extras/img/localeDropdown.png b/documentation/docs/Usage/img/localeDropdown.png
similarity index 100%
rename from documentation/docs/tutorial-extras/img/localeDropdown.png
rename to documentation/docs/Usage/img/localeDropdown.png
diff --git a/documentation/docs/tutorial-extras/manage-docs-versions.md b/documentation/docs/Usage/manage-docs-versions.md
similarity index 100%
rename from documentation/docs/tutorial-extras/manage-docs-versions.md
rename to documentation/docs/Usage/manage-docs-versions.md
diff --git a/documentation/docs/tutorial-extras/translate-your-site.md b/documentation/docs/Usage/translate-your-site.md
similarity index 100%
rename from documentation/docs/tutorial-extras/translate-your-site.md
rename to documentation/docs/Usage/translate-your-site.md
diff --git a/documentation/docs/intro.md b/documentation/docs/intro.md
index 45e8604..7945a9c 100644
--- a/documentation/docs/intro.md
+++ b/documentation/docs/intro.md
@@ -2,9 +2,9 @@
sidebar_position: 1
---
-# Tutorial Intro
+# Intro 1️⃣
-Let's discover **Docusaurus in less than 5 minutes**.
+This tutorial will guide you how to get AdventureLog up and running on your local machine quickly and easily.
## Getting Started
diff --git a/documentation/docs/tutorial-basics/_category_.json b/documentation/docs/tutorial-basics/_category_.json
deleted file mode 100644
index 2e6db55..0000000
--- a/documentation/docs/tutorial-basics/_category_.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "label": "Tutorial - Basics",
- "position": 2,
- "link": {
- "type": "generated-index",
- "description": "5 minutes to learn the most important Docusaurus concepts."
- }
-}
diff --git a/documentation/docs/tutorial-basics/create-a-blog-post.md b/documentation/docs/tutorial-basics/create-a-blog-post.md
deleted file mode 100644
index 550ae17..0000000
--- a/documentation/docs/tutorial-basics/create-a-blog-post.md
+++ /dev/null
@@ -1,34 +0,0 @@
----
-sidebar_position: 3
----
-
-# Create a Blog Post
-
-Docusaurus creates a **page for each blog post**, but also a **blog index page**, a **tag system**, an **RSS** feed...
-
-## Create your first Post
-
-Create a file at `blog/2021-02-28-greetings.md`:
-
-```md title="blog/2021-02-28-greetings.md"
----
-slug: greetings
-title: Greetings!
-authors:
- - name: Joel Marcey
- title: Co-creator of Docusaurus 1
- url: https://github.com/JoelMarcey
- image_url: https://github.com/JoelMarcey.png
- - name: Sébastien Lorber
- title: Docusaurus maintainer
- url: https://sebastienlorber.com
- image_url: https://github.com/slorber.png
-tags: [greetings]
----
-
-Congratulations, you have made your first post!
-
-Feel free to play around and edit this post as much as you like.
-```
-
-A new blog post is now available at [http://localhost:3000/blog/greetings](http://localhost:3000/blog/greetings).
diff --git a/documentation/docs/tutorial-basics/create-a-document.md b/documentation/docs/tutorial-basics/create-a-document.md
deleted file mode 100644
index c22fe29..0000000
--- a/documentation/docs/tutorial-basics/create-a-document.md
+++ /dev/null
@@ -1,57 +0,0 @@
----
-sidebar_position: 2
----
-
-# Create a Document
-
-Documents are **groups of pages** connected through:
-
-- a **sidebar**
-- **previous/next navigation**
-- **versioning**
-
-## Create your first Doc
-
-Create a Markdown file at `docs/hello.md`:
-
-```md title="docs/hello.md"
-# Hello
-
-This is my **first Docusaurus document**!
-```
-
-A new document is now available at [http://localhost:3000/docs/hello](http://localhost:3000/docs/hello).
-
-## Configure the Sidebar
-
-Docusaurus automatically **creates a sidebar** from the `docs` folder.
-
-Add metadata to customize the sidebar label and position:
-
-```md title="docs/hello.md" {1-4}
----
-sidebar_label: 'Hi!'
-sidebar_position: 3
----
-
-# Hello
-
-This is my **first Docusaurus document**!
-```
-
-It is also possible to create your sidebar explicitly in `sidebars.js`:
-
-```js title="sidebars.js"
-export default {
- tutorialSidebar: [
- 'intro',
- // highlight-next-line
- 'hello',
- {
- type: 'category',
- label: 'Tutorial',
- items: ['tutorial-basics/create-a-document'],
- },
- ],
-};
-```
diff --git a/documentation/docs/tutorial-basics/create-a-page.md b/documentation/docs/tutorial-basics/create-a-page.md
deleted file mode 100644
index 20e2ac3..0000000
--- a/documentation/docs/tutorial-basics/create-a-page.md
+++ /dev/null
@@ -1,43 +0,0 @@
----
-sidebar_position: 1
----
-
-# Create a Page
-
-Add **Markdown or React** files to `src/pages` to create a **standalone page**:
-
-- `src/pages/index.js` → `localhost:3000/`
-- `src/pages/foo.md` → `localhost:3000/foo`
-- `src/pages/foo/bar.js` → `localhost:3000/foo/bar`
-
-## Create your first React Page
-
-Create a file at `src/pages/my-react-page.js`:
-
-```jsx title="src/pages/my-react-page.js"
-import React from 'react';
-import Layout from '@theme/Layout';
-
-export default function MyReactPage() {
- return (
- This is a React pageMy React page
-
docs
directory.
+ Keep track of the countries you've visited, the regions you've explored,
+ and the places you've been. You can also see your travel stats and
+ milestones (coming soon).
>
),
},
{
- title: 'Powered by React',
- Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
- description: (
- <>
- Extend or customize your website layout by reusing React. Docusaurus can
- be extended while reusing the same header and footer.
- >
- ),
+ title: "View a Map of Your Travels",
+ Svg: require("@site/static/img/undraw_map_dark.svg").default,
+ description: <>See a map of all the places you've been.>,
},
];
-function Feature({title, Svg, description}: FeatureItem) {
+function Feature({ title, Svg, description }: FeatureItem) {
return (
-