diff --git a/client/src/app/user/page.tsx b/client/src/app/user/page.tsx index 35f2a39..2a127e8 100644 --- a/client/src/app/user/page.tsx +++ b/client/src/app/user/page.tsx @@ -1,7 +1,8 @@ +import DevelopingPage from "@/components/DevelopingPage"; const MyPage = () => { return ( -
page
+ ) } diff --git a/client/src/app/wiki/page.tsx b/client/src/app/wiki/page.tsx index ba4bbe3..efc2d03 100644 --- a/client/src/app/wiki/page.tsx +++ b/client/src/app/wiki/page.tsx @@ -1,5 +1,7 @@ +import DevelopingPage from "@/components/DevelopingPage"; + const WikiPage = () => { - return
위키 메인페이지
; + return ; }; export default WikiPage; diff --git a/client/src/components/DevelopingPage.tsx b/client/src/components/DevelopingPage.tsx new file mode 100644 index 0000000..33cb76d --- /dev/null +++ b/client/src/components/DevelopingPage.tsx @@ -0,0 +1,21 @@ +import { Paper } from "@mui/material"; + +import DevelopingNoticeImgae from "@/assets/images/developing.png"; +import Image from "next/image"; + +const DevelopingPage = () => { + return ( + + 개발중 알림 + + ); +}; + +export default DevelopingPage;