1
0

Done implementing basic stay tuned site with robots.txt and sitemap

This commit is contained in:
Michael Rieger
2025-09-16 19:00:56 +02:00
parent 5967768c25
commit 6832ad549e
18 changed files with 772 additions and 77 deletions
+57
View File
@@ -0,0 +1,57 @@
---
import Layout from "../layouts/Layout.astro";
---
<Layout title="Privacy Policy">
<main class="content">
<h1>Privacy policy</h1>
<div>
<p>
I, <strong>Michael Rieger</strong> (“I”, “me”) respect your privacy.
</p>
<h2>Analytics</h2>
<p>
I use <strong>self-hosted Umami</strong> to track basic website usage.
No personal data, cookies, or IP addresses are collected.
</p>
<h2>Hosting</h2>
<p>
The website is hosted by <strong>Hetzner Online GmbH</strong>.
Standard server logs may be collected for technical and security
purposes, including IP addresses and access times. These logs
are used solely for server maintenance and security and are not
combined with any other data.
</p>
<h2>Data Retention</h2>
<p>
Analytics logs from Umami are stored temporarily for the purpose
of understanding website usage. No personal data is retained.
Server logs are stored by Hetzner according to their standard
policies, primarily for security and technical maintenance.
</p>
<h2>Your Rights</h2>
<p>
Since I do not collect personal data, no action is typically
required. You may contact me at <a
href="mailto:gdpr@tideshiftdigital.com"
class="hoverable">gdpr@tideshiftdigital.com</a
> for any privacy questions.
</p>
</div>
</main>
</Layout>
<style>
* + * {
margin-top: 1rem;
}
h1 {
margin-top: 2rem;
}
</style>