설정 페이지에 개인정보처리방침 링크 추가

- 설정 페이지 하단에 개인정보처리방침 링크 추가
- 로그아웃 버튼 아래 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:
Jay Sheen
2025-10-17 16:02:09 +09:00
parent 7588e8b4da
commit 0a863510aa

View File

@@ -10,6 +10,10 @@ export const SettingPage = () => {
useSetHeaderType(HeaderType.LeftArrow); useSetHeaderType(HeaderType.LeftArrow);
useSetFooterMode(false); useSetFooterMode(false);
const onClickPrivacyPolicy = () => {
window.open('https://www.nicevan.co.kr/privacy-policy', '_blank');
};
return ( return (
<> <>
<main className="pop"> <main className="pop">
@@ -101,6 +105,21 @@ export const SettingPage = () => {
<div className="settings-row danger"> <div className="settings-row danger">
<div className="settings-row-title bd-style"></div> <div className="settings-row-title bd-style"></div>
</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> </div>
</main> </main>
</> </>