Spaces:
Running
Running
Update index.html
Browse files- index.html +83 -204
index.html
CHANGED
@@ -3,256 +3,135 @@
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
-
<title>IA Toolbox Hub
|
7 |
-
<script src="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.js"></script>
|
8 |
<script src="https://cdnjs.cloudflare.com/ajax/libs/alpinejs/2.8.2/alpine.js"></script>
|
9 |
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/js/all.min.js"></script>
|
10 |
<style>
|
11 |
:root {
|
12 |
-
--primary
|
13 |
-
--primary-dark: #
|
14 |
-
--
|
15 |
-
--
|
16 |
-
--
|
17 |
-
--
|
18 |
-
--text-secondary: #4B5563;
|
19 |
-
--transition-speed: 0.3s;
|
20 |
}
|
21 |
|
22 |
body {
|
23 |
-
font-family:
|
|
|
|
|
|
|
24 |
line-height: 1.5;
|
25 |
-
color: var(--text-primary);
|
26 |
-
background: linear-gradient(135deg, var(--background-light), #E0E7FF);
|
27 |
-
min-height: 100vh;
|
28 |
}
|
29 |
|
30 |
-
|
31 |
-
|
32 |
-
|
|
|
33 |
}
|
34 |
|
35 |
-
|
36 |
-
|
37 |
-
70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
|
38 |
-
100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
|
39 |
-
}
|
40 |
-
|
41 |
-
.nav-link {
|
42 |
-
position: relative;
|
43 |
-
color: var(--text-secondary);
|
44 |
-
transition: color var(--transition-speed);
|
45 |
-
}
|
46 |
-
|
47 |
-
.nav-link::after {
|
48 |
-
content: '';
|
49 |
-
position: absolute;
|
50 |
-
width: 0;
|
51 |
-
height: 2px;
|
52 |
-
bottom: -2px;
|
53 |
-
left: 0;
|
54 |
-
background-color: var(--primary-color);
|
55 |
-
transition: width var(--transition-speed);
|
56 |
-
}
|
57 |
-
|
58 |
-
.nav-link:hover::after {
|
59 |
-
width: 100%;
|
60 |
-
}
|
61 |
-
|
62 |
-
.gradient-text {
|
63 |
-
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
|
64 |
-
-webkit-background-clip: text;
|
65 |
-
-webkit-text-fill-color: transparent;
|
66 |
-
animation: fadeIn 1s ease-out;
|
67 |
-
}
|
68 |
-
|
69 |
-
.feature-card {
|
70 |
-
transition: all var(--transition-speed);
|
71 |
-
background: rgba(255, 255, 255, 0.9);
|
72 |
-
backdrop-filter: blur(10px);
|
73 |
-
}
|
74 |
-
|
75 |
-
.feature-card:hover {
|
76 |
-
transform: translateY(-10px);
|
77 |
-
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
|
78 |
-
0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
79 |
-
}
|
80 |
-
|
81 |
-
.profile-image {
|
82 |
-
animation: pulseGlow 2s infinite;
|
83 |
-
}
|
84 |
-
|
85 |
-
.btn-primary {
|
86 |
-
background: var(--primary-color);
|
87 |
color: white;
|
88 |
-
transition:
|
89 |
-
|
90 |
-
overflow: hidden;
|
91 |
}
|
92 |
|
93 |
-
.btn-
|
94 |
background: var(--primary-dark);
|
95 |
}
|
96 |
|
97 |
-
.
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
height: 100%;
|
102 |
-
top: 0;
|
103 |
-
left: -100%;
|
104 |
-
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
|
105 |
-
transition: left 0.5s;
|
106 |
}
|
107 |
|
108 |
-
.
|
109 |
-
|
110 |
}
|
111 |
|
112 |
-
.
|
113 |
-
|
114 |
-
opacity: 0.7;
|
115 |
-
}
|
116 |
-
|
117 |
-
.loading::after {
|
118 |
-
content: '';
|
119 |
-
position: absolute;
|
120 |
-
top: 50%;
|
121 |
-
left: 50%;
|
122 |
-
width: 24px;
|
123 |
-
height: 24px;
|
124 |
-
margin: -12px 0 0 -12px;
|
125 |
-
border: 2px solid var(--primary-color);
|
126 |
-
border-top-color: transparent;
|
127 |
-
border-radius: 50%;
|
128 |
-
animation: spin 1s linear infinite;
|
129 |
-
}
|
130 |
-
|
131 |
-
@keyframes spin {
|
132 |
-
to { transform: rotate(360deg); }
|
133 |
}
|
134 |
|
135 |
-
.
|
136 |
-
|
137 |
-
backdrop-filter: blur(10px);
|
138 |
-
border: 1px solid rgba(255, 255, 255, 0.2);
|
139 |
}
|
140 |
</style>
|
141 |
</head>
|
142 |
-
<body>
|
143 |
-
<nav class="fixed w-full z-50
|
144 |
-
<div class="container mx-auto px-
|
145 |
-
<
|
146 |
-
|
147 |
-
<div class="hidden md:flex space-x-8">
|
148 |
-
<a href="#features" class="nav-link">Recursos</a>
|
149 |
-
<a href="#about" class="nav-link">Sobre</a>
|
150 |
-
<a href="#contact" class="nav-link">Contato</a>
|
151 |
-
<button class="btn-primary px-4 py-2 rounded-lg">Iniciar</button>
|
152 |
-
</div>
|
153 |
-
</div>
|
154 |
</div>
|
155 |
</nav>
|
156 |
|
157 |
-
<main class="pt-20">
|
158 |
-
<div class="
|
159 |
-
<
|
160 |
-
<
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
:class="{ 'bg-blue-500 text-white': activeTab === 'profile' }"
|
168 |
-
class="px-4 py-2 rounded-lg transition">
|
169 |
-
Perfil
|
170 |
-
</button>
|
171 |
-
<button @click="activeTab = 'stats'"
|
172 |
-
:class="{ 'bg-blue-500 text-white': activeTab === 'stats' }"
|
173 |
-
class="px-4 py-2 rounded-lg transition">
|
174 |
-
Estatísticas
|
175 |
-
</button>
|
176 |
-
</div>
|
177 |
-
|
178 |
-
<div x-show="activeTab === 'profile'" class="flex flex-col md:flex-row items-center">
|
179 |
-
<div class="md:w-1/3 mb-6 md:mb-0 relative">
|
180 |
-
<img src="/api/placeholder/96/96" alt="Dheiver Santos"
|
181 |
-
class="profile-image rounded-full mx-auto w-24 h-24 object-cover"/>
|
182 |
</div>
|
183 |
-
<
|
184 |
-
|
185 |
-
<div class="
|
186 |
-
<
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
<
|
191 |
-
|
192 |
-
<span>Especialista em IA</span>
|
193 |
-
</div>
|
194 |
</div>
|
195 |
-
</div>
|
196 |
-
</div>
|
197 |
-
|
198 |
-
<div x-show="activeTab === 'stats'" class="grid grid-cols-1 md:grid-cols-3 gap-6">
|
199 |
-
<div class="glass-effect p-6 rounded-lg text-center">
|
200 |
-
<div class="text-4xl font-bold gradient-text mb-2">200+</div>
|
201 |
-
<div class="text-gray-600">Artigos</div>
|
202 |
-
</div>
|
203 |
-
<div class="glass-effect p-6 rounded-lg text-center">
|
204 |
-
<div class="text-4xl font-bold gradient-text mb-2">50k+</div>
|
205 |
-
<div class="text-gray-600">Leitores</div>
|
206 |
-
</div>
|
207 |
-
<div class="glass-effect p-6 rounded-lg text-center">
|
208 |
-
<div class="text-4xl font-bold gradient-text mb-2">300+</div>
|
209 |
-
<div class="text-gray-600">Citações</div>
|
210 |
</div>
|
211 |
</div>
|
212 |
</div>
|
|
|
213 |
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
|
|
|
|
|
|
218 |
</div>
|
219 |
-
<
|
220 |
-
<p class="text-gray-600 mb-4">Converta áudio em texto com alta precisão.</p>
|
221 |
-
<button class="btn-primary w-full py-2 rounded-lg">Experimentar</button>
|
222 |
</div>
|
|
|
223 |
|
224 |
-
|
225 |
-
|
226 |
-
|
|
|
|
|
|
|
227 |
</div>
|
228 |
-
<
|
229 |
-
<p class="text-gray-600 mb-4">Traduções profissionais em tempo real.</p>
|
230 |
-
<button class="btn-primary w-full py-2 rounded-lg">Experimentar</button>
|
231 |
</div>
|
|
|
232 |
|
233 |
-
|
234 |
-
|
235 |
-
|
|
|
|
|
|
|
236 |
</div>
|
237 |
-
<
|
238 |
-
<p class="text-gray-600 mb-4">Gere resumos concisos e precisos.</p>
|
239 |
-
<button class="btn-primary w-full py-2 rounded-lg">Experimentar</button>
|
240 |
</div>
|
241 |
</div>
|
242 |
-
|
243 |
-
<footer class="glass-effect rounded-xl p-8 text-center">
|
244 |
-
<h3 class="text-2xl font-bold mb-4">Como Citar</h3>
|
245 |
-
<div class="bg-white/50 p-4 rounded-lg inline-block">
|
246 |
-
<code class="text-sm">
|
247 |
-
Santos, D. (2024). IA Toolbox Hub [Software]. Hugging Face Spaces.
|
248 |
-
</code>
|
249 |
-
<button class="ml-2 text-blue-500 hover:text-blue-600"
|
250 |
-
onclick="navigator.clipboard.writeText('Santos, D. (2024). IA Toolbox Hub [Software]. Hugging Face Spaces.')">
|
251 |
-
<i class="far fa-copy"></i>
|
252 |
-
</button>
|
253 |
-
</div>
|
254 |
-
</footer>
|
255 |
</div>
|
|
|
|
|
|
|
|
|
256 |
</main>
|
257 |
</body>
|
258 |
</html>
|
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>IA Toolbox Hub</title>
|
|
|
7 |
<script src="https://cdnjs.cloudflare.com/ajax/libs/alpinejs/2.8.2/alpine.js"></script>
|
8 |
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/js/all.min.js"></script>
|
9 |
<style>
|
10 |
:root {
|
11 |
+
--primary: #1DA1F2;
|
12 |
+
--primary-dark: #1A8CD8;
|
13 |
+
--background: #15202B;
|
14 |
+
--text: #FFFFFF;
|
15 |
+
--text-secondary: #8899A6;
|
16 |
+
--border: #38444D;
|
|
|
|
|
17 |
}
|
18 |
|
19 |
body {
|
20 |
+
font-family: -apple-system, system-ui, sans-serif;
|
21 |
+
background: var(--background);
|
22 |
+
color: var(--text);
|
23 |
+
margin: 0;
|
24 |
line-height: 1.5;
|
|
|
|
|
|
|
25 |
}
|
26 |
|
27 |
+
.nav-fixed {
|
28 |
+
background: rgba(21, 32, 43, 0.9);
|
29 |
+
backdrop-filter: blur(12px);
|
30 |
+
border-bottom: 1px solid var(--border);
|
31 |
}
|
32 |
|
33 |
+
.btn-twitter {
|
34 |
+
background: var(--primary);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
color: white;
|
36 |
+
transition: background 0.2s;
|
37 |
+
font-weight: 600;
|
|
|
38 |
}
|
39 |
|
40 |
+
.btn-twitter:hover {
|
41 |
background: var(--primary-dark);
|
42 |
}
|
43 |
|
44 |
+
.card {
|
45 |
+
background: rgba(255, 255, 255, 0.05);
|
46 |
+
border: 1px solid var(--border);
|
47 |
+
transition: background 0.2s;
|
|
|
|
|
|
|
|
|
|
|
48 |
}
|
49 |
|
50 |
+
.card:hover {
|
51 |
+
background: rgba(255, 255, 255, 0.08);
|
52 |
}
|
53 |
|
54 |
+
.profile-image {
|
55 |
+
border: 4px solid var(--primary);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
}
|
57 |
|
58 |
+
.verified {
|
59 |
+
color: var(--primary);
|
|
|
|
|
60 |
}
|
61 |
</style>
|
62 |
</head>
|
63 |
+
<body class="min-h-screen">
|
64 |
+
<nav class="nav-fixed w-full z-50 py-3">
|
65 |
+
<div class="container mx-auto px-4 flex items-center justify-between">
|
66 |
+
<span class="text-2xl font-bold text-blue-400">IA Toolbox</span>
|
67 |
+
<button class="btn-twitter px-6 py-2 rounded-full">Conectar</button>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
</div>
|
69 |
</nav>
|
70 |
|
71 |
+
<main class="container mx-auto px-4 pt-20 max-w-3xl">
|
72 |
+
<div class="card rounded-xl p-6 mb-8">
|
73 |
+
<div class="flex items-start space-x-4">
|
74 |
+
<img src="https://media.licdn.com/dms/image/v2/D4D03AQE-v0C-qPJakQ/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1731926431165?e=1737590400&v=beta&t=rTBD9bV8vOPCkmR5AXGZgQdH-7mbogEXZzCyO4Hiwr0"
|
75 |
+
alt="Dheiver Santos"
|
76 |
+
class="profile-image w-20 h-20 rounded-full"/>
|
77 |
+
<div>
|
78 |
+
<div class="flex items-center space-x-2">
|
79 |
+
<h2 class="text-xl font-bold">Dheiver Santos, PhD</h2>
|
80 |
+
<i class="fas fa-check-circle verified"></i>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
</div>
|
82 |
+
<p class="text-text-secondary">@IAToolbox</p>
|
83 |
+
<div class="mt-2 space-y-1 text-sm text-text-secondary">
|
84 |
+
<div class="flex items-center space-x-2">
|
85 |
+
<i class="fas fa-graduation-cap"></i>
|
86 |
+
<span>Doutor em IA/AM</span>
|
87 |
+
</div>
|
88 |
+
<div class="flex items-center space-x-2">
|
89 |
+
<i class="fas fa-star"></i>
|
90 |
+
<span>200+ Artigos • 50k+ Leitores • 300+ Citações</span>
|
|
|
|
|
91 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
</div>
|
93 |
</div>
|
94 |
</div>
|
95 |
+
</div>
|
96 |
|
97 |
+
<div class="grid grid-cols-1 gap-4">
|
98 |
+
<div x-data="{ open: false }" class="card rounded-xl p-6 cursor-pointer" @click="open = !open">
|
99 |
+
<div class="flex items-center space-x-4">
|
100 |
+
<i class="fas fa-microphone text-blue-400 text-2xl"></i>
|
101 |
+
<div class="flex-1">
|
102 |
+
<h3 class="font-bold">Transcrição de Áudio</h3>
|
103 |
+
<p x-show="open" class="mt-2 text-text-secondary">Converta áudio em texto com alta precisão usando IA avançada.</p>
|
104 |
</div>
|
105 |
+
<i class="fas fa-chevron-right text-text-secondary"></i>
|
|
|
|
|
106 |
</div>
|
107 |
+
</div>
|
108 |
|
109 |
+
<div x-data="{ open: false }" class="card rounded-xl p-6 cursor-pointer" @click="open = !open">
|
110 |
+
<div class="flex items-center space-x-4">
|
111 |
+
<i class="fas fa-language text-blue-400 text-2xl"></i>
|
112 |
+
<div class="flex-1">
|
113 |
+
<h3 class="font-bold">Tradução Neural</h3>
|
114 |
+
<p x-show="open" class="mt-2 text-text-secondary">Traduções precisas entre múltiplos idiomas em tempo real.</p>
|
115 |
</div>
|
116 |
+
<i class="fas fa-chevron-right text-text-secondary"></i>
|
|
|
|
|
117 |
</div>
|
118 |
+
</div>
|
119 |
|
120 |
+
<div x-data="{ open: false }" class="card rounded-xl p-6 cursor-pointer" @click="open = !open">
|
121 |
+
<div class="flex items-center space-x-4">
|
122 |
+
<i class="fas fa-robot text-blue-400 text-2xl"></i>
|
123 |
+
<div class="flex-1">
|
124 |
+
<h3 class="font-bold">Chat IA</h3>
|
125 |
+
<p x-show="open" class="mt-2 text-text-secondary">Interaja com um assistente virtual avançado.</p>
|
126 |
</div>
|
127 |
+
<i class="fas fa-chevron-right text-text-secondary"></i>
|
|
|
|
|
128 |
</div>
|
129 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
</div>
|
131 |
+
|
132 |
+
<footer class="mt-8 py-4 text-center text-sm text-text-secondary">
|
133 |
+
<p>© 2024 IA Toolbox Hub • Citação: Santos, D. (2024)</p>
|
134 |
+
</footer>
|
135 |
</main>
|
136 |
</body>
|
137 |
</html>
|