forked from dabit3/x402hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
316 lines (281 loc) · 15.2 KB
/
terms.html
File metadata and controls
316 lines (281 loc) · 15.2 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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
<!DOCTYPE html>
<html lang="en" class="bg-[#030616] overscroll-none" data-lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title data-i18n="terms.pageTitle">Terms and Conditions — x402 Hackathon</title>
<meta name="description" data-i18n-attr="content" data-i18n="terms.metaDescription" content="Terms and Conditions for the x402 Hackathon" />
<link rel="icon" type="image/png" href="assets/favicon.png" />
<link rel="apple-touch-icon" href="assets/favicon.png" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap"
/>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Space Grotesk', 'Inter', 'system-ui', 'sans-serif'],
},
colors: {
brand: {
cyan: '#5dd8ff',
indigo: '#8c7bff',
},
},
},
},
};
</script>
<style>
html {
background-color: #030616;
}
body {
background-color: #1E243C;
}
</style>
</head>
<body class="relative min-h-screen bg-[#1E243C] text-slate-50 font-sans antialiased">
<header class="sticky top-0 z-30 w-full px-6 py-5 backdrop-blur-2xl bg-[#1E243C]/80">
<div class="mx-auto flex w-full max-w-4xl items-center justify-between">
<a href="/" class="flex items-center gap-3">
<img src="x402_logo.png" alt="x402 logo" class="h-8 w-auto" />
</a>
<div class="flex items-center gap-4">
<!-- Language Switcher -->
<div class="relative inline-flex items-center">
<select id="langSwitcher" class="appearance-none bg-white/20 backdrop-blur-sm border border-slate-700/50 rounded-full px-4 py-1.5 pr-8 text-xs font-semibold uppercase tracking-[0.3em] text-slate-300 cursor-pointer hover:bg-white/30 transition focus:outline-none">
<option value="en" class="bg-slate-900 text-white">EN</option>
<option value="es" class="bg-slate-900 text-white">ES</option>
<option value="fr" class="bg-slate-900 text-white">FR</option>
<option value="pt" class="bg-slate-900 text-white">PT</option>
</select>
<svg class="pointer-events-none absolute right-3 h-3 w-3 text-slate-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path>
</svg>
</div>
<a href="/" class="text-sm text-slate-300 hover:text-white transition" data-i18n="terms.backToHackathon">
← Back to Hackathon
</a>
</div>
</div>
</header>
<main class="relative z-20 px-6 py-12">
<div class="mx-auto max-w-4xl">
<h1 class="text-4xl font-bold text-white mb-4" data-i18n="terms.title">Terms and Conditions</h1>
<p class="text-sm text-slate-400 mb-4"><span data-i18n="terms.lastUpdated">Last updated:</span> December 4, 2025</p>
<!-- Legal notice about official language -->
<div class="bg-slate-800/50 border border-slate-700/50 rounded-lg p-4 mb-8">
<p class="text-sm text-slate-300" data-i18n="terms.legalNotice">
These Terms and Conditions are only available in English.
</p>
</div>
<div class="space-y-8 text-slate-300 leading-relaxed">
<section>
<h2 class="text-xl font-semibold text-white mb-3">1. Acceptance of Terms</h2>
<p>
By participating in the x402 Hackathon ("Hackathon"), you ("Participant") agree to be bound by these Terms and Conditions. If you do not agree to these terms, please do not participate in the Hackathon.
</p>
</section>
<section>
<h2 class="text-xl font-semibold text-white mb-3">2. Eligibility</h2>
<p>
The Hackathon is open to individuals who are at least 18 years of age or the age of majority in their jurisdiction of residence, whichever is greater. Participation is void where prohibited by law.
</p>
</section>
<section>
<h2 class="text-xl font-semibold text-white mb-3">3. Content License and Promotional Rights</h2>
<p class="mb-3">
By submitting any project, code, video, demo, or other content ("Submission") to the Hackathon, you grant the following rights:
</p>
<ul class="list-disc list-inside space-y-2 ml-4">
<li>
<strong class="text-white">To the Hackathon Organizers:</strong> A non-exclusive, worldwide, royalty-free, perpetual license to use, reproduce, modify, publish, distribute, and display your Submission for promotional, marketing, educational, and administrative purposes related to the Hackathon.
</li>
<li>
<strong class="text-white">To Contributor Protocols and Partners:</strong> A non-exclusive, worldwide, royalty-free license to use, reproduce, and display your Submission (including code, videos, and demos) for promotional and marketing purposes. This includes, but is not limited to, social media posts, blog articles, case studies, presentations, and other marketing materials created by the protocols, platforms, and technologies used in your Submission.
</li>
</ul>
<p class="mt-3">
You represent and warrant that you have all necessary rights to grant these licenses and that your Submission does not infringe upon any third-party intellectual property rights.
</p>
</section>
<section>
<h2 class="text-xl font-semibold text-white mb-3">4. Intellectual Property</h2>
<p>
You retain ownership of your original intellectual property in your Submission. However, the licenses granted above allow the specified parties to use your Submission as described. Any open-source components in your Submission must comply with their respective licenses.
</p>
</section>
<section>
<h2 class="text-xl font-semibold text-white mb-3">5. Disclaimer of Warranties</h2>
<p>
THE HACKATHON IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT ANY WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT. THE ORGANIZERS DO NOT WARRANT THAT THE HACKATHON WILL BE UNINTERRUPTED, ERROR-FREE, OR SECURE.
</p>
</section>
<section>
<h2 class="text-xl font-semibold text-white mb-3">6. Limitation of Liability</h2>
<p>
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL THE HACKATHON ORGANIZERS, SPONSORS, MENTORS, JUDGES, OR THEIR RESPECTIVE AFFILIATES, OFFICERS, DIRECTORS, EMPLOYEES, AGENTS, OR LICENSORS BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, PUNITIVE, OR EXEMPLARY DAMAGES, INCLUDING BUT NOT LIMITED TO DAMAGES FOR LOSS OF PROFITS, GOODWILL, USE, DATA, OR OTHER INTANGIBLE LOSSES, ARISING OUT OF OR IN CONNECTION WITH YOUR PARTICIPATION IN THE HACKATHON.
</p>
<p class="mt-3">
THE TOTAL LIABILITY OF THE ORGANIZERS FOR ANY CLAIMS ARISING FROM OR RELATED TO THE HACKATHON SHALL NOT EXCEED THE AMOUNT PAID BY YOU TO PARTICIPATE IN THE HACKATHON (WHICH IS ZERO, AS PARTICIPATION IS FREE).
</p>
</section>
<section>
<h2 class="text-xl font-semibold text-white mb-3">7. Indemnification</h2>
<p>
You agree to indemnify, defend, and hold harmless the Hackathon Organizers, sponsors, mentors, judges, and their respective affiliates, officers, directors, employees, and agents from and against any and all claims, damages, losses, costs, and expenses (including reasonable attorneys' fees) arising out of or in connection with: (a) your participation in the Hackathon; (b) your Submission; (c) your violation of these Terms and Conditions; or (d) your violation of any rights of any third party.
</p>
</section>
<section>
<h2 class="text-xl font-semibold text-white mb-3">8. Assumption of Risk</h2>
<p>
You acknowledge and agree that participation in the Hackathon involves inherent risks, including but not limited to risks related to software development, blockchain technology, cryptocurrency, and smart contracts. You voluntarily assume all such risks and release the Organizers from any liability related thereto.
</p>
</section>
<section>
<h2 class="text-xl font-semibold text-white mb-3">9. No Employment or Partnership</h2>
<p>
Participation in the Hackathon does not create any employment, agency, partnership, or joint venture relationship between you and the Organizers or any sponsors.
</p>
</section>
<section>
<h2 class="text-xl font-semibold text-white mb-3">10. Code of Conduct</h2>
<p>
Participants are expected to conduct themselves professionally and respectfully. The Organizers reserve the right to disqualify any participant who engages in inappropriate, offensive, or disruptive behavior.
</p>
</section>
<section>
<h2 class="text-xl font-semibold text-white mb-3">11. Modifications</h2>
<p>
The Organizers reserve the right to modify these Terms and Conditions at any time. Any changes will be posted on this page with an updated revision date. Your continued participation in the Hackathon after such changes constitutes your acceptance of the modified terms.
</p>
</section>
<section>
<h2 class="text-xl font-semibold text-white mb-3">12. Governing Law</h2>
<p>
These Terms and Conditions shall be governed by and construed in accordance with applicable laws, without regard to conflict of law principles.
</p>
</section>
<section>
<h2 class="text-xl font-semibold text-white mb-3">13. Severability</h2>
<p>
If any provision of these Terms and Conditions is found to be invalid or unenforceable, the remaining provisions shall continue in full force and effect.
</p>
</section>
<section>
<h2 class="text-xl font-semibold text-white mb-3">14. Entire Agreement</h2>
<p>
These Terms and Conditions constitute the entire agreement between you and the Organizers with respect to your participation in the Hackathon and supersede all prior or contemporaneous communications and proposals.
</p>
</section>
<section class="pt-4 border-t border-white/10">
<p class="text-slate-400">
By submitting to the x402 Hackathon, you acknowledge that you have read, understood, and agree to be bound by these Terms and Conditions.
</p>
</section>
</div>
</div>
</main>
<footer class="relative z-20 px-6 py-10 text-center text-sm text-slate-400">
<a href="/" class="text-brand-cyan transition hover:text-white" data-i18n="terms.backFooter">
← Back to x402 Hackathon
</a>
</footer>
<!-- i18n Internationalization -->
<script>
(function() {
const i18n = {
translations: {},
currentLang: 'en',
supportedLangs: ['en', 'es', 'fr', 'pt'],
async loadTranslations(lang) {
try {
const response = await fetch(`./i18n/${lang}.json`);
if (!response.ok) throw new Error('Translation file not found');
this.translations[lang] = await response.json();
return true;
} catch (error) {
console.error(`Failed to load translations for ${lang}:`, error);
return false;
}
},
getNestedValue(obj, path) {
return path.split('.').reduce((current, key) => current && current[key], obj);
},
translate(key) {
const translation = this.getNestedValue(this.translations[this.currentLang], key);
if (!translation) {
const fallback = this.getNestedValue(this.translations['en'], key);
return fallback || key;
}
return translation;
},
applyTranslations() {
document.querySelectorAll('[data-i18n]').forEach(el => {
const key = el.getAttribute('data-i18n');
const translation = this.translate(key);
const attrToUpdate = el.getAttribute('data-i18n-attr');
if (attrToUpdate) {
el.setAttribute(attrToUpdate, translation);
} else if (el.tagName === 'TITLE') {
document.title = translation;
} else {
el.textContent = translation;
}
});
document.documentElement.lang = this.currentLang;
document.documentElement.dataset.lang = this.currentLang;
},
async setLanguage(lang) {
if (!this.supportedLangs.includes(lang)) {
lang = 'en';
}
if (!this.translations[lang]) {
await this.loadTranslations(lang);
}
if (!this.translations['en']) {
await this.loadTranslations('en');
}
this.currentLang = lang;
localStorage.setItem('preferredLanguage', lang);
this.applyTranslations();
const langSwitcher = document.getElementById('langSwitcher');
if (langSwitcher) {
langSwitcher.value = lang;
}
},
async init() {
const savedLang = localStorage.getItem('preferredLanguage');
const browserLang = navigator.language.split('-')[0];
const initialLang = savedLang || (this.supportedLangs.includes(browserLang) ? browserLang : 'en');
await this.loadTranslations('en');
if (initialLang !== 'en') {
await this.loadTranslations(initialLang);
}
this.currentLang = initialLang;
this.applyTranslations();
const langSwitcher = document.getElementById('langSwitcher');
if (langSwitcher) {
langSwitcher.value = initialLang;
langSwitcher.addEventListener('change', (e) => {
this.setLanguage(e.target.value);
});
}
}
};
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', () => i18n.init());
} else {
i18n.init();
}
window.i18n = i18n;
})();
</script>
</body>
</html>