diff --git a/docs/community/support.md b/docs/community/support.md
new file mode 100644
index 0000000..54a8c5f
--- /dev/null
+++ b/docs/community/support.md
@@ -0,0 +1,3 @@
+---
+title: Your Title Here
+---
diff --git a/docs/community/team.md b/docs/community/team.md
new file mode 100644
index 0000000..aad3e0a
--- /dev/null
+++ b/docs/community/team.md
@@ -0,0 +1,11 @@
+---
+title: Team
+---
+
+## Tech Leads
+
+## Active Contributors
+
+## Honorary Alumni
+
+## Acknowledgements
diff --git a/docs/contributing.md b/docs/contributing.md
new file mode 100644
index 0000000..59130b6
--- /dev/null
+++ b/docs/contributing.md
@@ -0,0 +1,3 @@
+---
+title: Contributing
+---
diff --git a/docs/create-a-blog-post.md b/docs/create-a-blog-post.md
deleted file mode 100644
index 4485a8a..0000000
--- a/docs/create-a-blog-post.md
+++ /dev/null
@@ -1,25 +0,0 @@
----
-title: Create a Blog Post
----
-
-This page will help you on how to create blog posts in Docusaurus.
-
-## Create a Blog Post
-
-Create a file at `blog/2021-02-28-greetings.md`:
-
-```md title="blog/2021-02-28-greetings.md"
----
-title: Greetings!
-author: Steven Hansel
-author_title: Docusaurus Contributor
-author_url: https://github.com/ShinteiMai
-author_image_url: https://github.com/ShinteiMai.png
----
-
-Congratulations, you have made your first post!
-
-Feel free to play around and edit this post as much you like.
-```
-
-A new blog post is now available at `http://localhost:3000/blog/greetings`.
diff --git a/docs/create-a-document.md b/docs/create-a-document.md
deleted file mode 100644
index 7922129..0000000
--- a/docs/create-a-document.md
+++ /dev/null
@@ -1,38 +0,0 @@
----
-title: Create a Document
----
-
-Documents are pages with a **sidebar**, a **previous/next navigation** and many other useful features.
-
-## Create a Document
-
-Create a markdown file at `docs/my-doc.md`:
-
-```mdx title="docs/hello.md"
----
-title: Hello, World!
----
-
-## Hello, World!
-
-This is your first document in **Docusaurus**, Congratulations!
-```
-
-A new document is now available at `http://localhost:3000/docs/hello`.
-
-## Add your document to the sidebar
-
-Add `hello` to the `sidebars.js` file:
-
-```diff title="sidebars.js"
-module.exports = {
- docs: [
- {
- type: 'category',
- label: 'Docusaurus Tutorial',
-- items: ['getting-started', 'create-a-doc', ...],
-+ items: ['getting-started', 'create-a-doc', 'hello', ...],
- },
- ],
-};
-```
diff --git a/docs/create-a-page.md b/docs/create-a-page.md
deleted file mode 100644
index 1056090..0000000
--- a/docs/create-a-page.md
+++ /dev/null
@@ -1,45 +0,0 @@
----
-title: Create a Page
----
-
-Any React or Markdown file created under `src/pages` directory is converted into a website page:
-
-- `src/pages/index.js` -> `localhost:3000/`
-- `src/pages/foo.md` -> `localhost:3000/foo`
-- `src/pages/foo/bar.js` -> `localhost:3000/foo/bar`
-
-## Create a 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';
-
-function HelloWorld() {
- return (
-
-