diff --git a/src/pages/discord.tsx b/src/pages/discord.tsx new file mode 100644 index 0000000..0a77a39 --- /dev/null +++ b/src/pages/discord.tsx @@ -0,0 +1,6 @@ +export default function RedirectToDiscord() { + if (typeof window !== 'undefined') { + window.location.href = 'https://discord.gg/pelican-panel'; + } + return null; // Return null since no UI is needed. +}