From 0ff7c2c3850d0288bb548c9f73a92a731cf66e00 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 13 Dec 2023 16:03:09 -0500 Subject: [PATCH] Simple Discord Page --- src/index.tsx | 2 ++ src/pages/discord.tsx | 21 +++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 src/pages/discord.tsx diff --git a/src/index.tsx b/src/index.tsx index 274161a..907300c 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -7,6 +7,7 @@ import { NotFound } from './pages/_404.jsx'; import './style.css'; import './themes/main.css'; import './i18n'; +import { discordPag } from './pages/discord.js'; export function App() { return ( @@ -17,6 +18,7 @@ export function App() {
+
diff --git a/src/pages/discord.tsx b/src/pages/discord.tsx new file mode 100644 index 0000000..92941ab --- /dev/null +++ b/src/pages/discord.tsx @@ -0,0 +1,21 @@ +import { useTranslation } from 'react-i18next'; + +export function discordPag() { + const { t } = useTranslation() + return ( +
+
+
+

Nebula's Discord Server

+ Would you like to Load this via Proxy? +
+ + + + + + +
+
+ ); +} \ No newline at end of file