From 3dad716bd96f3a9f73e4ff6af268ea54e2f93a58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9B=90=EB=8D=94?= Date: Wed, 3 Feb 2021 22:46:46 +0900 Subject: [PATCH] feat: added discord route --- pages/discord.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pages/discord.tsx diff --git a/pages/discord.tsx b/pages/discord.tsx new file mode 100644 index 0000000..b636ec3 --- /dev/null +++ b/pages/discord.tsx @@ -0,0 +1,11 @@ +import { KoreanbotsDiscord } from '@utils/Constants' +import { NextPage } from 'next' +import dynamic from 'next/dynamic' + +const Redirect = dynamic(() => import('@components/Redirect')) + +const Discord:NextPage = () => { + return +} + +export default Discord \ No newline at end of file