-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature/BAR-157] 레이아웃 컴포넌트 작성 (#46)
* feat: 아이콘 관련 처리 추가 * feat: Dialog 관련 수정 반영 * feat: Layout 작성 및 적용 * feat: 프로필 dialog 작성 * feat: action addon 추가 * refactor: 컨벤션에 맞게 함수명 수정 * feat: 헤더와 푸터 옵셔널 처리 추가
- Loading branch information
Showing
16 changed files
with
449 additions
and
86 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import Link from 'next/link'; | ||
|
||
import Button from '@components/Button'; | ||
import Icon from '@components/Icon'; | ||
|
||
import * as styles from '../style.css'; | ||
|
||
const Footer = () => { | ||
return ( | ||
<div className={styles.footerWrapper}> | ||
<div> | ||
<div> | ||
<Button className={styles.footerButton}>서비스메일</Button> | ||
<Link href="/" className={styles.footerLink}> | ||
이용약관 | ||
</Link> | ||
<Link href="/" className={styles.footerLink}> | ||
개인정보보호방침 | ||
</Link> | ||
</div> | ||
<Button className={styles.instagramButton}> | ||
<div className={styles.instagramIcon}> | ||
<Icon icon="instagram" /> | ||
</div> | ||
<span className={styles.instagramText}>인스타그램</span> | ||
</Button> | ||
</div> | ||
<div> | ||
<div className={styles.baroIcon}> | ||
<Icon icon="logo32" width={32} height={36} /> | ||
</div> | ||
<span className={styles.copyright}> | ||
© 2023. Baro. All rights reserved. | ||
</span> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Footer; |
Oops, something went wrong.