-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: 서버 실행 포트 8080, 8081, 8082로 수정 * fix: style -> styles 수정 * feat: Footer 컴포넌트 추가 * fix: Badge 컴포넌트 border-radius 수정 * chore: 오타 수정
- Loading branch information
Showing
17 changed files
with
139 additions
and
14 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
import styled from '@emotion/styled'; | ||
|
||
const Container = styled.footer` | ||
padding: 60px 20px; | ||
`; | ||
|
||
const Content = styled.div` | ||
display: flex; | ||
margin: 0 auto; | ||
justify-content: space-between; | ||
width: ${({ theme }) => theme.breakpoint.desktop}; | ||
`; | ||
|
||
const TextGroup = styled.div` | ||
color: ${({ theme }) => theme.palette.grey.g70}; | ||
`; | ||
|
||
const Text = styled.span` | ||
display: block; | ||
white-space: pre-line; | ||
${({ theme }) => theme.typo.b1}; | ||
`; | ||
|
||
const BoldTtext = styled.span` | ||
display: block; | ||
white-space: pre-line; | ||
margin-bottom: 12px; | ||
${({ theme }) => theme.typo.sh1}; | ||
color: ${({ theme }) => theme.palette.grey.g90}; | ||
`; | ||
|
||
const LinkTextGroup = styled.div` | ||
margin-top: 32px; | ||
`; | ||
|
||
const Link = styled.a` | ||
cursor: pointer; | ||
`; | ||
|
||
const IconGroup = styled.div` | ||
display: flex; | ||
`; | ||
|
||
const IconLink = styled.a` | ||
cursor: pointer; | ||
width: 36px; | ||
height: 36px; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
border-radius: 100%; | ||
background-color: ${({ theme }) => theme.palette.grey.g70}; | ||
color: ${({ theme }) => theme.palette.grey.g00}; | ||
&:not(:last-of-type) { | ||
margin-right: 8px; | ||
} | ||
`; | ||
|
||
export default { | ||
Container, | ||
Content, | ||
Text, | ||
Link, | ||
BoldTtext, | ||
TextGroup, | ||
IconGroup, | ||
LinkTextGroup, | ||
IconLink, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import { InstagramIcon, GithubIcon, KakaotalkIcon } from '@boolti/icon'; | ||
|
||
import Styled from './Footer.styles'; | ||
|
||
const Footer = () => { | ||
return ( | ||
<Styled.Container> | ||
<Styled.Content> | ||
<Styled.TextGroup> | ||
<Styled.BoldTtext> | ||
{'불티' + '\n' + 'Copyright ⓒ Boolti. All Rights Reserved'} | ||
</Styled.BoldTtext> | ||
<Styled.Text> | ||
{'사업자 등록번호 : 120-88-01280 | 대표 : 김혜선 (더미 텍스트)' + | ||
'\n' + | ||
'호스팅 서비스 : 주식회사 비바리퍼블리카 | 통신판매업 신고번호 : 2014-서울강남-03377'} | ||
</Styled.Text> | ||
<Styled.LinkTextGroup> | ||
<Styled.Text> | ||
<Styled.Link>개인정보 처리방침</Styled.Link> | ||
{` | `} | ||
<Styled.Link>서비스 이용약관</Styled.Link> | ||
</Styled.Text> | ||
</Styled.LinkTextGroup> | ||
</Styled.TextGroup> | ||
<Styled.IconGroup> | ||
<Styled.IconLink> | ||
<InstagramIcon size={24} /> | ||
</Styled.IconLink> | ||
<Styled.IconLink> | ||
<GithubIcon size={24} /> | ||
</Styled.IconLink> | ||
<Styled.IconLink> | ||
<KakaotalkIcon size={24} /> | ||
</Styled.IconLink> | ||
</Styled.IconGroup> | ||
</Styled.Content> | ||
</Styled.Container> | ||
); | ||
}; | ||
|
||
export default Footer; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters