From 7cc8ec982d3a74767eac475a0ebed9c7c5762e9c Mon Sep 17 00:00:00 2001 From: Ori Pomerantz Date: Tue, 16 Jul 2024 16:00:20 -0500 Subject: [PATCH 1/5] docs(introduction): add video to the introduction --- docs/pages/introduction.mdx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/pages/introduction.mdx b/docs/pages/introduction.mdx index eea0810e2c..fa50c0dfe0 100644 --- a/docs/pages/introduction.mdx +++ b/docs/pages/introduction.mdx @@ -1,5 +1,16 @@ # What is MUD? + + MUD is a framework for ambitious onchain applications. It reduces the complexity of building [Ethereum](https://ethereum.org/) apps with a tightly integrated software stack. It's [open source](https://github.com/latticexyz/mud) and [free to use](https://github.com/latticexyz/mud/blob/main/LICENSE). ![A breakdown of the features of MUD](/images/bento.png) From 5b25dbff9d0cf0c10e8f8afb40a456c0c68c1cb4 Mon Sep 17 00:00:00 2001 From: Ori Pomerantz Date: Tue, 23 Jul 2024 16:12:00 -0500 Subject: [PATCH 2/5] visual --- docs/pages/introduction.mdx | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/docs/pages/introduction.mdx b/docs/pages/introduction.mdx index fa50c0dfe0..7f593357a5 100644 --- a/docs/pages/introduction.mdx +++ b/docs/pages/introduction.mdx @@ -1,15 +1,6 @@ # What is MUD? - +[📽️ Video](https://www.youtube.com/watch?v=Unfj6yN9wmA) MUD is a framework for ambitious onchain applications. It reduces the complexity of building [Ethereum](https://ethereum.org/) apps with a tightly integrated software stack. It's [open source](https://github.com/latticexyz/mud) and [free to use](https://github.com/latticexyz/mud/blob/main/LICENSE). From a76d5c078e36a1c0e745ea990074adb24ddc6701 Mon Sep 17 00:00:00 2001 From: Ori Pomerantz Date: Fri, 16 Aug 2024 17:26:08 -0500 Subject: [PATCH 3/5] Created a separate video page --- docs/pages/_meta.js | 4 +++ docs/pages/introduction.mdx | 2 -- docs/pages/video.mdx | 49 +++++++++++++++++++++++++++++++++++++ 3 files changed, 53 insertions(+), 2 deletions(-) create mode 100644 docs/pages/video.mdx diff --git a/docs/pages/_meta.js b/docs/pages/_meta.js index 4d79762a8d..7106042d0b 100644 --- a/docs/pages/_meta.js +++ b/docs/pages/_meta.js @@ -9,6 +9,10 @@ export default { title: "Get started", theme: { breadcrumb: false }, }, + video: { + title: "Videos", + theme: { breadcrumb: false }, + }, protocol: { title: "Protocol", type: "separator", diff --git a/docs/pages/introduction.mdx b/docs/pages/introduction.mdx index 7f593357a5..eea0810e2c 100644 --- a/docs/pages/introduction.mdx +++ b/docs/pages/introduction.mdx @@ -1,7 +1,5 @@ # What is MUD? -[📽️ Video](https://www.youtube.com/watch?v=Unfj6yN9wmA) - MUD is a framework for ambitious onchain applications. It reduces the complexity of building [Ethereum](https://ethereum.org/) apps with a tightly integrated software stack. It's [open source](https://github.com/latticexyz/mud) and [free to use](https://github.com/latticexyz/mud/blob/main/LICENSE). ![A breakdown of the features of MUD](/images/bento.png) diff --git a/docs/pages/video.mdx b/docs/pages/video.mdx new file mode 100644 index 0000000000..c5459988c7 --- /dev/null +++ b/docs/pages/video.mdx @@ -0,0 +1,49 @@ +# Videos + +## Build an onchain game in one hour with MUD + +**2024-01-24** + +
+ + +## MUD and autonomous worlds + +**2023-09-12** + +
+ + +## Getting started with MUD + +**2023-05-18** + +
+ From 3c5a6ee006dcaf474149062def30284fd5518c85 Mon Sep 17 00:00:00 2001 From: Ori Pomerantz Date: Mon, 26 Aug 2024 09:49:31 -0500 Subject: [PATCH 4/5] Move videos back to quickstart page --- docs/pages/_meta.js | 4 --- docs/pages/quickstart.mdx | 62 +++++++++++++++++++++++++++++++++++++++ docs/pages/video.mdx | 49 ------------------------------- 3 files changed, 62 insertions(+), 53 deletions(-) delete mode 100644 docs/pages/video.mdx diff --git a/docs/pages/_meta.js b/docs/pages/_meta.js index 7106042d0b..4d79762a8d 100644 --- a/docs/pages/_meta.js +++ b/docs/pages/_meta.js @@ -9,10 +9,6 @@ export default { title: "Get started", theme: { breadcrumb: false }, }, - video: { - title: "Videos", - theme: { breadcrumb: false }, - }, protocol: { title: "Protocol", type: "separator", diff --git a/docs/pages/quickstart.mdx b/docs/pages/quickstart.mdx index c8c21407ec..83237c482e 100644 --- a/docs/pages/quickstart.mdx +++ b/docs/pages/quickstart.mdx @@ -3,6 +3,68 @@ import { Tabs, Tab } from "nextra/components"; # Getting started + + + +| Date | Length | +| ---------- | -----: | +| 2024-01-24 | 53:02 | + + + + + + + +| Date | Length | +| ---------- | -----: | +| 2023-09-12 | 13:56 | + + + + + + + +| Date | Length | +| ---------- | -----: | +| 2023-05-18 | 25:24 | + + + + + + In most cases the easiest way to get started is to use [the TypeScript templates](https://github.com/latticexyz/mud/tree/main/templates) provided by [Lattice](https://lattice.xyz/). diff --git a/docs/pages/video.mdx b/docs/pages/video.mdx deleted file mode 100644 index c5459988c7..0000000000 --- a/docs/pages/video.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Videos - -## Build an onchain game in one hour with MUD - -**2024-01-24** - -
- - -## MUD and autonomous worlds - -**2023-09-12** - -
- - -## Getting started with MUD - -**2023-05-18** - -
- From d8dfe7c999cbe62ce9f3985168dd8108357d8b56 Mon Sep 17 00:00:00 2001 From: Ori Pomerantz Date: Wed, 11 Sep 2024 11:19:14 -0500 Subject: [PATCH 5/5] shrunk videos to 75% --- docs/pages/quickstart.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/pages/quickstart.mdx b/docs/pages/quickstart.mdx index 83237c482e..75cbd9eafa 100644 --- a/docs/pages/quickstart.mdx +++ b/docs/pages/quickstart.mdx @@ -14,8 +14,8 @@ import { Tabs, Tab } from "nextra/components"; | 2024-01-24 | 53:02 |