-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
79 lines (63 loc) · 3.15 KB
/
terms.html
File metadata and controls
79 lines (63 loc) · 3.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Terms of Sale — 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">TERMS OF SALE</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">Digital Products</h2>
<p>All products sold are digital downloads. No physical goods will be shipped.</p>
<p>Access to the purchased file is provided immediately after successful payment via Payhip.</p>
</section>
<section>
<h2 class="font-['Barlow_Condensed'] text-cyan-400 text-xl uppercase tracking-wide mb-3">Refund Policy</h2>
<p>Due to the nature of digital products, refunds are not offered once the file has been downloaded or accessed.</p>
<p>If you experience a technical issue preventing access to your purchase, please contact us and we will resolve it promptly.</p>
</section>
<section>
<h2 class="font-['Barlow_Condensed'] text-cyan-400 text-xl uppercase tracking-wide mb-3">Intellectual Property</h2>
<p>All content remains the intellectual property of Renegade Publications. Purchase grants a personal-use license only. Redistribution, resale, or unauthorised sharing is prohibited.</p>
</section>
<section>
<h2 class="font-['Barlow_Condensed'] text-cyan-400 text-xl uppercase tracking-wide mb-3">Educational Use</h2>
<p>All materials are provided for educational purposes only. Users are responsible for ensuring compliance with applicable laws in their jurisdiction.</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>