From 9890958609efb9edaaf08fd4daf6e1f2fd0a7591 Mon Sep 17 00:00:00 2001
From: Ori Pomerantz <qbzzt1@gmail.com>
Date: Wed, 9 Aug 2023 09:00:57 -0500
Subject: [PATCH] docs: tutorial summary page (#1253)

---
 docs/pages/tutorials.mdx | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 docs/pages/tutorials.mdx

diff --git a/docs/pages/tutorials.mdx b/docs/pages/tutorials.mdx
new file mode 100644
index 0000000000..fb636fae49
--- /dev/null
+++ b/docs/pages/tutorials.mdx
@@ -0,0 +1,22 @@
+# MUD tutorials
+
+These tutorials teach you how to do various things with MUD.
+
+## Modifying the getting started example
+
+[These tutorials](tutorials/minimal) teach you how to make various changes to [the getting started example](https://github.com/latticexyz/mud/tree/main/examples/minimal).
+This is an easy way to learn how to modify MUD functionality in various ways.
+
+- [Add a system](tutorials/minimal/add_system):
+  In this tutorial you add a system to decrement the counter and update the application to use it.
+
+## Walkthrough
+
+[These tutorials](tutorials/walkthrough) are deep dives into various sections of code.
+
+- [The onchain components of getting started](tutorials/walkthrough/onchain):
+  In this tutorial you learn how to understand the onchain components of the minimal template.
+
+## Emojimon
+
+[This tutorial](tutorials/emojimon) is a complete game, explaining how to create the data model, systems to manipulate it onchain, and then user interface.