-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
83 lines (66 loc) · 3.44 KB
/
privacy.html
File metadata and controls
83 lines (66 loc) · 3.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Privacy Policy — Renegade Publications</title>
<script src="https://cdn.tailwindcss.com"></script>
<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=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600&family=Barlow+Condensed:wght@400;600;700&display=swap" rel="stylesheet">
<style>
body {
background-color: #080c12;
font-family: 'Barlow', sans-serif;
}
.grid-bg {
background-image:
linear-gradient(rgba(0,200,255,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,200,255,0.03) 1px, transparent 1px);
background-size: 60px 60px;
}
.cyber-divider {
height: 1px;
background: linear-gradient(90deg, transparent, rgba(0,200,255,0.4), transparent);
}
</style>
</head>
<body class="text-white grid-bg">
<div class="max-w-3xl mx-auto px-6 py-24">
<div class="mb-12">
<h1 class="font-['Bebas_Neue'] text-5xl text-white mb-2">PRIVACY POLICY</h1>
<div class="cyber-divider mb-6"></div>
<p class="text-slate-400 text-sm uppercase tracking-wider">
Renegade Publications · Independent UK Digital Publisher
</p>
</div>
<div class="space-y-10 text-slate-300 leading-relaxed">
<section>
<h2 class="font-['Barlow_Condensed'] text-cyan-400 text-xl uppercase tracking-wide mb-3">Overview</h2>
<p>This website does not collect personal data directly. We do not operate a mailing list, user accounts, or behavioural tracking systems.</p>
</section>
<section>
<h2 class="font-['Barlow_Condensed'] text-cyan-400 text-xl uppercase tracking-wide mb-3">Payments</h2>
<p>All payments are processed securely by Payhip. When you purchase a product, your personal and payment information is handled directly by Payhip in accordance with their privacy policy. We do not store or process payment details.</p>
</section>
<section>
<h2 class="font-['Barlow_Condensed'] text-cyan-400 text-xl uppercase tracking-wide mb-3">Digital Delivery</h2>
<p>After purchase, Payhip provides download access and email confirmation. Any data provided during checkout is managed by Payhip.</p>
</section>
<section>
<h2 class="font-['Barlow_Condensed'] text-cyan-400 text-xl uppercase tracking-wide mb-3">Technical Services</h2>
<p>This website may load third-party services such as content delivery networks (CDNs) or hosted scripts necessary for functionality. These services may process limited technical information such as IP addresses as part of standard web operations.</p>
</section>
<section>
<h2 class="font-['Barlow_Condensed'] text-cyan-400 text-xl uppercase tracking-wide mb-3">Contact</h2>
<p>If you contact us via email, your message and email address will be used only to respond to your enquiry.</p>
<p>We do not sell, rent, or share personal data.</p>
</section>
</div>
<div class="cyber-divider my-16"></div>
<a href="index.html" class="text-cyan-400 uppercase tracking-wide text-sm hover:underline">
← Return to Home
</a>
</div>
</body>
</html>