Xacodavt commited on
Commit
cf8586d
·
verified ·
1 Parent(s): 92f50b3

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +141 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Termos De Uso
3
- emoji:
4
- colorFrom: indigo
5
- colorTo: green
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: termos-de-uso
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: red
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,141 @@
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="pt-BR">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Termos de Uso - Slime War</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
15
+ min-height: 100vh;
16
+ }
17
+
18
+ .gradient-text {
19
+ background: linear-gradient(90deg, #4ade80 0%, #3b82f6 100%);
20
+ -webkit-background-clip: text;
21
+ background-clip: text;
22
+ color: transparent;
23
+ }
24
+
25
+ .section-card {
26
+ background: rgba(15, 23, 42, 0.7);
27
+ backdrop-filter: blur(10px);
28
+ border: 1px solid rgba(255, 255, 255, 0.1);
29
+ transition: all 0.3s ease;
30
+ }
31
+
32
+ .section-card:hover {
33
+ transform: translateY(-5px);
34
+ box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
35
+ }
36
+
37
+ .back-btn {
38
+ transition: all 0.3s ease;
39
+ box-shadow: 0 4px 6px rgba(74, 222, 128, 0.2);
40
+ }
41
+
42
+ .back-btn:hover {
43
+ transform: translateY(-2px);
44
+ box-shadow: 0 6px 8px rgba(59, 130, 246, 0.3);
45
+ }
46
+
47
+ ::-webkit-scrollbar {
48
+ width: 8px;
49
+ }
50
+
51
+ ::-webkit-scrollbar-track {
52
+ background: #1e293b;
53
+ }
54
+
55
+ ::-webkit-scrollbar-thumb {
56
+ background: linear-gradient(#4ade80, #3b82f6);
57
+ border-radius: 4px;
58
+ }
59
+ </style>
60
+ </head>
61
+ <body class="text-gray-200">
62
+ <div class="container mx-auto px-4 py-12 max-w-4xl">
63
+ <!-- Header -->
64
+ <header class="mb-12 text-center">
65
+ <h1 class="text-4xl md:text-5xl font-bold mb-4">
66
+ <span class="gradient-text">Termos de Uso</span>
67
+ </h1>
68
+ <p class="text-lg text-gray-400">Última atualização: <span class="text-blue-400">01/07/2023</span></p>
69
+ </header>
70
+
71
+ <!-- Main Content -->
72
+ <main class="space-y-8">
73
+ <!-- Introduction Section -->
74
+ <div class="section-card rounded-xl p-6 md:p-8">
75
+ <h2 class="text-2xl font-semibold mb-4 text-green-400">
76
+ <i class="fas fa-info-circle mr-2"></i> Introdução
77
+ </h2>
78
+ <p class="text-gray-300 mb-4">
79
+ Bem-vindo ao Slime War! Ao acessar e utilizar nosso site, você concorda em cumprir estes Termos de Uso e todas as leis e regulamentos aplicáveis.
80
+ </p>
81
+ <p class="text-gray-300">
82
+ Se você não concordar com qualquer parte destes termos, você não está autorizado a usar ou acessar este serviço.
83
+ </p>
84
+ </div>
85
+
86
+ <!-- Usage Section -->
87
+ <div class="section-card rounded-xl p-6 md:p-8">
88
+ <h2 class="text-2xl font-semibold mb-4 text-blue-400">
89
+ <i class="fas fa-laptop-code mr-2"></i> Uso Aceitável
90
+ </h2>
91
+ <ul class="space-y-3 text-gray-300 pl-5 list-disc">
92
+ <li>O conteúdo do site é fornecido "como está" para seu uso pessoal e não comercial.</li>
93
+ <li>Você concorda em não usar o site de forma que possa danificar, desativar ou sobrecarregar o serviço.</li>
94
+ <li>É proibido tentar obter acesso não autorizado a qualquer parte do site ou sistemas relacionados.</li>
95
+ <li>Você é responsável por toda a atividade que ocorre sob sua conta.</li>
96
+ </ul>
97
+ </div>
98
+
99
+ <!-- Intellectual Property -->
100
+ <div class="section-card rounded-xl p-6 md:p-8">
101
+ <h2 class="text-2xl font-semibold mb-4 text-purple-400">
102
+ <i class="fas fa-copyright mr-2"></i> Propriedade Intelectual
103
+ </h2>
104
+ <p class="text-gray-300 mb-4">
105
+ Todo o conteúdo, incluindo textos, gráficos, logotipos, ícones, imagens, compilações de dados e software, é propriedade do Slime War ou de seus fornecedores de conteúdo e está protegido por leis de direitos autorais.
106
+ </p>
107
+ <p class="text-gray-300">
108
+ A reprodução, modificação, distribuição ou republicação de qualquer parte deste site sem autorização prévia por escrito é estritamente proibida.
109
+ </p>
110
+ </div>
111
+
112
+ <!-- Limitation of Liability -->
113
+ <div class="section-card rounded-xl p-6 md:p-8">
114
+ <h2 class="text-2xl font-semibold mb-4 text-yellow-400">
115
+ <i class="fas fa-exclamation-triangle mr-2"></i> Limitação de Responsabilidade
116
+ </h2>
117
+ <p class="text-gray-300">
118
+ O Slime War não será responsável por quaisquer danos diretos, indiretos, incidentais, consequenciais ou especiais resultantes do uso ou da incapacidade de usar o site, mesmo se o Slime War tiver sido avisado da possibilidade de tais danos.
119
+ </p>
120
+ </div>
121
+
122
+ <!-- Changes to Terms -->
123
+ <div class="section-card rounded-xl p-6 md:p-8">
124
+ <h2 class="text-2xl font-semibold mb-4 text-red-400">
125
+ <i class="fas fa-sync-alt mr-2"></i> Alterações aos Termos
126
+ </h2>
127
+ <p class="text-gray-300">
128
+ Reservamo-nos o direito, a nosso exclusivo critério, de modificar ou substituir estes Termos a qualquer momento. Se uma revisão for significativa, forneceremos aviso prévio antes que os novos termos entrem em vigor.
129
+ </p>
130
+ </div>
131
+ </main>
132
+
133
+ <!-- Back Button -->
134
+ <div class="mt-16 text-center">
135
+ <a href="index.html" class="back-btn inline-flex items-center px-6 py-3 bg-gradient-to-r from-green-500 to-blue-500 text-white font-bold rounded-full">
136
+ <i class="fas fa-arrow-left mr-2"></i> Voltar à página inicial
137
+ </a>
138
+ </div>
139
+ </div>
140
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Xacodavt/termos-de-uso" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
141
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ <!DOCTYPE html> <html lang="pt-BR"> <head> <meta charset="UTF-8"> <title>Termos de Uso - Slime War</title> <style> body { background: #0f172a; color: #e2e8f0; font-family: sans-serif; padding: 2rem; } a.voltar { display: inline-block; margin-top: 2rem; padding: 0.5rem 1rem; background: linear-gradient(45deg, #4ade80, #3b82f6); color: white; text-decoration: none; border-radius: 8px; font-weight: bold; } </style> </head> <body> <h1>Termos de Uso</h1> <p>Ao acessar este site, você concorda em seguir nossas diretrizes. O conteúdo é oferecido “como está”...</p> <a href="index.html" class="voltar">← Voltar à página inicial</a> </body> </html>