-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
81 lines (72 loc) · 2.79 KB
/
privacy.html
File metadata and controls
81 lines (72 loc) · 2.79 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Privacy Policy | Berkana Drums</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Open+Sans:wght@400;600&display=swap"
rel="stylesheet"
/>
</head>
<body class="privacy-page">
<section
class="about-section"
style="justify-content: start; min-height: 80vh"
>
<div class="about-container" style="display: block; max-width: 700px">
<a href="index.html" class="back-link">← back to sign up</a>
<h1 style="font-size: 2.2rem; margin-bottom: 30px">Privacy Policy</h1>
<div class="about-text">
<p><strong>Last Updated: March 2026</strong></p>
<p>
This policy informs you how we look after your data when you visit
this website and sign up for the newsletter.
</p>
<h3>1. Data We Collect</h3>
<p>
When you sign up for our newsletter, we collect your email address.
This is processed via MailerLite to provide you with updates
regarding the Berkana Drums project.
</p>
<h3>2. How We Use Your Data</h3>
<p>
We only use your email to send the information you requested. We use
Plausible Analytics to track website usage; however, Plausible is a
privacy-first tool that does not use cookies and does not collect
any personal data.
</p>
<h3>3. Third-Party Services</h3>
<p>
Our newsletter service is provided by MailerLite. By subscribing,
you acknowledge that your information will be transferred to
MailerLite for processing in accordance with their
<a
href="https://www.mailerlite.com/legal/privacy-policy"
target="_blank"
style="color: inherit"
>Privacy Policy</a
>.
</p>
<h3>4. Your Rights</h3>
<p>
You have the right to unsubscribe at any time using the link
provided in any email we send, or by contacting us directly at the
address listed below.
</p>
</div>
</div>
</section>
<footer class="site-footer">
<div class="footer-content">
<p>© 2026 Berkana Drums. All rights reserved.</p>
<p class="address">
International House, 101 King's Cross Road, London, WC1X 9LP
</p>
</div>
</footer>
</body>
</html>