-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
90 lines (79 loc) · 3.44 KB
/
terms.html
File metadata and controls
90 lines (79 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
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/Monkey Mind (With BG).png" />
<title>Terms & Conditions – Buffer Punk</title>
<meta name="description" content="Terms & Conditions for bufferpunk.com" />
<style>
body {
margin: 0;
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, "Helvetica Neue", Arial;
line-height: 1.6;
background: #0b0b12;
color: #e7e7ef;
padding: 2rem;
}
header, section {
max-width: 800px;
margin: 0 auto 2rem;
background: rgba(17,17,26,0.7);
padding: 1.5rem;
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.08);
}
h1, h2 { margin-top: 0; }
a { color: #fff; text-underline-offset: 3px; }
footer { text-align: center; margin-top: 2rem; color: #999; }
</style>
</head>
<body>
<header>
<h1>Terms & Conditions</h1>
<p>Effective: <time datetime="2025-08-23">August 23, 2025</time></p>
</header>
<section>
<h2>1. Acceptance of Terms</h2>
<p>By accessing or using <strong>bufferpunk.com</strong> and our services, you agree to be bound by these Terms & Conditions. If you do not agree, please do not use the Services.</p>
</section>
<section>
<h2>2. Use of Services</h2>
<p>You agree to use our Services only for lawful purposes and in accordance with these Terms. You must not misuse or attempt to interfere with the functionality, security, or integrity of our Services.</p>
</section>
<section>
<h2>3. Intellectual Property</h2>
<p>All content, branding, and software created by Buffer Punk remains our property or the property of our contributors. Open-source projects are licensed under their respective licenses, which govern their usage.</p>
</section>
<section>
<h2>4. Disclaimer of Warranties</h2>
<p>The Services are provided on an “as is” and “as available” basis. We disclaim all warranties, whether express or implied, including but not limited to merchantability, fitness for a particular purpose, and non-infringement.</p>
</section>
<section>
<h2>5. Limitation of Liability</h2>
<p>To the maximum extent permitted by law, Buffer Punk shall not be liable for any indirect, incidental, special, or consequential damages resulting from your use of the Services.</p>
</section>
<section>
<h2>6. Termination</h2>
<p>We may suspend or terminate access to the Services at any time, without prior notice, if we reasonably believe you have violated these Terms.</p>
</section>
<section>
<h2>7. Governing Law</h2>
<p>These Terms are governed by and construed in accordance with the laws of Rwanda. Any disputes shall be subject to the exclusive jurisdiction of the courts located there.</p>
</section>
<section>
<h2>8. Changes to Terms</h2>
<p>We may update these Terms from time to time. Updates will be posted on this page, and continued use of the Services constitutes acceptance of the revised Terms.</p>
</section>
<section>
<h2>9. Contact</h2>
<p>If you have questions about these Terms, contact us at: <a href="mailto:info@bufferpunk.com">info@bufferpunk.com</a></p>
</section>
<footer>
<p>© <span id="y"></span> Buffer Punk. All rights reserved.</p>
</footer>
<script>
document.getElementById("y").textContent = new Date().getFullYear();
</script>
</body>
</html>