discord
This commit is contained in:
parent
1963d7f2eb
commit
dbbab21bcb
2 changed files with 10 additions and 1 deletions
|
@ -16,7 +16,7 @@
|
|||
"@material-ui/icons": "^4.11.2",
|
||||
"axios": "^0.24.0",
|
||||
"framer-motion": "^4",
|
||||
"mongodb": "^4.1.4",
|
||||
"mongodb": "^3.5.9",
|
||||
"next": "^12.0.4",
|
||||
"next-auth": "^3.27.0",
|
||||
"react": "^17.0.2",
|
||||
|
|
9
pages/discord.js
Normal file
9
pages/discord.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
import {useRouter} from "next/router";
|
||||
import {useEffect} from "react";
|
||||
export default function discord() {
|
||||
const page = useRouter();
|
||||
useEffect(() => {
|
||||
page.push("http://discord.gg/SbQHChmGcp");
|
||||
}, []);
|
||||
return () => null;
|
||||
}
|
Loading…
Reference in a new issue