This commit is contained in:
NK 2023-03-01 20:19:50 +00:00
parent 1963d7f2eb
commit dbbab21bcb
2 changed files with 10 additions and 1 deletions

View file

@ -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
View 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;
}