diff --git a/docs/tutorial/en/04-setting-up-bot/create-discord-app.md b/docs/tutorial/en/04-setting-up-bot/create-discord-app.md
index bd8fc7e77..9752624be 100644
--- a/docs/tutorial/en/04-setting-up-bot/create-discord-app.md
+++ b/docs/tutorial/en/04-setting-up-bot/create-discord-app.md
@@ -56,10 +56,6 @@ Then, fill in your application's name:
MTE1MjM2MDczNzczMDE5OTU2Mg.GUWUsy.dXAoO6NI1Cy3OV7IA-BTGcyzLS28-9tECNcVOg
```
-:::danger
-Please don't share your discord token (and probably all your other secrets)!
-:::
-
- Scroll down and enable the `Message Content Intent` and `Server Members Intent` so text commands work and discord.js doesn't error out.
- Replace `YOUR_DISCORD_TOKEN` with your actual discord token:
@@ -90,6 +86,11 @@ APPLICATION_ID=12345632432423987432987
NODE_ENV=development
```
+:::danger
+Please do NOT commit this file! It basically contains the bot's password and, even though Discord will notice and create another token, other services will most probably not have that privilege!
+To fix this, create a `.gitignore` file and add an entry for `.env` [and `node_modules` while we're there](https://i.redd.it/tfugj4n3l6ez.png).
+:::
+
## Inviting your bot to a Discord server.
This is the last stretch!
diff --git a/docs/tutorial/en/05-tictactoe/command.md b/docs/tutorial/en/05-tictactoe/command.md
index b619635cf..aff2173c4 100644
--- a/docs/tutorial/en/05-tictactoe/command.md
+++ b/docs/tutorial/en/05-tictactoe/command.md
@@ -3,6 +3,8 @@ title: command
sidebar_position: 2
---
+import GuideFeedback from "../../src/components/GuideFeedback";
+
# Commands
## Example command
@@ -37,3 +39,5 @@ export default commandModule({
})
```
+---
+
\ No newline at end of file
diff --git a/docs/tutorial/en/05-tictactoe/logic.md b/docs/tutorial/en/05-tictactoe/logic.md
index f2843c14d..1be997fb5 100644
--- a/docs/tutorial/en/05-tictactoe/logic.md
+++ b/docs/tutorial/en/05-tictactoe/logic.md
@@ -3,6 +3,8 @@ title: Logic
sidebar_position: 5
---
+import GuideFeedback from "../../src/components/GuideFeedback";
+
## Game rules
- Two players max.
- Each player is assigned **X** or **O**
@@ -100,6 +102,5 @@ const collector = responseMessage.createMessageComponentCollector({
time: 60_000
});
```
-
-
-
+---
+
\ No newline at end of file
diff --git a/docs/tutorial/en/05-tictactoe/plugins.md b/docs/tutorial/en/05-tictactoe/plugins.md
index c267aa721..d90429aad 100644
--- a/docs/tutorial/en/05-tictactoe/plugins.md
+++ b/docs/tutorial/en/05-tictactoe/plugins.md
@@ -3,6 +3,7 @@ title: plugins
sidebar_position: 3
---
+import GuideFeedback from "../../src/components/GuideFeedback";
# What are plugins?
@@ -49,3 +50,5 @@ run in any command / component.
### How to contribute plugins?:
- view [here](../../../guide/walkthrough/plugins).
+---
+
\ No newline at end of file
diff --git a/docs/tutorial/en/05-tictactoe/tictactoe.md b/docs/tutorial/en/05-tictactoe/tictactoe.md
index 64d7060ce..7c6c42d2b 100644
--- a/docs/tutorial/en/05-tictactoe/tictactoe.md
+++ b/docs/tutorial/en/05-tictactoe/tictactoe.md
@@ -3,9 +3,11 @@ title: intro
sidebar_position: 1
---
+import GuideFeedback from "../../src/components/GuideFeedback";
+
> How hard can this be?
-This will probably be the longest chapter in the book. Don't worry though, once we're done, making commands is [**fodder**](https://www.merriam-webster.com/dictionary/fodder).
+This will probably be the longest chapter in the guide. Don't worry though, once we're done, making commands is [**fodder**](https://www.merriam-webster.com/dictionary/fodder).
Here are some inspirational quotes to make you get motivated.
> "If you don't make mistakes, you're not working on hard enough problems." ― Frank Wilczek
@@ -16,5 +18,7 @@ Here are some inspirational quotes to make you get motivated.
If you want to add more, feel free to pull request this, but not too many please.
-
TODO!!! - ADD TIC TAC TOE GIF HERE
+
+---
+
\ No newline at end of file
diff --git a/docs/tutorial/en/05-tictactoe/ui.md b/docs/tutorial/en/05-tictactoe/ui.md
index c5d6aed25..a347e24ea 100644
--- a/docs/tutorial/en/05-tictactoe/ui.md
+++ b/docs/tutorial/en/05-tictactoe/ui.md
@@ -3,6 +3,7 @@ title: UI
sidebar_position: 4
---
+import GuideFeedback from "../../src/components/GuideFeedback";
## Message Components
@@ -116,3 +117,6 @@ Run your bot.
- Congrats! You got something to display.
Notice how when you try to click, it will say something like `interaction failed to respond`.
**Next chapter**, let's wire everything up.
+
+---
+
\ No newline at end of file