-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
136 lines (124 loc) · 4.84 KB
/
privacy.html
File metadata and controls
136 lines (124 loc) · 4.84 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Privacy Policy | Pekadi</title>
<meta name="description" content="Privacy Policy for the Pekadi app." />
<link rel="stylesheet" href="style.css?v=20260322-privacy-2" />
<link rel="icon" type="image/x-icon" href="icon.ico" />
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet" />
</head>
<body class="privacy-page">
<main class="privacy-shell">
<section class="privacy-hero">
<a class="privacy-back-link" href="index.html">Back to Home</a>
<p class="privacy-eyebrow">Pekadi App</p>
<h1>Privacy Policy</h1>
<p class="privacy-intro">
Your privacy matters to us. Pekadi is designed to keep your information on your device and out of our hands.
</p>
<div class="privacy-meta">
<div class="privacy-meta-card">
<span class="privacy-meta-label">Last updated</span>
<strong>March 2026</strong>
</div>
<div class="privacy-meta-card">
<span class="privacy-meta-label">Data collection</span>
<strong>None</strong>
</div>
<div class="privacy-meta-card">
<span class="privacy-meta-label">Account required</span>
<strong>No</strong>
</div>
</div>
</section>
<section class="privacy-content">
<article class="privacy-card privacy-card--highlight">
<h2>Privacy at a Glance</h2>
<p>
Pekadi does <strong>not collect, store, or transmit personal data</strong>. Passwords, vault entries,
and preferences stay on your device.
</p>
</article>
<article class="privacy-card">
<h2>1. Information We Collect</h2>
<p>Pekadi does not collect, store, or transmit any personal data.</p>
<p>All data generated or entered within the app remains entirely on your device.</p>
<ul>
<li>Generated passwords</li>
<li>Saved vault entries</li>
<li>App preferences</li>
</ul>
</article>
<article class="privacy-card">
<h2>2. Local Data Storage</h2>
<p>
All user data is stored locally on your device using Apple-provided secure storage systems.
</p>
<ul>
<li>Apple Keychain for saved passwords</li>
<li>Local device storage for app settings and history</li>
</ul>
<p>We do not have access to this data.</p>
</article>
<article class="privacy-card">
<h2>3. No Account Required</h2>
<p>Pekadi does not require any personal sign-up information.</p>
<ul>
<li>Account creation</li>
<li>Login credentials</li>
<li>Email addresses</li>
<li>Personal identification</li>
</ul>
</article>
<article class="privacy-card">
<h2>4. No Data Sharing</h2>
<p>We do not sell, share, or transmit data to external servers.</p>
<p>Your data never leaves your device.</p>
</article>
<article class="privacy-card">
<h2>5. Internet Usage</h2>
<p>Pekadi does not require an internet connection for core functionality.</p>
</article>
<article class="privacy-card">
<h2>6. Third-Party Services</h2>
<p>Pekadi does not use third-party analytics, advertising, or tracking services.</p>
<ul>
<li>Analytics services</li>
<li>Advertising networks</li>
<li>Third-party trackers</li>
</ul>
</article>
<article class="privacy-card">
<h2>7. Security</h2>
<p>We rely on Apple’s built-in platform security features to help protect your local data.</p>
<ul>
<li>Secure Keychain storage</li>
<li>Device-level encryption</li>
<li>Optional Face ID or Touch ID protection</li>
</ul>
</article>
<article class="privacy-card">
<h2>8. Children’s Privacy</h2>
<p>
Pekadi does not knowingly collect information from children. Since no data is collected, the app is suitable
for general audiences.
</p>
</article>
<article class="privacy-card">
<h2>9. Changes to This Policy</h2>
<p>
We may update this Privacy Policy in the future. Any changes will be reflected on this page with an updated
revision date.
</p>
</article>
<article class="privacy-card privacy-card--contact">
<h2>10. Contact</h2>
<p>If you have any questions about this Privacy Policy, you can contact us at:</p>
<a class="privacy-contact-link" href="mailto:official@pekadi.com">official@pekadi.com</a>
</article>
</section>
</main>
</body>
</html>