Skip to content

Commit 71f0be8

Browse files
committed
Add Privacy Policy page
1 parent 1cdaee2 commit 71f0be8

1 file changed

Lines changed: 51 additions & 0 deletions

File tree

src/pages/privacy-policy.astro

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
import Layout from '../layouts/Layout.astro';
3+
import Link from '../components/Link.astro';
4+
const pageTitle = 'Privacy Policy';
5+
---
6+
7+
<Layout pageTitle={pageTitle}>
8+
<h1>Privacy Policy</h1>
9+
10+
<p>
11+
Thank you for visiting my personal website. Your privacy is important to me.
12+
This policy explains what information is and is not collected when you visit
13+
this website.
14+
</p>
15+
16+
<p>
17+
If you have any questions, comments, or concerns about this policy, please
18+
contact me.
19+
</p>
20+
21+
<h2>Cookies</h2>
22+
<p>This website does not use cookies.</p>
23+
24+
<h2>Analytics</h2>
25+
<p>
26+
This website uses a web analytics service called <Link
27+
url='https://umami.is/'>Umami</Link
28+
> (hosted on Umami Cloud) to understand overall website usage, such as the number
29+
of people who visit different pages.
30+
</p>
31+
<p>
32+
This service is configured not to use cookies, track visitors across
33+
websites, or collect personally identifiable information. IP addresses are
34+
not stored, and all data is anonymized.
35+
</p>
36+
<p>
37+
The data is processed by Umami Cloud solely to provide analytics services
38+
and is accessible only to me. It is not shared to anyone else.
39+
</p>
40+
41+
<h2>Embedded Content</h2>
42+
<p>
43+
Pages on this website may include embedded content (e.g., videos, images, or
44+
articles) from other websites. Embedded content behaves the same as if you
45+
visited the external site directly.
46+
</p>
47+
<p>
48+
These third-party sites may collect data about you, use cookies, and track
49+
your interaction with their content according to their own privacy policies.
50+
</p>
51+
</Layout>

0 commit comments

Comments
 (0)