Skip to content

Commit

Permalink
Feature/#59 팀 스터디 라우팅 설정 (#65)
Browse files Browse the repository at this point in the history
* design: 레이아웃 수정

#56

* feat: 팀랭킹페이지 제거 및 임시코드 작성

#56

* design: 팀랭킹페이지 반응형 수정

#56

* feat: 팀 스터디 라우팅 설정

#59
  • Loading branch information
pipisebastian authored Feb 18, 2024
1 parent 7f1260a commit 4151fbe
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/app/team/[teamId]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { Flex } from '@chakra-ui/react';

const Page = () => {
return <Flex w="100%" bg="#F7F7F7" />;
};

export default Page;
7 changes: 7 additions & 0 deletions src/app/team/[teamId]/study/[studyId]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { Flex } from '@chakra-ui/react';

const Page = () => {
return <Flex w="100%" bg="#F7F7F7" />;
};

export default Page;

0 comments on commit 4151fbe

Please sign in to comment.