Skip to content

Commit

Permalink
Feature/#200 개발중인 기능 표시 (#202)
Browse files Browse the repository at this point in the history
* feat: 내 정보 수정 페이지 개발 중이라고 표시

#200

* feat: 어드민에서 대회 관리 페이지 개발 중이라고 표시

#200

* feat: 관리자에서 교직원 관련 페이지 개발중이라고 표시

#200

* feat: 관리자페이지에서 학생 관리 페이지 구현중이라고 표시

#200

* feat: 팀빌딩 페이지 개발중이라고 표시

#200
  • Loading branch information
llddang authored Sep 12, 2024
1 parent c77c34a commit bc785bf
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 4 deletions.
13 changes: 13 additions & 0 deletions frontend/src/app/(client)/(withSidebar)/my-page/edit/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import Title from '@/components/Title';

const Page = () => {
return (
<div className="flex w-full flex-col gap-4 rounded-sm bg-white p-5">
<Title title="내 정보 수정" />

<div className="flex h-40 w-full items-center justify-center text-comment">개발 중인 기능입니다.</div>
</div>
);
};

export default Page;
9 changes: 9 additions & 0 deletions frontend/src/app/admin/contest/create/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const Page = () => {
return (
<div className="w-full">
<div className="flex h-40 w-full items-center justify-center text-comment">개발 중인 기능입니다.</div>
</div>
);
};

export default Page;
9 changes: 9 additions & 0 deletions frontend/src/app/admin/contest/list/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const Page = () => {
return (
<div className="w-full">
<div className="flex h-40 w-full items-center justify-center text-comment">개발 중인 기능입니다.</div>
</div>
);
};

export default Page;
5 changes: 3 additions & 2 deletions frontend/src/app/admin/faculty/list/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ const Page = ({ searchParams }: { searchParams?: { [key: string]: string | undef

return (
<div className="w-full">
<div className="flex items-center rounded-sm border-[1px] border-admin-border bg-admin-background-light px-5 py-3 text-sm">
<div className="flex h-40 w-full items-center justify-center text-comment">개발 중인 기능입니다.</div>
{/* <div className="flex items-center rounded-sm border-[1px] border-admin-border bg-admin-background-light px-5 py-3 text-sm">
<span className="mr-20">
총 <span className="text-admin-primary-main">{members.length}</span>명의 회원이 있습니다.
</span>
Expand All @@ -33,7 +34,7 @@ const Page = ({ searchParams }: { searchParams?: { [key: string]: string | undef
totalItems={members.length}
pathname={pathname}
query={JSON.stringify(searchParams)}
/>
/> */}
</div>
);
};
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/app/admin/faculty/register/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ const Page = () => {
}
};

return <div className="flex h-40 w-full items-center justify-center text-comment">개발 중인 기능입니다.</div>;

return (
<>
<div className="mb-10 rounded-sm border-[1px] border-admin-border bg-admin-background-light px-5 py-3">
Expand Down
5 changes: 3 additions & 2 deletions frontend/src/app/admin/member/list/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ const Page = ({ searchParams }: { searchParams?: { [key: string]: string | undef

return (
<div className="w-full">
<div className="flex items-center rounded-sm border-[1px] border-admin-border bg-admin-background-light px-5 py-3 text-sm">
<div className="flex h-40 w-full items-center justify-center text-comment">개발 중인 기능입니다.</div>
{/* <div className="flex items-center rounded-sm border-[1px] border-admin-border bg-admin-background-light px-5 py-3 text-sm">
<span className="mr-20">
총 <span className="text-admin-primary-main">{members.length}</span>명의 회원이 있습니다.
</span>
Expand All @@ -34,7 +35,7 @@ const Page = ({ searchParams }: { searchParams?: { [key: string]: string | undef
totalItems={members.length}
pathname={pathname}
query={JSON.stringify(searchParams)}
/>
/> */}
</div>
);
};
Expand Down
9 changes: 9 additions & 0 deletions frontend/src/app/admin/team-building/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const Page = () => {
return (
<div className="w-full">
<div className="flex h-40 w-full items-center justify-center text-comment">개발 중인 기능입니다.</div>
</div>
);
};

export default Page;

0 comments on commit bc785bf

Please sign in to comment.