-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
86 lines (75 loc) · 3.69 KB
/
Copy pathprivacy.html
File metadata and controls
86 lines (75 loc) · 3.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Notice</title>
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="192x192" href="/assets/img/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="512x512" href="/assets/img/android-chrome-512x512.png">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 720px;
margin: 40px auto;
padding: 0 20px;
}
h1 { font-size: 2rem; margin-bottom: 0.5rem; }
h2 { margin-top: 1.6rem; }
p { margin-bottom: 1rem; }
a { color: #007aff; }
code { background: #f3f3f5; padding: 2px 6px; border-radius: 6px; }
</style>
</head>
<body>
<h1>Privacy Notice</h1>
<p>This notice explains the limited data processing used by this portfolio.</p>
<h2>Who I Am</h2>
<p>My name is Evgeniy Gordienko. This is my personal portfolio website.</p>
<h2>Cookies</h2>
<p>
The portfolio itself does <strong>not</strong> set cookies and does not use advertising or cookie-based tracking.
</p>
<h2>Analytics (GoatCounter)</h2>
<p>
The front page uses <strong>GoatCounter</strong> for basic traffic statistics such as page views and referrers.
GoatCounter does not place cookies or tracking identifiers in your browser. Requests may include technical information
such as the page URL, referrer, IP address, browser, system, language, and screen width. GoatCounter processes this
information to produce aggregated statistics and detect repeat visits without storing IP addresses or full user-agent strings.
</p>
<p>
See the <a href="https://www.goatcounter.com/privacy" target="_blank" rel="noopener noreferrer">GoatCounter privacy policy</a>.
</p>
<h2>Browser Storage</h2>
<p>
The site uses your browser's <code>localStorage</code> to remember your Danish or English language preference.
The projects page also temporarily caches public GitHub repository information to reduce repeated API requests.
This data stays in your browser and can be removed by clearing the site's browser storage.
</p>
<h2>Project Information (GitHub)</h2>
<p>
The projects page requests public repository information from the GitHub API. When this happens, GitHub receives
standard connection information such as your IP address and browser details. No GitHub login is required.
See the <a href="https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement"
target="_blank" rel="noopener noreferrer">GitHub Privacy Statement</a>.
</p>
<h2>Contact Form (Formspree)</h2>
<p>
If you submit the contact form, your email address and message are sent to <strong>Formspree</strong>, which processes
and forwards the submission to me. Formspree may also process standard request information such as your IP address,
browser type, access time, and referrer for operating and securing its service.
See the <a href="https://formspree.io/legal/privacy-policy/" target="_blank" rel="noopener noreferrer">Formspree Privacy Policy</a>.
</p>
<h2>Your Rights</h2>
<p>
I do not use your personal data for marketing and I do not sell it to third parties.
You can request deletion of your contact form message by contacting me.
</p>
<br>
<a href="index.html">← Back to main site</a>
</body>
</html>