From 3350d33c82121929a528ea1f6d576e872380122d Mon Sep 17 00:00:00 2001 From: Tommi S Date: Thu, 13 Jul 2023 19:41:33 +0300 Subject: [PATCH] create index --- src/pages/join/index.tsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/pages/join/index.tsx 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;