diff --git a/src/Pages/Japan/Japanese/en/te-oku.md b/src/Pages/Japan/Japanese/en/te-oku.md
new file mode 100644
index 0000000..dd06b36
--- /dev/null
+++ b/src/Pages/Japan/Japanese/en/te-oku.md
@@ -0,0 +1,35 @@
+## ておく
+
+---
+
+* て-form + おく
+* て-form + おきます
+* て-form + おいて
+
+1. To prepare or do in advance.
+2. To leave as is, without doing anything.
+
+---
+
+#### 1. To prepare or do in advance.
+
+* 来年、北海道に行くから、をし。
+* I will book a hotel , because I am going to Hokkaido next year.
+
+* 来週、パーティーに行くから、を切っ。
+* I will get a haircut , because I will go to the party next week.
+
+* 来週の試験のため、漢字を勉強し。
+* I studied kanji for the exam next week.
+
+#### 2. To leave as is, without doing anything.
+
+* お姉さんにはにしね。
+* I it a secret with my older sister.
+
+
+---
+
+###### 関係する動画
+
+* [【JLPT N4 Grammar】〜ておく](https://www.youtube.com/watch?v=_fm1CiLbXZ4) by: [Japanese Shoko](https://www.youtube.com/@UKjapanese369)
\ No newline at end of file
diff --git a/src/Pages/Japan/en/main.md b/src/Pages/Japan/en/main.md
index 84efcdf..bb1fd75 100644
--- a/src/Pages/Japan/en/main.md
+++ b/src/Pages/Japan/en/main.md
@@ -14,6 +14,10 @@ These pages contain my notes on learning the language.
* [と、たら、ば、なら](./japanese/if-when)
* [けど、けれど、けれども、のに](./japanese/but)
+### て-forms
+
+* [ておく](./japanese/te-oku)
+
### Particles (助詞、じょし)
* [Particles](./japanese/particles)
diff --git a/src/Routers.js b/src/Routers.js
index 8bcf958..ba9406e 100644
--- a/src/Routers.js
+++ b/src/Routers.js
@@ -9,7 +9,7 @@ import ElmPage from './Pages/Software/elm/ElmPage';
// Japan
export const japaneseRoutes = languages.map(lang => {
- const pages = ['but', 'cheat-sheet', 'contrast-particle', 'dake-vs-shika', 'if-when', 'particles', 'tameni-youni-noni', 'toka-tari-shi', 'verbs'];
+ const pages = ['but', 'cheat-sheet', 'contrast-particle', 'dake-vs-shika', 'if-when', 'particles', 'tameni-youni-noni', 'te-oku', 'toka-tari-shi', 'verbs'];
return pages.map(page => {
const path = `/${lang}/japan/japanese/${page}`;
const mdPath = `Japan/Japanese/${lang}/${page}.md`;