From 2070f977c561b8a342bd6bb3cf665c076193304e Mon Sep 17 00:00:00 2001 From: Caspian Date: Fri, 29 Sep 2023 09:19:46 +0100 Subject: [PATCH] feat: Added a support page. --- src/app/(home)/support/page.tsx | 46 +++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/app/(home)/support/page.tsx diff --git a/src/app/(home)/support/page.tsx b/src/app/(home)/support/page.tsx new file mode 100644 index 00000000..44a84e05 --- /dev/null +++ b/src/app/(home)/support/page.tsx @@ -0,0 +1,46 @@ +import { DISCORD_LINK } from "~/lib/env" + +export default function SupportPage() { + return ( +
+
+
+
+
+
+
+

Support

+

+ You can access our Discord server to get support. +

+

+ + Join our Discord server + +

+

+ If you want to learn more about xLog, please visit the{" "} + + home page + {" "} + of xLog +

+
+
+
+
+
+
+
+ ) +}