diff --git a/src/pages/join/index.tsx b/src/pages/join/index.tsx new file mode 100644 index 0000000..cab83e2 --- /dev/null +++ b/src/pages/join/index.tsx @@ -0,0 +1,19 @@ +import React from "react"; +import { NextPage } from "next"; +import Head from "next/head"; +import AdminPageWrapper from "@views/common/AdminPageWrapper"; + +const AdminFrontPage: NextPage = () => ( + <> + + + + +
+

SIK Admin

+
+
+ +); + +export default AdminFrontPage;