diff --git a/docs/3-bot/1-overview.md b/docs/3-bot/1-overview.md
index 1356a1f..1f6a412 100644
--- a/docs/3-bot/1-overview.md
+++ b/docs/3-bot/1-overview.md
@@ -1,3 +1,16 @@
# Overview
-Work in progress...
+## Why Llama Bot?
+
+### 102% Free
+
+Every features are available for free.
+
+Everything is funded via donation.
+
+### Open source
+
+Llama bot is not just free as in free ice cream, but also free as in freedom.
+Every code that powers the Llama Bot can be found on [Github](https://github.com/llama-bot). Developers have the first class support and we provide detailed documentations to help you host the Llama Bot yourself.
+
+Also, every part of the bot is licensed under the [MIT License](https://opensource.org/licenses/MIT) so you are free to do whatever your hart desires!
diff --git a/docusaurus.config.js b/docusaurus.config.js
index 20abf33..4a7b39a 100644
--- a/docusaurus.config.js
+++ b/docusaurus.config.js
@@ -15,10 +15,11 @@ module.exports = {
projectName: 'llama-bot-docs', // Usually your repo name.
themeConfig: {
navbar: {
- title: 'Llama Bot',
+ title: 'Llama Bot Docs',
logo: {
alt: 'Llama Bot Logo',
src: 'img/logo.png',
+ href: '/docs/overview',
},
items: [
{
diff --git a/src/components/HomepageFeatures.jsx b/src/components/HomepageFeatures.jsx
deleted file mode 100644
index 39b3aa4..0000000
--- a/src/components/HomepageFeatures.jsx
+++ /dev/null
@@ -1,85 +0,0 @@
-import React from 'react';
-import clsx from 'clsx';
-
-import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
-import { faStar } from '@fortawesome/free-solid-svg-icons';
-
-import styles from './HomepageFeatures.module.css';
-
-const FeatureList = [
- {
- size: 4,
- title: 'Open source',
- description: (
- <>
- Everything that make up the bot can be found on{' '}
-
- Github
-
- . You can even clone and host it yourself!
- >
- ),
- },
- {
- size: 6,
- title: '102% Free',
- description: (
- <>
- Llama bot is not just free as in free ice cream, but also free as in
- freedom. Every part of the bot is licensed under the{' '}
-
- MIT License
- {' '}
- so you are free to do whatever your hart desires!
- >
- ),
- },
- {
- size: 4,
- title: 'Easy to use',
- description: (
- <>
- ✔️ Simple
-
- ✔️ Modern
-
- ✔️ Extendable
-
- ✔️ Well documented
- >
- ),
- },
-];
-
-function Feature({ size, title, description }) {
- return (
-
{description}
-{siteConfig.tagline}
-