-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (79 loc) · 3.03 KB
/
index.html
File metadata and controls
87 lines (79 loc) · 3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>눕눕생활 - 개인정보 처리방침</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', sans-serif; background: #fafafa; color: #333; line-height: 1.7; }
.container { max-width: 640px; margin: 0 auto; padding: 40px 20px 60px; }
h1 { font-size: 22px; margin-bottom: 6px; }
.date { font-size: 13px; color: #999; margin-bottom: 32px; }
section { margin-bottom: 28px; }
h2 { font-size: 16px; color: #222; margin-bottom: 8px; }
p { font-size: 14px; color: #555; margin-bottom: 8px; }
ul { font-size: 14px; color: #555; padding-left: 20px; }
ul li { margin-bottom: 4px; }
strong { color: #333; }
footer { margin-top: 40px; font-size: 12px; color: #bbb; text-align: center; }
</style>
</head>
<body>
<div class="container">
<h1>눕눕생활 개인정보 처리방침</h1>
<p class="date">시행일: 2026년 2월 22일</p>
<section>
<h2>1. 수집하는 개인정보</h2>
<p>
눕눕생활은 사용자의 개인정보를 <strong>수집하지 않습니다</strong>.
모든 건강 기록 데이터(수축, 투약, 태동, 메모 등)는 사용자의 기기(iPhone) 내부에만
저장되며, 외부 서버로 전송되지 않습니다.
</p>
</section>
<section>
<h2>2. 데이터 저장 방식</h2>
<ul>
<li>저장 위치: 기기 내 로컬 데이터베이스 (SQLite)</li>
<li>백업: Apple iCloud 백업에 자동 포함 (사용자 설정에 따라)</li>
<li>서버 전송: 없음</li>
<li>제3자 공유: 없음</li>
</ul>
</section>
<section>
<h2>3. 제3자 SDK 및 추적</h2>
<p>
눕눕생활은 광고 SDK, 분석 도구, 추적 기술을 사용하지 않습니다.
앱 내에서 사용자 행동을 추적하거나 외부로 전송하는 기능이 없습니다.
</p>
</section>
<section>
<h2>4. 데이터 삭제</h2>
<p>
앱을 삭제하면 기기에 저장된 모든 데이터가 함께 삭제됩니다.
iCloud 백업에 포함된 데이터는 Apple의 iCloud 설정에서 관리할 수 있습니다.
</p>
</section>
<section>
<h2>5. 아동 개인정보</h2>
<p>
눕눕생활은 아동(만 14세 미만)을 대상으로 하지 않으며,
아동의 개인정보를 의도적으로 수집하지 않습니다.
</p>
</section>
<section>
<h2>6. 변경 사항</h2>
<p>
본 개인정보 처리방침은 변경될 수 있으며, 변경 시 앱 업데이트를 통해 안내합니다.
</p>
</section>
<section>
<h2>7. 문의</h2>
<p>
개인정보 관련 문의는 앱 설정 페이지를 통해 연락해 주세요.
</p>
</section>
<footer>© 2026 눕눕생활</footer>
</div>
</body>
</html>