Skip to content

Commit 7852488

Browse files
committed
update docs theme + fix guide sorting
1 parent 4add8b3 commit 7852488

10 files changed

+32
-9
lines changed

apps/docs/content/guide/buttonkit.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: ButtonKit
2+
title: Using ButtonKit
33
description: ButtonKit is an enhanced version of the native Discord.js ButtonBuilder, designed to simplify the process of creating and handling button interactions in your Discord bot.
44
---
55

apps/docs/content/guide/command-file-setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Command File Setup
2+
title: Commands setup
33
description: Learn how to set up commands in CommandKit.
44
---
55

apps/docs/content/guide/commandkit-config.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: CommandKit Configuration
2+
title: CommandKit config file
33
description: Learn how to configure CommandKit CLI for your project.
44
---
55

apps/docs/content/guide/commandkit-setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: CommandKit Setup
2+
title: CommandKit setup
33
description: A simple overview of how to set up CommandKit with all the available options.
44
---
55

apps/docs/content/guide/create-commandkit.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Create CommandKit
2+
title: create-commandkit
33
description: Create a new CommandKit application with the command-line utility.
44
---
55

apps/docs/content/guide/event-file-setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Events Setup
2+
title: Events setup
33
description: A simple overview of how to set up event functions.
44
---
55

apps/docs/content/guide/meta.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"title": "CommandKit",
3+
"description": "The CommandKit library",
4+
"icon": "Building2",
5+
"root": true,
6+
"pages": [
7+
"---Guide---",
8+
"installation",
9+
"create-commandkit",
10+
"commandkit-setup",
11+
"command-file-setup",
12+
"event-file-setup",
13+
"validation-file-setup",
14+
"buttonkit",
15+
"using-cli",
16+
"commandkit-config",
17+
"migrating-from-djs-commander"
18+
]
19+
}

apps/docs/content/guide/migrating-from-djs-commander.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Migrating from djs-commander
33
description: A guide on migrating from DJS-Commander to CommandKit.
44
---
55

6-
# Migrating from `DJS-Commander`
6+
# Migrating from DJS-Commander
77

88
If you're trying to use CommandKit as a drop-in replacement for DJS-Commander, you'll need to make a few changes to your code.
99

apps/docs/content/guide/validation-file-setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Validations Setup
2+
title: Validations setup
33
description: Learn how to set up validations for your commands.
44
---
55

apps/docs/tailwind.config.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,9 @@ export default {
1010
'./node_modules/fumadocs-ui/dist/**/*.js',
1111
'../../node_modules/fumadocs-ui/dist/**/*.js',
1212
],
13-
presets: [createPreset()],
13+
presets: [
14+
createPreset({
15+
preset: 'vitepress',
16+
}),
17+
],
1418
};

0 commit comments

Comments
 (0)