Skip to content

Commit c1b8783

Browse files
committed
docs: add file tree example to getting started guide for clarity
1 parent b6a3fb1 commit c1b8783

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

content/docs/getting-started/first-steps.mdx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import Admonition from "@/components/endstone/admonition";
2+
import {File, Folder, Tree} from "@/components/magicui/file-tree";
23

34
# First Steps
45

@@ -31,6 +32,18 @@ Follow the instructions on the [Run with Docker](/docs/getting-started/installat
3132
After the first run, the server will create a **`server.properties`** file in the server folder.
3233
This file contains most settings related to the base gameplay.
3334

35+
<Tree
36+
className="overflow-hidden rounded-md bg-background p-2" initialExpandedItems={["1"]}
37+
>
38+
<Folder value="1" element="bedrock_server">
39+
<Folder element="behavior_packs"/>
40+
<Folder element="plugins"/>
41+
<Folder element="resource_packs"/>
42+
<Folder element="worlds"/>
43+
<File value="7" className="bg-blue-100 dark:bg-blue-900 font-semibold">server.properties</File>
44+
</Folder>
45+
</Tree>
46+
3447
The content of the file should look like this:
3548

3649
```ini filename="server.properties"

0 commit comments

Comments
 (0)