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
|
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Privacy Policy</title>
<style>
/* import Inter font */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* apply Inter font to entire html document */
html {
font-family: "Inter";
}
/* remove margin and padding from body */
body {
margin: 0;
padding: 0;
}
/* remove top margin from first-child h1 of element */
h1:first-child {
margin-top: 0;
}
/* apply light padding to body */
body {
padding: 20px;
}
/* make all text justified */
body {
text-align: justify;
}
/* accomodate dark mode users defaults */
@media (prefers-color-scheme: dark) {
body {
background-color: black;
color: white;
}
}
</style>
</head>
<body>
<h2>Privacy Policy</h2>
<p><strong>Last Updated:</strong> 3rd of March 2026</p>
<h3>1. Introduction</h3>
<p>
This Privacy Policy explains how zue.dev ("we", "us", or "our") handles
information when you use our website and services. We are committed to
respecting your privacy.
</p>
<h3>2. Information We Collect</h3>
<p>
We do not directly collect, store, or process any personal data. Our
website does not use cookies, tracking scripts, or analytics tools that we
operate ourselves.
</p>
<h3>3. Third-Party Services</h3>
<p>
We rely on third-party platforms to deliver our services (e.g. hosting,
payment processing, communication). These platforms may collect and
process personal data in accordance with their own privacy policies. We
encourage you to review the privacy policies of any third-party services
you interact with through us.
</p>
<h3>4. Data Retention</h3>
<p>
As we do not collect personal data ourselves, we do not retain any. Any
data held by third-party platforms is subject to their respective
retention policies.
</p>
<h3>5. Your Rights</h3>
<p>
If you have concerns about data held by a third-party service used in
connection with our services, please contact that provider directly. You
may also contact us and we will do our best to assist you.
</p>
<h3>6. Changes to This Policy</h3>
<p>
We may update this Privacy Policy from time to time. Any changes will be
reflected on this page with an updated "Last Updated" date.
</p>
<h3>7. Contact</h3>
<p>
If you have any questions about this Privacy Policy, please contact us at
<a href="mailto:alex@zue.dev">alex@zue.dev</a>.
</p>
</body>
</html>
|