Skip to content

Commit

Permalink
feat: 새 노트 작성 페이지 UI 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
ShinjungOh committed Aug 10, 2024
1 parent 98ec399 commit a0d2289
Showing 1 changed file with 49 additions and 2 deletions.
51 changes: 49 additions & 2 deletions src/pages/note/NewNote.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,55 @@
import { Nav } from '@/shared';
import { Box, Button, Flex, Input } from '@chakra-ui/react';
import { Body, Nav, Typography } from '@/shared';

export const NewNote = () => (
<>
<Nav />
<div>새 노트</div>
<Body>
<Flex
flexDirection="column"
style={{
padding: '29px 0px 24px',
}}
>
<Box
style={{
margin: 0,
paddingBottom: '14px',
}}
>
<Typography variant="subtitle1">노트 정보를 입력해 주세요</Typography>
</Box>
<Input placeholder="새로운 노트" maxWidth="250px" />
</Flex>
<Box>
<Flex flexDirection="row" justifyContent="flex-start" alignItems="center">
<Box
style={{
width: '100%',
margin: 0,
// paddingBottom: '14px',
// paddingRight: '30px',
}}
>
<Typography variant="subtitle1">폴더</Typography>
</Box>
<Button>전체 노트</Button>
</Flex>
<Flex flexDirection="row" justifyContent="flex-start" alignItems="center">
<Box
style={{
width: '100%',
maxWidth: '100px',
margin: 0,
// paddingBottom: '14px',
// paddingRight: '30px',
}}
>
<Typography variant="subtitle1">메모</Typography>
</Box>
<Input placeholder="메모를 작성해 보세요." />
</Flex>
</Box>
</Body>
</>
);

0 comments on commit a0d2289

Please sign in to comment.