-
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.
- Loading branch information
Showing
1 changed file
with
24 additions
and
8 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { GithubIcon, InstagramIcon, KakaotalkIcon } from '@boolti/icon'; | ||
import { KakaotalkIcon } from '@boolti/icon'; | ||
|
||
import Styled from './Footer.styles'; | ||
|
||
|
@@ -13,26 +13,42 @@ const Footer = () => { | |
<Styled.Text> | ||
{'사업자 등록번호 : 202-43-63442 | 대표 : 김혜선' + | ||
'\n' + | ||
'호스팅 서비스 : 스튜디오 불티 | 제2024-서울00-0000호(더미)' + | ||
'호스팅 서비스 : 스튜디오 불티 | 통신판매업 신고번호 : 2024-화도수동-0518' + | ||
'\n' + | ||
'TEL : 0507-0000-0000(더미) | 이메일 : [email protected]'} | ||
'TEL : 0507-1363-5690 | 이메일 : [email protected]'} | ||
</Styled.Text> | ||
<Styled.LinkTextGroup> | ||
<Styled.Text> | ||
<Styled.Link>개인정보 처리방침</Styled.Link> | ||
<Styled.Link | ||
href="https://boolti.notion.site/5f73661efdcd4507a1e5b6827aa0da70" | ||
target="_blank" | ||
rel="noreferrer noopener nofollow" | ||
> | ||
개인정보 처리방침 | ||
</Styled.Link> | ||
{` | `} | ||
<Styled.Link>서비스 이용약관</Styled.Link> | ||
<Styled.Link | ||
href="https://boolti.notion.site/b4c5beac61c2480886da75a1f3afb982" | ||
target="_blank" | ||
rel="noreferrer noopener nofollow" | ||
> | ||
서비스 이용약관 | ||
</Styled.Link> | ||
</Styled.Text> | ||
</Styled.LinkTextGroup> | ||
</Styled.TextGroup> | ||
<Styled.IconGroup> | ||
<Styled.IconLink> | ||
{/* <Styled.IconLink> | ||
<InstagramIcon /> | ||
</Styled.IconLink> | ||
<Styled.IconLink> | ||
<GithubIcon /> | ||
</Styled.IconLink> | ||
<Styled.IconLink> | ||
</Styled.IconLink> */} | ||
<Styled.IconLink | ||
href="http://pf.kakao.com/_pVxfxaG/chat" | ||
target="_blank" | ||
rel="noreferrer noopener nofollow" | ||
> | ||
<KakaotalkIcon /> | ||
</Styled.IconLink> | ||
</Styled.IconGroup> | ||
|