Skip to content

Commit

Permalink
New : 개발중인 페이지 알림 컴포넌트 추가 (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
jobkaeHenry authored Nov 11, 2023
1 parent ba525f0 commit d44b49d
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
3 changes: 2 additions & 1 deletion client/src/app/user/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import DevelopingPage from "@/components/DevelopingPage";

const MyPage = () => {
return (
<div>page</div>
<DevelopingPage/>
)
}

Expand Down
4 changes: 3 additions & 1 deletion client/src/app/wiki/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import DevelopingPage from "@/components/DevelopingPage";

const WikiPage = () => {
return <div>위키 메인페이지</div>;
return <DevelopingPage />;
};

export default WikiPage;
21 changes: 21 additions & 0 deletions client/src/components/DevelopingPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import { Paper } from "@mui/material";

import DevelopingNoticeImgae from "@/assets/images/developing.png";
import Image from "next/image";

const DevelopingPage = () => {
return (
<Paper
sx={{
display: "flex",
justifyContent: "center",
alignItems: "center",
height: "calc(100vh - 56px)",
}}
>
<Image src={DevelopingNoticeImgae} alt="개발중 알림" />
</Paper>
);
};

export default DevelopingPage;

0 comments on commit d44b49d

Please sign in to comment.