설정 페이지에 개인정보처리방침 링크 추가
- 설정 페이지 하단에 개인정보처리방침 링크 추가 - 로그아웃 버튼 아래 40px 간격 배치 - #043465 컬러 및 밑줄 스타일 적용 - 클릭 시 새 창에서 https://www.nicevan.co.kr/privacy-policy 열기 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -10,6 +10,10 @@ export const SettingPage = () => {
|
||||
useSetHeaderType(HeaderType.LeftArrow);
|
||||
useSetFooterMode(false);
|
||||
|
||||
const onClickPrivacyPolicy = () => {
|
||||
window.open('https://www.nicevan.co.kr/privacy-policy', '_blank');
|
||||
};
|
||||
|
||||
return (
|
||||
<>
|
||||
<main className="pop">
|
||||
@@ -101,6 +105,21 @@ export const SettingPage = () => {
|
||||
<div className="settings-row danger">
|
||||
<div className="settings-row-title bd-style">로그아웃</div>
|
||||
</div>
|
||||
|
||||
<div style={{ marginTop: '40px', paddingBottom: '20px' }}>
|
||||
<div
|
||||
onClick={onClickPrivacyPolicy}
|
||||
style={{
|
||||
cursor: 'pointer',
|
||||
color: '#043465',
|
||||
textDecoration: 'underline',
|
||||
textAlign: 'center',
|
||||
padding: '12px'
|
||||
}}
|
||||
>
|
||||
개인정보처리방침
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</>
|
||||
|
||||
Reference in New Issue
Block a user