diff --git a/docs/about.md b/docs/about.md
new file mode 100644
index 0000000..fa2869e
--- /dev/null
+++ b/docs/about.md
@@ -0,0 +1,33 @@
+# About Drop
+
+Drop is an open-source, self-hosted game distribution platform. It's designed offer all the same features of a platform like Steam.
+
+Don't know what any of that means? Keep reading.
+
+## Open source
+Open source means you are free to view and re-use the source code of Drop (in accordance with it's license).
+
+Drop is also open-contribution, and we encourage technical users to contribute back to the Drop source code, especially if there are features they want that are missing or are planned for later.
+
+If you want to start contributing, check out our GitHub: [Drop OSS organization](https://github.com/Drop-OSS).
+
+We also recommend join our Discord: [Drop-OSS invite](https://discord.gg/NHx46XKJWA). However, there is a lot of drama around open-source projects using Discord, so we also encourage using GitHub issues or discussions to ask for support or talk about new features.
+
+## Self hosted
+Self hosted means there **is no central server.** Unlike many of the services which dominate the Internet today, Drop isn't a website you go to, it's software you download and run yourself. That means every person that uses Drop **has their own, independent copy**, which has it's own **own, independent URL or way to access it.**
+
+Or, if you're lucky, one of your friends or family has already set up an instance, and provided you with a URL, in which case you can just head over to [Getting started with Drop](/guides/client).
+
+## Game distribution
+A game distribution service is one that... distributes games. Think of Steam, GOG or Epic Games. You can view, buy and download games from these sites. That's what Drop is.
+
+Instead however, instead of a massive centralized website, each admin runs their own copy, and adds *their own games* to their own copy of Drop. Also, there's no payment processing, nothing has a price.
+
+## Platform
+Drop does a lot more than just game distribution. As of `v0.2.0-beta`, a lot hasn't been implemented. But, in future, Drop will be able to handle things such as:
+
+- Dedicated servers
+- Matchmaking & P2P games
+- Achievements & items
+- Cloud saves
+- Modding
\ No newline at end of file
diff --git a/docs/advanced/building.md b/docs/advanced/building.md
new file mode 100644
index 0000000..f3e9dc4
--- /dev/null
+++ b/docs/advanced/building.md
@@ -0,0 +1,79 @@
+# Building Drop server for other platforms
+
+Unfortunately, we don't have the time or resources to build and debug our software for platforms other than x86-64 or arm64. However, we offer this guide as a way to get it running, at your own risk.
+
+## Prerequisites
+
+To compile:
+
+- Rust (stable)
+- Node.js v20
+- `yarn` (v1/legacy) package manager
+- `git` VCS
+- Docker
+
+To run:
+
+- Docker
+
+## Building `droplet`
+
+`droplet` is a high-performance utility package for the Drop server. It's a `napi.rs` module, meaning it's written in Rust and then compiled to an NPM module.
+
+Get started by cloning the `droplet` source code, and then enter the directory:
+
+```shell
+git clone https://github.com/Drop-OSS/droplet.git
+```
+
+Install the dependencies with `yarn`:
+
+```shell
+yarn
+```
+
+And then compile the package with the build script:
+
+```shell
+yarn build
+```
+
+Because we're building this locally, setup the yarn link so we can use this package while building the server:
+
+```shell
+yarn link
+```
+
+## Building `drop`
+
+`drop` is the self hosted server. It's a Nuxt 3 project, but depends on the `droplet` package so isn't easily transportable.
+
+Get started by cloning the `drop` source code, and then enter the directory:
+
+```shell
+git clone https://github.com/Drop-OSS/drop.git
+```
+
+Then, link your build `droplet` package:
+
+```shell
+yarn link "@drop/droplet"
+```
+
+Then, install dependencies:
+
+```shell
+yarn
+```
+
+Then, build the application:
+
+```
+yarn build
+```
+
+To package it into a Docker container, remove the build commands in the provided `Dockerfile`'s build-system (`yarn install` and `yarn build`), and then build the Docker image:
+
+```shell
+docker build . -t drop
+```
diff --git a/docs/guides/client-troubleshooting.md b/docs/guides/client-troubleshooting.md
new file mode 100644
index 0000000..6763d83
--- /dev/null
+++ b/docs/guides/client-troubleshooting.md
@@ -0,0 +1,16 @@
+# Troubleshooting
+
+## I'm on Linux, with Nvidia proprietary drivers, and Drop won't launch
+
+Add `WEBKIT_DISABLE_DMABUF_RENDERER=1` to the Drop .desktop file:
+
+1. Open `/usr/share/applications/Drop\ Desktop\ Client.desktop` with your preferred editor
+2. Add `env WEBKIT_DISABLE_DMABUF_RENDERER=1` before `drop-app` on the `Exec=drop-app` line
+
+## "Server's and client's time is out of sync..." or HTTP 0
+
+The server and client must be within 30 seconds of each other for security reasons. Drop uses short-lived tokens to authenticate securely, and they are valid for those 30 seconds. If you are the server administrator, please ensure both your server and client have the correct time. If you are a user, please double check your own system before asking your admin.
+
+## Default Apps / Deep Links not registering
+On Windows, it appears that Deep Links are not updating between Drop releases. To resolve this issue, navigate to your Default Apps in
+Settings and press "Reset Default Apps". This will, however, result in resetting all of your default apps.
\ No newline at end of file
diff --git a/docs/guides/client.md b/docs/guides/client.md
new file mode 100644
index 0000000..6d3e162
--- /dev/null
+++ b/docs/guides/client.md
@@ -0,0 +1,4 @@
+# Getting started with Drop
+Drop clients are available for download from the [our website](https://droposs.org/download). Download the correct version for your platform, and open it up.
+
+The client will walk you through the setup and sign-in process to get started. You'll need a Drop instance you can connect to, and an account on the server. If you don't have one, you can follow the [Quickstart guide](/guides/quickstart) to setup your own.
\ No newline at end of file
diff --git a/docs/guides/create-admin-account.md b/docs/guides/create-admin-account.md
new file mode 100644
index 0000000..64ebc80
--- /dev/null
+++ b/docs/guides/create-admin-account.md
@@ -0,0 +1,9 @@
+# Create your admin account
+A freshly set up Drop instance will have an 'admin invitation' created. This allows you to create your admin account without having to copy credentials from the command line, or similar.
+
+To use the invitation, go to:
+```
+{Drop instance URL}/register?id=admin
+```
+
+Once used, the invitation will be deleted. If you are unsure how to access your Drop instance, read through [Exposing your instance](/guides/exposing)
\ No newline at end of file
diff --git a/docs/guides/exposing.md b/docs/guides/exposing.md
new file mode 100644
index 0000000..41e970f
--- /dev/null
+++ b/docs/guides/exposing.md
@@ -0,0 +1,20 @@
+# Exposing your instance
+Exposing your instance allows it to be accessible from other computers than the one you're hosting it on.
+
+## LAN
+The `compose.yaml` provided in the [Quickstart guide](/guides/quickstart.md) already exposes the Drop instance on port 3000. If you're on the same LAN as your Drop instance, you can find it's IP and then use:
+```
+http://[instance IP]:3000
+```
+
+as the connection URL when setting up your Drop client.
+
+## Reverse Proxy
+If you are unsure how to set up a reverse proxy, or even what one is, this guide isn't for you. There are far better guides out there, so follow them to set up your reverse proxy.
+
+As of `v0.2.0-beta` there is no special configuration required to run Drop behind a reverse proxy.
+
+## VPN
+If you are unsure how to setup a VPN for remote access, please find and follow a far better guide than this one.
+
+Accessing Drop over a VPN works very similarly to [accessing via LAN](#lan), so follow those steps.
\ No newline at end of file
diff --git a/docs/guides/quickstart.md b/docs/guides/quickstart.md
new file mode 100644
index 0000000..86a3500
--- /dev/null
+++ b/docs/guides/quickstart.md
@@ -0,0 +1,72 @@
+# Quickstart
+
+This guide quickly runs through how to get set up with Drop in about five minutes, depending on your experience.
+
+## Setting up the instance
+
+The easiest way to get Drop running is using our pre-built Docker container.
+
+```yaml compose.yaml
+services:
+ postgres:
+ image: postgres:14-alpine
+ ports:
+ - 5432:5432
+ healthcheck:
+ test: pg_isready -d drop -U drop
+ interval: 30s
+ timeout: 60s
+ retries: 5
+ start_period: 10s
+ volumes:
+ - ./db:/var/lib/postgresql/data
+ environment:
+ - POSTGRES_PASSWORD=drop
+ - POSTGRES_USER=drop
+ - POSTGRES_DB=drop
+ drop:
+ image: decduck/drop-oss:v0.2.0-beta
+ depends_on:
+ postgres:
+ condition: service_healthy
+ ports:
+ - 3000:3000
+ volumes:
+ - ./library:/library
+ - ./certs:/certs
+ - ./objects:/objects
+ environment:
+ - DATABASE_URL=postgres://drop:drop@postgres:5432/drop
+ - FS_BACKEND_PATH=/objects
+ - CLIENT_CERTIFICATES=/certs
+ - LIBRARY=/library
+ - GIANT_BOMB_API_KEY=REPLACE_WITH_YOUR_KEY
+```
+
+**The main things in this `compose.yaml` is the volumes attached to the `drop` service:**
+
+1. `./library` is where you will put your games to be imported into Drop. See '[Structuring your library](/docs/library.md#structuring-your-library)' once you're set up.
+2. `./certs` is where Drop will store cryptographic certificates relating to the function of Drop end clients and the connections between them. In order to make sure the traffic isn't being snooped on, keep this directory safe.
+3. `./objects` is where Drop will store uploaded & downloaded files (from metadata providers)
+
+**In addition, configure your chosen metadata provider:**
+
+- [GiantBomb](/metadata/giantbomb.md) (only one supported as of v0.2.0-beta)
+
+:::tip
+If you want to, you can generate a more secure PostgreSQL username & password.
+:::
+
+:::warning
+For security reasons, the Drop server and client's times need to be within 30 seconds of each other, otherwise authorization will fail.
+:::
+
+Once your instance is running, [create your admin account](/guides/create-admin-account.md).
+
+## Setting up a client
+
+To set up a client, your Drop instance will have to be accessible from it. See [Exposing your instance](/guides/exposing.md) for information on how to do that.
+
+First, download the latest client for your platform from [the GitHub releases page](https://github.com/Drop-OSS/drop-app/releases). Then, install it for your platform. If we don't have a binary available for your platform, please create an issue on [the Drop app repository](https://github.com/Drop-OSS/drop-app) and we'll investigate it.
+
+Once installed, open the Drop app for the first time. There is an automated wizard that'll walk you through the steps of signing into your Drop instance.
diff --git a/docs/guides/server-troubleshooting.md b/docs/guides/server-troubleshooting.md
new file mode 100644
index 0000000..64a80c8
--- /dev/null
+++ b/docs/guides/server-troubleshooting.md
@@ -0,0 +1 @@
+# Troubleshooting
\ No newline at end of file
diff --git a/docs/index.md b/docs/index.md
new file mode 100644
index 0000000..3ba9094
--- /dev/null
+++ b/docs/index.md
@@ -0,0 +1,24 @@
+---
+# https://vitepress.dev/reference/default-theme-home-page
+layout: home
+
+hero:
+ name: "Drop OSS"
+ tagline: Drop is an open-source, self-hosted game distribution platform. Like Steam!
+ actions:
+ - theme: brand
+ text: Quick start
+ link: /guides/quickstart
+ - theme: alt
+ text: About ->
+ link: /about/
+
+features:
+ - title: Open-source
+ details: Drop is open source software! We're under the AGPL-3.0 license.
+ - title: Self-hosted
+ details: Drop is designed to be self hosted! These docs, and Docker make that possible.
+ - title: Cross-platform
+ details: Drop has first class support for both Linux & Windows!
+---
+
diff --git a/docs/intro.md b/docs/intro.md
deleted file mode 100644
index 45e8604..0000000
--- a/docs/intro.md
+++ /dev/null
@@ -1,47 +0,0 @@
----
-sidebar_position: 1
----
-
-# Tutorial Intro
-
-Let's discover **Docusaurus in less than 5 minutes**.
-
-## Getting Started
-
-Get started by **creating a new site**.
-
-Or **try Docusaurus immediately** with **[docusaurus.new](https://docusaurus.new)**.
-
-### What you'll need
-
-- [Node.js](https://nodejs.org/en/download/) version 18.0 or above:
- - When installing Node.js, you are recommended to check all checkboxes related to dependencies.
-
-## Generate a new site
-
-Generate a new Docusaurus site using the **classic template**.
-
-The classic template will automatically be added to your project after you run the command:
-
-```bash
-npm init docusaurus@latest my-website classic
-```
-
-You can type this command into Command Prompt, Powershell, Terminal, or any other integrated terminal of your code editor.
-
-The command also installs all necessary dependencies you need to run Docusaurus.
-
-## Start your site
-
-Run the development server:
-
-```bash
-cd my-website
-npm run start
-```
-
-The `cd` command changes the directory you're working with. In order to work with your newly created Docusaurus site, you'll need to navigate the terminal there.
-
-The `npm run start` command builds your website locally and serves it through a development server, ready for you to view at http://localhost:3000/.
-
-Open `docs/intro.md` (this page) and edit some lines: the site **reloads automatically** and displays your changes.
diff --git a/docs/library.md b/docs/library.md
new file mode 100644
index 0000000..edcb54d
--- /dev/null
+++ b/docs/library.md
@@ -0,0 +1,42 @@
+# Library
+
+## Structuring your library
+Drop uses a very particular structure to organise your games library. Generally, to get started, you need to create two folders for a game:
+
+1. `{LIBRARY}/My Game Name` - The game folder. This contains **only** folders, as described as below.
+2. `{LIBRARY}/My Game Name/my-version-name` - The version folder. This folder contains all the files for the game.
+
+Once in the UI, you'll be prompted to "import" each folder separately:
+
+- Importing the **game folder** will link the folder to a game in the metadata database, and pulls the data (images, descriptions, that sort of thing) from one of your configured metadata providers. **This only happens once for each game you have.**
+- Importing **version folder** will read the entirety of the game files and generate checksums and metadata that clients need to download the games with. **This happens for each new version you add.**
+
+::: warning
+Importing the version may take very long, depending on the size of the game and the speed of the drive. CPU is rarely the bottleneck.
+:::
+
+### Game vs. Version
+A "game" in Drop is associated with all the metadata, and doesn't have to changed if the game updates.
+
+A "version" in Drop is associated with the files, and a new one will have to be created every time the game updates.
+
+## Importing more versions
+So your game has gotten an update and you've got new files. All you need to do is create a new version folder inside the game folder, and move all the files you have into that folder. Then, import it within the Drop admin UI.
+
+If you have files that you're supposed to **paste over the previous version**, Drop supports that! Read [Version delta & ordering](#version-deltas--ordering) to find out more.
+
+## Version deltas & ordering
+
+Version deltas are a way to avoid storing copies of files on the server. Delta are, very simply, pasted over the top of previous versions (but much more efficiently, to avoid excess downloading).
+
+To create a delta version, simply select the toggle in the admin UI. Once created, you can drag around the priority of your versions in the admin view of a game. Higher priority versions will have their files used over lower priority. For example, consider three versions:
+
+1. **v1**
+ 1. Game.exe
+ 2. Data.bin
+2. **v2** (delta)
+ 1. Game.exe
+3. **v3** (delta)
+ 1. Data.bin
+
+If the user decides to download **v3**, Drop will download the 'Data.bin' from **v3**, and the 'Game.exe' from **v2**. It won't download any files from **v1**, because they have all been overwritten by higher priority versions.
\ No newline at end of file
diff --git a/docs/metadata/giantbomb.md b/docs/metadata/giantbomb.md
new file mode 100644
index 0000000..b45af16
--- /dev/null
+++ b/docs/metadata/giantbomb.md
@@ -0,0 +1,9 @@
+# GiantBomb
+
+GiantBomb is a community-driven open game database. It is accessible at [https://www.giantbomb.com/](https://www.giantbomb.com/).
+
+## Creating an account
+To get an API key, you must sign up for an account. Head over to [GiantBomb's Login or Signup](https://www.giantbomb.com/login-signup/) page to create your account, and follow the prompts.
+
+## Getting an API key
+Head over to the [GiantBomb API page](https://www.giantbomb.com/api/) and copy your API key from the box at the top of the page. Then, set this in your environment variables with a key of `GIANT_BOMB_API_KEY`
\ No newline at end of file
diff --git a/docs/metadata/igdb.md b/docs/metadata/igdb.md
new file mode 100644
index 0000000..06515bb
--- /dev/null
+++ b/docs/metadata/igdb.md
@@ -0,0 +1,8 @@
+# IGDB
+
+IGDB is a game database run by Twitch. It is free to use, but requires a Twitch account.
+
+## Getting an API key
+
+1. Follow the instructions at [https://api-docs.igdb.com/#getting-started](https://api-docs.igdb.com/#getting-started)
+2. Assign the `IGDB_CLIENT_ID` and `IGDB_CLIENT_SECRET` environment variables.
diff --git a/docs/metadata/pcgamingwiki.md b/docs/metadata/pcgamingwiki.md
new file mode 100644
index 0000000..f14ab30
--- /dev/null
+++ b/docs/metadata/pcgamingwiki.md
@@ -0,0 +1,3 @@
+# PCGamingWiki
+
+PCGamingWiki is a community run game database. There no additional setup required to use PCGamingWiki.
diff --git a/docs/public/drop.svg b/docs/public/drop.svg
new file mode 100644
index 0000000..34db292
--- /dev/null
+++ b/docs/public/drop.svg
@@ -0,0 +1,5 @@
+
diff --git a/docs/public/logo_with_background.png b/docs/public/logo_with_background.png
new file mode 100644
index 0000000..424f768
Binary files /dev/null and b/docs/public/logo_with_background.png differ
diff --git a/docs/roadmap.md b/docs/roadmap.md
new file mode 100644
index 0000000..4187da3
--- /dev/null
+++ b/docs/roadmap.md
@@ -0,0 +1,53 @@
+# Roadmap
+
+While we're moving towards a major release, here's a few features that you can look forward to over the
+next few minor ones:
+
+## Short-term
+### Better authentication
+Support for more authentication methods, such as discord, google, oauth, etc.
+
+Accounts shouldn't be locked down to just Drop. We'd like to not only support username / password login,
+but OAuth, 2FA, U2F, magic links, and as many other authentication methods as we can.
+
+Along with that, setting up user / group permissions are also planned, to give admins a more fine-grained
+control over who has access to what.
+
+### Connecting to multiple servers (client-side only)
+Let users connect to and manage games from more than one server
+
+This one is especially something that we've had requested from indie devs, but being able to access
+multiple Drop servers could lead to a much larger ecosystem where it's realistic for an indie dev
+to self-host their own games without Steam's 30%
+
+## Mid-term
+### Launch tooling
+Open support for customising the toolchain with which your games are run with
+
+While [UMU](https://github.com/Open-Wine-Components/umu-launcher) is great, people often have specific
+configurations that we can't really account for out of the box. To remedy this, we'd like to open Drop
+up to essentially fully customised launch sequences for any game, such as setting launch args from the
+client, configuring, deleting, and backing up prefixes, or setting ENV values.
+
+We also recognise the value in being able to completely customise the way that your games are run,
+whether it be by passing them through a remote-play app, an emulator, or anything else of the sort.
+
+### Cloud save management
+Support for cloud saves, making it easier to manage saves across different devices and operating systems.
+
+We're looking at using the [ludusavi manifest](https://github.com/mtkennerly/ludusavi-manifest) to figure
+out relevant folders and files to be backed up to ideally any remote location.
+
+## Long-term
+### Social features
+Support for social features, such as friends, groups, and other social interactions like current game status.
+
+People don't always play games with themselves, and so we'd like to add a variety of chat features, friends
+updates, and other various features that can also be found in Steam's "Friends" and "Community" tabs.
+
+### Multiplayer support
+Support for multiplayer server management, such as discovering servers, joining servers, and leaving servers.
+
+Intended as a drop-in replacement for the SteamWorks API, we'd like to provide support for multiplayer support
+through the drop server, referencing the [Goldberg Emulator](https://gitlab.com/Mr_Goldberg/goldberg_emulator),
+as it has the most complete collection of headers that we can find.
\ No newline at end of file
diff --git a/docs/tutorial-basics/_category_.json b/docs/tutorial-basics/_category_.json
deleted file mode 100644
index 2e6db55..0000000
--- a/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/docs/tutorial-basics/congratulations.md b/docs/tutorial-basics/congratulations.md
deleted file mode 100644
index 04771a0..0000000
--- a/docs/tutorial-basics/congratulations.md
+++ /dev/null
@@ -1,23 +0,0 @@
----
-sidebar_position: 6
----
-
-# Congratulations!
-
-You have just learned the **basics of Docusaurus** and made some changes to the **initial template**.
-
-Docusaurus has **much more to offer**!
-
-Have **5 more minutes**? Take a look at **[versioning](../tutorial-extras/manage-docs-versions.md)** and **[i18n](../tutorial-extras/translate-your-site.md)**.
-
-Anything **unclear** or **buggy** in this tutorial? [Please report it!](https://github.com/facebook/docusaurus/discussions/4610)
-
-## What's next?
-
-- Read the [official documentation](https://docusaurus.io/)
-- Modify your site configuration with [`docusaurus.config.js`](https://docusaurus.io/docs/api/docusaurus-config)
-- Add navbar and footer items with [`themeConfig`](https://docusaurus.io/docs/api/themes/configuration)
-- Add a custom [Design and Layout](https://docusaurus.io/docs/styling-layout)
-- Add a [search bar](https://docusaurus.io/docs/search)
-- Find inspirations in the [Docusaurus showcase](https://docusaurus.io/showcase)
-- Get involved in the [Docusaurus Community](https://docusaurus.io/community/support)
diff --git a/docs/tutorial-basics/create-a-blog-post.md b/docs/tutorial-basics/create-a-blog-post.md
deleted file mode 100644
index 550ae17..0000000
--- a/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/docs/tutorial-basics/create-a-document.md b/docs/tutorial-basics/create-a-document.md
deleted file mode 100644
index c22fe29..0000000
--- a/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/docs/tutorial-basics/create-a-page.md b/docs/tutorial-basics/create-a-page.md
deleted file mode 100644
index 20e2ac3..0000000
--- a/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
-
{siteConfig.tagline}