From 2fc5f2a9d9b0848068496cc3de5271c637ea5f7b Mon Sep 17 00:00:00 2001 From: asleepyskye Date: Wed, 27 Aug 2025 17:22:04 -0400 Subject: [PATCH] chore: add link to new status page to docs, dash --- dashboard/main.go | 4 ++++ dashboard/src/components/common/Navigation.svelte | 2 +- docs/content/.vuepress/config.js | 5 +++-- 3 files changed, 8 insertions(+), 3 deletions(-) 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: [ "/",