-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterminos-uso.html
More file actions
101 lines (94 loc) · 3.69 KB
/
terminos-uso.html
File metadata and controls
101 lines (94 loc) · 3.69 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
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Términos de Uso - Modelo Prompt</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="content">
<main>
<div class="tab-content" id="terms">
<h1>Términos de Uso</h1>
<p>
<strong>Última actualización:</strong> 23 de septiembre
de 2025
</p>
<p>
Al usar el sitio web <strong>Modelo Prompt</strong>,
aceptas los siguientes términos:
</p>
<h2>1. Software de código abierto</h2>
<p>
Este proyecto se distribuye bajo la licencia
<strong>GNU General Public License v3 (GPL-3.0)</strong
>. Puedes usarlo, modificarlo y redistribuirlo, siempre
que respetes los términos de dicha licencia.
</p>
<h2>2. Sin garantía</h2>
<p>
EL SITIO SE PROPORCIONA "TAL CUAL", SIN GARANTÍAS DE
NINGÚN TIPO, EXPRESAS O IMPLÍCITAS. El autor no se
responsabiliza de ningún daño directo, indirecto,
incidental o consecuente derivado del uso de este sitio.
</p>
<h2>3. Uso responsable</h2>
<p>
Se espera que uses esta herramienta de forma ética y
legal. No está diseñada ni debe usarse para fines
maliciosos o que violen las leyes locales.
</p>
<h2>4. Modificaciones</h2>
<p>
El autor se reserva el derecho de modificar estas
condiciones en cualquier momento. Los cambios se
publicarán en esta página.
</p>
<p>
Consulta también la
<a
href="politica-privacidad.html"
target="_blank"
rel="noopener noreferrer"
>Política de Privacidad</a
>
y la
<a
href="LICENSE"
target="_blank"
rel="noopener noreferrer"
>licencia GPL-3.0</a
>.
</p>
</div>
</main>
</div>
<footer>
<p>
© 2025 Alan Mac-Arthur García Díaz. GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
</p>
<nav>
<a
href="politica-privacidad.html"
target="_blank"
rel="noopener noreferrer"
>Política de privacidad</a
>
<a
href="terminos-uso.html"
target="_blank"
rel="noopener noreferrer"
>Términos de uso</a
>
<a
href="contacto.html"
target="_blank"
rel="noopener noreferrer"
>Contacto</a
>
</nav>
</footer>
</body>
</html>