diff --git a/dashboard/main.go b/dashboard/main.go
index e657c740..9a0bc993 100644
--- a/dashboard/main.go
+++ b/dashboard/main.go
@@ -64,6 +64,10 @@ func main() {
createEmbed(rw, r)
})
+ r.Get("/status", func(rw http.ResponseWriter, r *http.Request) {
+ http.Redirect(rw, r, "https://status.pluralkit.me/", http.StatusMovedPermanently)
+ })
+
http.ListenAndServe(":8080", r)
}
diff --git a/dashboard/src/components/common/Navigation.svelte b/dashboard/src/components/common/Navigation.svelte
index daf9db1d..498d6470 100644
--- a/dashboard/src/components/common/Navigation.svelte
+++ b/dashboard/src/components/common/Navigation.svelte
@@ -53,7 +53,7 @@
Public
- Bot status
+ Bot status
diff --git a/docs/content/.vuepress/config.js b/docs/content/.vuepress/config.js
index 5bdc945e..b66c56e0 100644
--- a/docs/content/.vuepress/config.js
+++ b/docs/content/.vuepress/config.js
@@ -18,7 +18,7 @@ module.exports = {
},
themeConfig: {
- repo: 'PluralKit/PluralKit',
+ repo: false,
docsDir: 'docs/content/',
docsBranch: 'main',
editLinks: true,
@@ -29,7 +29,8 @@ module.exports = {
nav: [
{ text: "Web dashboard", link: "https://dash.pluralkit.me" },
{ text: "Support server", link: "https://discord.gg/PczBt78" },
- { text: "Invite bot", link: "https://discord.com/oauth2/authorize?client_id=466378653216014359&scope=bot%20applications.commands&permissions=536995904" }
+ { text: "Invite bot", link: "https://discord.com/oauth2/authorize?client_id=466378653216014359&scope=bot%20applications.commands&permissions=536995904" },
+ { text: "Bot status", link: "https://status.pluralkit.me/" }
],
sidebar: [
"/",