miguelgargallo commited on
Commit
6f57205
·
verified ·
1 Parent(s): 321ec96

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +427 -19
index.html CHANGED
@@ -1,19 +1,427 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <title>PylarAI 3rd Party License</title>
6
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
7
+ <style>
8
+ :root {
9
+ --bg: #050608;
10
+ --card-bg: #0d0f14;
11
+ --accent: #e63946;
12
+ --accent-soft: rgba(230, 57, 70, 0.18);
13
+ --text-main: #f5f5f7;
14
+ --text-muted: #9ea3b5;
15
+ --border-soft: rgba(255, 255, 255, 0.06);
16
+ --code-bg: #11141c;
17
+ --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.6);
18
+ --radius-lg: 18px;
19
+ --radius-sm: 8px;
20
+ --font-main: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
21
+ "Segoe UI", sans-serif;
22
+ }
23
+
24
+ * {
25
+ box-sizing: border-box;
26
+ margin: 0;
27
+ padding: 0;
28
+ }
29
+
30
+ html, body {
31
+ height: 100%;
32
+ background: radial-gradient(circle at top, #151824 0, #050608 55%);
33
+ color: var(--text-main);
34
+ font-family: var(--font-main);
35
+ -webkit-font-smoothing: antialiased;
36
+ }
37
+
38
+ body {
39
+ display: flex;
40
+ align-items: center;
41
+ justify-content: center;
42
+ padding: 32px 16px;
43
+ }
44
+
45
+ .page {
46
+ width: 100%;
47
+ max-width: 900px;
48
+ }
49
+
50
+ .frame {
51
+ background: linear-gradient(135deg, rgba(230, 57, 70, 0.08), transparent);
52
+ border-radius: 26px;
53
+ padding: 1px;
54
+ box-shadow: var(--shadow-soft);
55
+ }
56
+
57
+ .card {
58
+ background: radial-gradient(circle at top left, #151926 0, #050609 60%);
59
+ border-radius: 24px;
60
+ padding: 32px 26px 30px;
61
+ border: 1px solid var(--border-soft);
62
+ backdrop-filter: blur(18px);
63
+ }
64
+
65
+ header {
66
+ display: flex;
67
+ flex-direction: column;
68
+ gap: 10px;
69
+ margin-bottom: 28px;
70
+ border-bottom: 1px solid rgba(255, 255, 255, 0.04);
71
+ padding-bottom: 20px;
72
+ }
73
+
74
+ .badge {
75
+ display: inline-flex;
76
+ align-items: center;
77
+ gap: 8px;
78
+ font-size: 11px;
79
+ letter-spacing: 0.14em;
80
+ text-transform: uppercase;
81
+ color: var(--text-muted);
82
+ }
83
+
84
+ .badge-dot {
85
+ width: 8px;
86
+ height: 8px;
87
+ border-radius: 999px;
88
+ background: var(--accent);
89
+ box-shadow: 0 0 12px var(--accent);
90
+ }
91
+
92
+ h1 {
93
+ font-size: 26px;
94
+ font-weight: 630;
95
+ letter-spacing: 0.03em;
96
+ text-transform: uppercase;
97
+ display: flex;
98
+ align-items: baseline;
99
+ gap: 10px;
100
+ }
101
+
102
+ h1 span {
103
+ font-size: 13px;
104
+ font-weight: 400;
105
+ color: var(--accent);
106
+ padding: 3px 9px;
107
+ border-radius: 999px;
108
+ background: var(--accent-soft);
109
+ border: 1px solid rgba(230, 57, 70, 0.45);
110
+ }
111
+
112
+ .subtitle {
113
+ font-size: 14px;
114
+ color: var(--text-muted);
115
+ max-width: 520px;
116
+ line-height: 1.5;
117
+ }
118
+
119
+ .meta {
120
+ font-size: 11px;
121
+ color: var(--text-muted);
122
+ text-transform: uppercase;
123
+ letter-spacing: 0.16em;
124
+ margin-top: 4px;
125
+ }
126
+
127
+ main {
128
+ display: grid;
129
+ grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
130
+ gap: 24px;
131
+ }
132
+
133
+ @media (max-width: 800px) {
134
+ body {
135
+ align-items: flex-start;
136
+ }
137
+ .card {
138
+ padding: 24px 18px 22px;
139
+ }
140
+ main {
141
+ grid-template-columns: minmax(0, 1fr);
142
+ }
143
+ }
144
+
145
+ .license-content {
146
+ font-size: 14px;
147
+ line-height: 1.7;
148
+ color: var(--text-main);
149
+ }
150
+
151
+ .license-content h2 {
152
+ font-size: 16px;
153
+ font-weight: 600;
154
+ margin: 18px 0 8px;
155
+ display: flex;
156
+ align-items: center;
157
+ gap: 8px;
158
+ }
159
+
160
+ .license-content h2::before {
161
+ content: "";
162
+ width: 18px;
163
+ height: 1px;
164
+ background: linear-gradient(90deg, var(--accent), transparent);
165
+ }
166
+
167
+ .license-content p {
168
+ margin-bottom: 10px;
169
+ color: var(--text-main);
170
+ }
171
+
172
+ .license-content ul {
173
+ margin: 6px 0 12px 18px;
174
+ list-style: none;
175
+ }
176
+
177
+ .license-content li {
178
+ position: relative;
179
+ margin-bottom: 6px;
180
+ color: var(--text-muted);
181
+ }
182
+
183
+ .license-content li::before {
184
+ content: "•";
185
+ position: absolute;
186
+ left: -14px;
187
+ color: var(--accent);
188
+ }
189
+
190
+ .section-label {
191
+ font-size: 11px;
192
+ text-transform: uppercase;
193
+ letter-spacing: 0.18em;
194
+ color: var(--text-muted);
195
+ margin-bottom: 2px;
196
+ }
197
+
198
+ .pill {
199
+ display: inline-flex;
200
+ align-items: center;
201
+ gap: 6px;
202
+ font-size: 11px;
203
+ color: var(--accent);
204
+ background: rgba(230, 57, 70, 0.08);
205
+ border-radius: 999px;
206
+ padding: 4px 10px;
207
+ border: 1px solid rgba(230, 57, 70, 0.3);
208
+ margin-bottom: 8px;
209
+ }
210
+
211
+ .pill-dot {
212
+ width: 6px;
213
+ height: 6px;
214
+ border-radius: 999px;
215
+ background: var(--accent);
216
+ }
217
+
218
+ .side-panel {
219
+ border-radius: 18px;
220
+ padding: 16px 16px 14px;
221
+ background: linear-gradient(
222
+ 145deg,
223
+ rgba(255, 255, 255, 0.02),
224
+ rgba(0, 0, 0, 0.4)
225
+ );
226
+ border: 1px solid var(--border-soft);
227
+ display: flex;
228
+ flex-direction: column;
229
+ gap: 16px;
230
+ }
231
+
232
+ .side-card {
233
+ padding: 12px 12px 11px;
234
+ border-radius: 14px;
235
+ background: rgba(5, 7, 12, 0.85);
236
+ border: 1px solid rgba(255, 255, 255, 0.04);
237
+ }
238
+
239
+ .side-title {
240
+ font-size: 12px;
241
+ font-weight: 600;
242
+ margin-bottom: 4px;
243
+ }
244
+
245
+ .side-text {
246
+ font-size: 12px;
247
+ color: var(--text-muted);
248
+ line-height: 1.5;
249
+ }
250
+
251
+ .meta-grid {
252
+ display: grid;
253
+ grid-template-columns: repeat(2, minmax(0, 1fr));
254
+ gap: 8px;
255
+ margin-top: 6px;
256
+ }
257
+
258
+ .meta-item {
259
+ font-size: 11px;
260
+ color: var(--text-muted);
261
+ display: flex;
262
+ flex-direction: column;
263
+ gap: 2px;
264
+ }
265
+
266
+ .meta-item span:first-child {
267
+ text-transform: uppercase;
268
+ letter-spacing: 0.16em;
269
+ font-size: 10px;
270
+ color: rgba(158, 163, 181, 0.75);
271
+ }
272
+
273
+ a {
274
+ color: var(--accent);
275
+ text-decoration: none;
276
+ border-bottom: 1px solid rgba(230, 57, 70, 0.4);
277
+ }
278
+
279
+ a:hover {
280
+ border-bottom-color: var(--accent);
281
+ }
282
+
283
+ code, pre {
284
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
285
+ }
286
+
287
+ .source-block {
288
+ margin-top: 10px;
289
+ font-size: 12px;
290
+ padding: 8px 10px;
291
+ border-radius: var(--radius-sm);
292
+ background: var(--code-bg);
293
+ border: 1px solid rgba(255, 255, 255, 0.04);
294
+ color: var(--text-muted);
295
+ word-break: break-all;
296
+ }
297
+ </style>
298
+ </head>
299
+ <body>
300
+ <div class="page">
301
+ <div class="frame">
302
+ <div class="card">
303
+ <header>
304
+ <div class="badge">
305
+ <span class="badge-dot"></span>
306
+ PYLARAI 3RD PARTY LICENSE
307
+ </div>
308
+ <h1>
309
+ PylarAI 3rd Party License
310
+ <span>Version 1.0 – December 2025</span>
311
+ </h1>
312
+ <p class="subtitle">
313
+ Software License Agreement focused on strict third-party compliance, transparent attribution,
314
+ and responsible integration of external components in any derived project or deliverable.
315
+ </p>
316
+ <p class="meta">
317
+ SOFTWARE LICENSE AGREEMENT · THIRD‑PARTY COMPLIANCE
318
+ </p>
319
+ </header>
320
+
321
+ <main>
322
+ <section class="license-content">
323
+ <div class="section-label">Overview</div>
324
+ <p>
325
+ Software License Agreement - Third-Party Compliance
326
+ </p>
327
+
328
+ <h2>1. Definitions</h2>
329
+ <ul>
330
+ <li><strong>Software</strong>: Refers to the program, application, component, script, or any digital material licensed under this agreement.</li>
331
+ <li><strong>Third-Party Components</strong>: Includes any code, library, plugin, module, content, or technology developed by an entity other than the Licensor.</li>
332
+ <li><strong>Project Deliverable</strong>: Any derivative content, result, modification, or integration involving the use of the Software or any third-party component.</li>
333
+ <li><strong>End User</strong>: Any individual or legal entity that uses, distributes, or adapts the Software within the boundaries defined by this license.</li>
334
+ </ul>
335
+
336
+ <h2>2. Grant of Rights</h2>
337
+ <p>
338
+ The Licensor grants the End User a non-exclusive, non-transferable, and revocable authorization to use the Software solely for development, testing, or integration purposes, provided that these conditions are fully respected.
339
+ </p>
340
+
341
+ <h2>3. Third-Party Respect and Compliance</h2>
342
+ <ul>
343
+ <li>Any third-party component, resource, or technology included or referenced within a derivative project must retain its original license, notices, and restrictions without alteration.</li>
344
+ <li>The End User is responsible for verifying the applicable license terms of every third-party component used before distributing or modifying any of its contents.</li>
345
+ <li>The Software may not be used to bypass, modify, or violate third-party license terms, nor to reassign credit, ownership, or intellectual property rights belonging to others.</li>
346
+ <li>When redistributing or delivering a Project Deliverable that integrates third-party software, the provenance, version, and license of each component must be explicitly documented.</li>
347
+ </ul>
348
+
349
+ <h2>4. Modifications and Derivative Work</h2>
350
+ <ul>
351
+ <li>Any modification, extension, integration, or plugin created based on the Software must respect the dependencies and third-party components embedded in its original structure.</li>
352
+ <li>Removal, suppression, or replacement of trademarks, credits, or identifiers belonging to third-party entities integrated by the original author or supplier is strictly prohibited.</li>
353
+ </ul>
354
+
355
+ <h2>5. Liability and Warranty Disclaimer</h2>
356
+ <p>
357
+ The Software and its components are provided “as is,” without any express or implied warranties, including but not limited to merchantability, fitness for a particular purpose, or non-infringement of third-party rights.
358
+ </p>
359
+ <p>
360
+ The Licensor shall not be held liable for any claim, damage, or loss arising from the use of third-party components or from non-compliance with their license terms.
361
+ </p>
362
+
363
+ <h2>6. Acceptance of Terms</h2>
364
+ <p>
365
+ By using the Software, the End User acknowledges and accepts all terms and conditions stated herein.
366
+ </p>
367
+ <p>
368
+ If the End User does not agree to these terms, they are not authorized to install, use, modify, or distribute the Software.
369
+ </p>
370
+
371
+ <div class="source-block">
372
+ Source:
373
+ <a href="https://huggingface.co/spaces/superdatas/pylarai3rdpartylicense" target="_blank" rel="noreferrer">
374
+ https://huggingface.co/spaces/superdatas/pylarai3rdpartylicense
375
+ </a>
376
+ </div>
377
+ </section>
378
+
379
+ <aside class="side-panel">
380
+ <div class="side-card">
381
+ <div class="pill">
382
+ <span class="pill-dot"></span>
383
+ Third-Party First
384
+ </div>
385
+ <h3 class="side-title">Design Principles</h3>
386
+ <p class="side-text">
387
+ Minimal surface, maximum clarity: the focus stays on the legal text, with a layout optimized
388
+ for reading and section scanning across devices.
389
+ </p>
390
+ </div>
391
+
392
+ <div class="side-card">
393
+ <h3 class="side-title">License Snapshot</h3>
394
+ <div class="meta-grid">
395
+ <div class="meta-item">
396
+ <span>Status</span>
397
+ <span>Active · v1.0</span>
398
+ </div>
399
+ <div class="meta-item">
400
+ <span>Scope</span>
401
+ <span>Third-Party Compliance</span>
402
+ </div>
403
+ <div class="meta-item">
404
+ <span>Updated</span>
405
+ <span>December 2025</span>
406
+ </div>
407
+ <div class="meta-item">
408
+ <span>Jurisdiction</span>
409
+ <span>Global Use</span>
410
+ </div>
411
+ </div>
412
+ </div>
413
+
414
+ <div class="side-card">
415
+ <h3 class="side-title">Implementation Hint</h3>
416
+ <p class="side-text">
417
+ Include this license alongside your model or application documentation and reference it explicitly
418
+ in your project’s README or Terms section for transparency.
419
+ </p>
420
+ </div>
421
+ </aside>
422
+ </main>
423
+ </div>
424
+ </div>
425
+ </div>
426
+ </body>
427
+ </html>