-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
242 lines (227 loc) · 9.33 KB
/
Copy pathterms.html
File metadata and controls
242 lines (227 loc) · 9.33 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SLATED — Terms of Service</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="apple-touch-icon" href="favicon.png">
<link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@1,800&family=Syne:wght@400;600&display=swap" rel="stylesheet">
<style>
:root {
--base: #1A2332;
--base-dark: #131C2C;
--card: #1D2B3F;
--signal: #2B8EFF;
--i1: #ECF0F6;
--i2: #7C96B2;
--i3: #607898;
--b0: rgba(255,255,255,0.07);
--b1: rgba(255,255,255,0.12);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #0f1722;
color: #ECF0F6;
line-height: 1.7;
}
header {
padding: 20px 24px;
border-bottom: 1px solid rgba(255,255,255,0.07);
background: #131C2C;
}
.back-wordmark {
font-family: 'Barlow Condensed', sans-serif;
font-size: 22px;
font-weight: 800;
font-style: italic;
color: var(--i1);
text-decoration: none;
letter-spacing: 0.02em;
line-height: 1;
display: block;
}
.back-wordmark:hover { color: var(--signal); text-decoration: none; }
main {
max-width: 720px;
margin: 0 auto;
padding: 40px 24px 80px;
}
.doc-title {
font-size: 28px;
font-weight: 700;
color: #ECF0F6;
margin-bottom: 6px;
letter-spacing: -0.01em;
}
.doc-date {
font-size: 12px;
color: #415870;
margin-bottom: 40px;
text-transform: uppercase;
letter-spacing: 0.08em;
}
h2 {
font-size: 14px;
font-weight: 600;
color: #2B8EFF;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-top: 36px;
margin-bottom: 12px;
padding-bottom: 8px;
border-bottom: 1px solid rgba(255,255,255,0.07);
}
p {
font-size: 15px;
color: #7C96B2;
margin-bottom: 14px;
}
ul {
margin: 0 0 14px 0;
padding-left: 20px;
}
li {
font-size: 15px;
color: #7C96B2;
margin-bottom: 8px;
}
strong {
color: #ECF0F6;
font-weight: 500;
}
a {
color: #2B8EFF;
text-decoration: none;
}
a:hover { text-decoration: underline; }
.contact-block {
background: #1D2B3F;
border: 1px solid rgba(255,255,255,0.07);
border-radius: 4px;
padding: 20px;
margin-top: 8px;
}
.contact-block p {
margin-bottom: 4px;
}
.go-back {
font-family: 'Syne', sans-serif;
font-size: 11px;
font-weight: 600;
color: var(--i3);
text-decoration: none;
letter-spacing: 0.1em;
text-transform: uppercase;
display: inline-block;
}
.go-back:hover { color: var(--i2); text-decoration: none; }
.go-back-top { margin-bottom: 28px; }
.go-back-bottom { margin-top: 32px; }
footer {
position: relative;
z-index: 1;
padding: 20px 24px;
border-top: 1px solid var(--b0);
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
}
.footer-links {
display: flex;
gap: 20px;
}
footer .copyright {
font-family: 'Syne', sans-serif;
font-size: 11px;
font-weight: 400;
color: var(--i3);
}
footer a {
font-family: 'Syne', sans-serif;
font-size: 11px;
font-weight: 600;
color: var(--i3);
text-decoration: none;
letter-spacing: 0.08em;
text-transform: uppercase;
transition: color 0.15s;
}
footer a:hover { color: var(--i2); text-decoration: none; }
@media (max-width: 480px) {
footer {
flex-direction: column;
text-align: center;
}
}
</style>
</head>
<body>
<header>
<a href="/" class="back-wordmark">SLATED</a>
</header>
<main>
<a href="/" class="go-back go-back-top">< GO BACK</a>
<div class="doc-title">Terms of Service</div>
<div class="doc-date">Last updated: 17 April 2026</div>
<h2>1. About These Terms</h2>
<p>These Terms of Service govern your use of the SLATED mobile application. By creating an account or using the app, you agree to these terms. If you do not agree, please do not use SLATED.</p>
<p>SLATED is operated by Marshall Patterson, an individual developer based in the United Kingdom. References to "we", "us", and "our" refer to Marshall Patterson.</p>
<h2>2. Eligibility</h2>
<p>You must be at least 16 years old to use SLATED. By creating an account, you confirm that you meet this requirement. We reserve the right to terminate accounts where we have reason to believe the user does not meet this requirement.</p>
<h2>3. Your Account</h2>
<p>You are responsible for maintaining the confidentiality of your account credentials and for all activity that occurs under your account. Please notify us immediately at <a href="mailto:slatedapp@gmail.com">slatedapp@gmail.com</a> if you suspect unauthorised access.</p>
<p>You agree to provide accurate information when creating your account. You may not create an account on behalf of another person or use a false identity.</p>
<h2>4. What SLATED Does</h2>
<p>SLATED is a video game release tracker. It allows you to browse upcoming game releases sourced from the IGDB database, save games to a personal tracker, and receive notifications about tracked releases.</p>
<p>We do not create, own, or control any of the game content displayed in the app. All game data is sourced from the IGDB API. We make no representations about the accuracy or completeness of this data.</p>
<h2>5. Acceptable Use</h2>
<p>You agree not to use SLATED to:</p>
<ul>
<li>Violate any applicable law or regulation</li>
<li>Attempt to gain unauthorised access to our systems or another user's account</li>
<li>Interfere with or disrupt the operation of the app or its servers</li>
<li>Reverse engineer, decompile, or disassemble any part of the app</li>
<li>Use the app for any commercial purpose without our prior written consent</li>
</ul>
<h2>6. Third-Party Content</h2>
<p>Game data displayed in SLATED is sourced from IGDB, owned by Twitch Interactive, Inc. This content may include materials that are the intellectual property of their respective owners. We display this content for informational purposes only and claim no ownership over it.</p>
<p>If you believe any content displayed in SLATED infringes your intellectual property rights, please contact us at <a href="mailto:slatedapp@gmail.com">slatedapp@gmail.com</a>.</p>
<p>Trailer content is sourced via YouTube and is subject to <a href="https://www.youtube.com/t/terms" target="_blank">YouTube's Terms of Service</a>.</p>
<h2>7. Intellectual Property</h2>
<p>The SLATED name, logo, design, and original code are the intellectual property of Marshall Patterson. You may not reproduce, distribute, or create derivative works from any part of SLATED without prior written permission.</p>
<h2>8. Advertising</h2>
<p>SLATED is free to use and is supported by advertising served through Google AdMob. We may introduce an optional paid tier to remove advertising. You will be notified of any such changes before they take effect.</p>
<h2>9. Notifications</h2>
<p>If you opt in to release notifications, we will send you notifications relating to games you have tracked. You can opt out at any time in your profile settings. We will not send you unsolicited marketing communications.</p>
<h2>10. Termination</h2>
<p>You may delete your account at any time through the app. We reserve the right to suspend or terminate your account if you violate these Terms of Service. Upon termination, your personal data will be deleted in accordance with our Privacy Policy.</p>
<h2>11. Disclaimers</h2>
<p>SLATED is provided on an "as is" and "as available" basis. We make no warranties about the reliability, accuracy, or availability of the app. Game release dates and other information may be inaccurate or out of date. We are not responsible for decisions made based on information displayed in the app.</p>
<h2>12. Limitation of Liability</h2>
<p>To the fullest extent permitted by law, Marshall Patterson shall not be liable for any indirect, incidental, special, or consequential damages arising from your use of SLATED. Our total liability for any claim shall not exceed the amount you have paid us in the 12 months preceding the claim, or £100 if you have paid nothing.</p>
<p>Nothing in these terms limits liability for death or personal injury caused by negligence, fraud, or any other liability that cannot be excluded under English law.</p>
<h2>13. Governing Law</h2>
<p>These Terms of Service are governed by the laws of England and Wales. Any disputes shall be subject to the exclusive jurisdiction of the courts of England and Wales.</p>
<h2>14. Changes to These Terms</h2>
<p>We may update these Terms of Service from time to time. We will notify you of significant changes through the app. Your continued use of SLATED after changes constitutes acceptance of the updated terms.</p>
<h2>15. Contact</h2>
<div class="contact-block">
<p><strong>Marshall Patterson</strong></p>
<p><a href="mailto:slatedapp@gmail.com">slatedapp@gmail.com</a></p>
<p>24 Jacob Drive, Middlesbrough, TS4 3AY, United Kingdom</p>
</div>
<a href="/" class="go-back go-back-bottom">< GO BACK</a>
</main>
<footer>
<span class="copyright">© 2026 SLATED</span>
<div class="footer-links">
<a href="mailto:slatedapp@gmail.com">Support</a>
<a href="/privacy">Privacy Policy</a>
<a href="/terms">Terms of Service</a>
</div>
</footer>
</body>
</html>