-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
95 lines (90 loc) · 3.3 KB
/
privacy.html
File metadata and controls
95 lines (90 loc) · 3.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/plainlabs.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Privacy Policy · PlainLab</title>
<style>
body {
color: rgb(31, 41, 55);
background-color: rgb(249, 250, 251);
font-family: system-ui, -apple-system, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
}
h1 {
font-size: 2rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
h2 {
font-size: 1.25rem;
font-weight: 600;
margin-top: 2rem;
margin-bottom: 0.75rem;
}
p {
margin-bottom: 1rem;
color: rgb(75, 85, 99);
}
a {
color: #2563eb;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
header {
margin-bottom: 2rem;
border-bottom: 1px solid #e5e7eb;
padding-bottom: 1rem;
}
.back-link {
display: inline-block;
margin-bottom: 1.5rem;
color: rgb(107, 114, 128);
font-size: 0.9rem;
}
.back-link:hover {
color: rgb(31, 41, 55);
}
.date {
color: rgb(107, 114, 128);
font-size: 0.9rem;
margin: 0;
}
</style>
</head>
<body>
<div class="container">
<a href="/" class="back-link">← Back to PlainLab</a>
<header>
<h1>Privacy Policy</h1>
<p class="date">Last updated: March 3, 2026</p>
</header>
<main>
<h2>1. Introduction</h2>
<p>PlainLab ("we", "our", or "us") respects your privacy. This Privacy Policy explains how we collect, use, and protect your information when you use our applications.</p>
<h2>2. Data Collection</h2>
<p>Our applications are designed to be "plain and simply work". We do not passively collect personal information, track your usage, or embed third-party analytics in our apps unless explicitly stated within the application or required for core functionality.</p>
<h2>3. Data Storage</h2>
<p>For applications that require saving data, your data is stored locally on your device or in your personal cloud storage (e.g., Apple iCloud), depending on your device settings. We do not maintain our own servers to store your personal data, nor do we have access to the data stored on your device or iCloud.</p>
<h2>4. Third-Party Services</h2>
<p>Our apps may utilize Apple's standard services (such as iCloud for syncing data across your devices). These services are governed by Apple's own Privacy Policy. We do not share your information with any other third parties.</p>
<h2>5. Changes to This Policy</h2>
<p>We may update our Privacy Policy from time to time to reflect changes in our practices or legal requirements. We will notify you of any changes by posting the new Privacy Policy on this page.</p>
<h2>6. Contact Us</h2>
<p>If you have any questions or concerns about this Privacy Policy, please contact us at <a href="mailto:plain@manhtai.com">plain@manhtai.com</a>.</p>
</main>
</div>
</body>
</html>