Spaces:
Running
Running
Update index.html
Browse files- index.html +92 -409
index.html
CHANGED
@@ -4,10 +4,10 @@
|
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>IA Toolbox Hub - Dheiver Santos</title>
|
7 |
-
<
|
8 |
<script src="https://cdnjs.cloudflare.com/ajax/libs/alpinejs/2.8.2/alpine.js"></script>
|
|
|
9 |
<style>
|
10 |
-
/* Custom Properties */
|
11 |
:root {
|
12 |
--primary-color: #3B82F6;
|
13 |
--primary-dark: #2563EB;
|
@@ -19,13 +19,6 @@
|
|
19 |
--transition-speed: 0.3s;
|
20 |
}
|
21 |
|
22 |
-
/* Global Styles */
|
23 |
-
* {
|
24 |
-
margin: 0;
|
25 |
-
padding: 0;
|
26 |
-
box-sizing: border-box;
|
27 |
-
}
|
28 |
-
|
29 |
body {
|
30 |
font-family: 'Inter', system-ui, -apple-system, sans-serif;
|
31 |
line-height: 1.5;
|
@@ -34,7 +27,6 @@
|
|
34 |
min-height: 100vh;
|
35 |
}
|
36 |
|
37 |
-
/* Animations */
|
38 |
@keyframes fadeIn {
|
39 |
from { opacity: 0; transform: translateY(20px); }
|
40 |
to { opacity: 1; transform: translateY(0); }
|
@@ -46,67 +38,20 @@
|
|
46 |
100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
|
47 |
}
|
48 |
|
49 |
-
@keyframes slide {
|
50 |
-
from { transform: translateX(-100%); }
|
51 |
-
to { transform: translateX(100%); }
|
52 |
-
}
|
53 |
-
|
54 |
-
/* Layout Components */
|
55 |
-
.container {
|
56 |
-
width: 100%;
|
57 |
-
max-width: 1200px;
|
58 |
-
margin: 0 auto;
|
59 |
-
padding: 0 1rem;
|
60 |
-
}
|
61 |
-
|
62 |
-
/* Navigation */
|
63 |
-
.nav-fixed {
|
64 |
-
position: fixed;
|
65 |
-
top: 0;
|
66 |
-
left: 0;
|
67 |
-
right: 0;
|
68 |
-
z-index: 1000;
|
69 |
-
background: rgba(255, 255, 255, 0.9);
|
70 |
-
backdrop-filter: blur(10px);
|
71 |
-
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
72 |
-
}
|
73 |
-
|
74 |
-
.nav-container {
|
75 |
-
display: flex;
|
76 |
-
justify-content: space-between;
|
77 |
-
align-items: center;
|
78 |
-
padding: 1rem;
|
79 |
-
}
|
80 |
-
|
81 |
-
.nav-logo {
|
82 |
-
font-size: 1.5rem;
|
83 |
-
font-weight: bold;
|
84 |
-
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
|
85 |
-
-webkit-background-clip: text;
|
86 |
-
-webkit-text-fill-color: transparent;
|
87 |
-
}
|
88 |
-
|
89 |
-
.nav-links {
|
90 |
-
display: flex;
|
91 |
-
gap: 2rem;
|
92 |
-
align-items: center;
|
93 |
-
}
|
94 |
-
|
95 |
.nav-link {
|
96 |
-
color: var(--text-secondary);
|
97 |
-
text-decoration: none;
|
98 |
position: relative;
|
99 |
-
|
|
|
100 |
}
|
101 |
|
102 |
.nav-link::after {
|
103 |
content: '';
|
104 |
position: absolute;
|
105 |
-
bottom: 0;
|
106 |
-
left: 0;
|
107 |
width: 0;
|
108 |
height: 2px;
|
109 |
-
|
|
|
|
|
110 |
transition: width var(--transition-speed);
|
111 |
}
|
112 |
|
@@ -114,113 +59,33 @@
|
|
114 |
width: 100%;
|
115 |
}
|
116 |
|
117 |
-
|
118 |
-
.header {
|
119 |
-
padding-top: 6rem;
|
120 |
-
text-align: center;
|
121 |
-
margin-bottom: 4rem;
|
122 |
-
}
|
123 |
-
|
124 |
-
.header-title {
|
125 |
-
font-size: 3rem;
|
126 |
-
font-weight: bold;
|
127 |
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
|
128 |
-webkit-background-clip: text;
|
129 |
-webkit-text-fill-color: transparent;
|
130 |
animation: fadeIn 1s ease-out;
|
131 |
}
|
132 |
|
133 |
-
.header-subtitle {
|
134 |
-
font-size: 1.25rem;
|
135 |
-
color: var(--text-secondary);
|
136 |
-
max-width: 600px;
|
137 |
-
margin: 1rem auto;
|
138 |
-
}
|
139 |
-
|
140 |
-
/* Profile Section */
|
141 |
-
.profile-card {
|
142 |
-
background: rgba(255, 255, 255, 0.9);
|
143 |
-
backdrop-filter: blur(10px);
|
144 |
-
border-radius: 1rem;
|
145 |
-
padding: 2rem;
|
146 |
-
margin-bottom: 4rem;
|
147 |
-
}
|
148 |
-
|
149 |
-
.profile-image-container {
|
150 |
-
position: relative;
|
151 |
-
width: fit-content;
|
152 |
-
margin: 0 auto;
|
153 |
-
}
|
154 |
-
|
155 |
-
.profile-image {
|
156 |
-
width: 128px;
|
157 |
-
height: 128px;
|
158 |
-
border-radius: 50%;
|
159 |
-
object-fit: cover;
|
160 |
-
border: 4px solid var(--primary-color);
|
161 |
-
animation: pulseGlow 2s infinite;
|
162 |
-
transition: transform var(--transition-speed);
|
163 |
-
}
|
164 |
-
|
165 |
-
.profile-image:hover {
|
166 |
-
transform: scale(1.05);
|
167 |
-
}
|
168 |
-
|
169 |
-
.verified-badge {
|
170 |
-
position: absolute;
|
171 |
-
bottom: -5px;
|
172 |
-
right: -5px;
|
173 |
-
background: var(--primary-color);
|
174 |
-
color: white;
|
175 |
-
padding: 0.5rem;
|
176 |
-
border-radius: 50%;
|
177 |
-
font-size: 0.875rem;
|
178 |
-
}
|
179 |
-
|
180 |
-
/* Feature Cards */
|
181 |
-
.features-grid {
|
182 |
-
display: grid;
|
183 |
-
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
184 |
-
gap: 2rem;
|
185 |
-
margin-bottom: 4rem;
|
186 |
-
}
|
187 |
-
|
188 |
.feature-card {
|
|
|
189 |
background: rgba(255, 255, 255, 0.9);
|
190 |
backdrop-filter: blur(10px);
|
191 |
-
border-radius: 1rem;
|
192 |
-
padding: 2rem;
|
193 |
-
transition: all var(--transition-speed);
|
194 |
}
|
195 |
|
196 |
.feature-card:hover {
|
197 |
transform: translateY(-10px);
|
198 |
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
|
199 |
-
|
200 |
}
|
201 |
|
202 |
-
.
|
203 |
-
|
204 |
-
color: var(--primary-color);
|
205 |
-
margin-bottom: 1rem;
|
206 |
-
}
|
207 |
-
|
208 |
-
/* Buttons */
|
209 |
-
.btn {
|
210 |
-
display: inline-block;
|
211 |
-
padding: 0.75rem 1.5rem;
|
212 |
-
border-radius: 0.5rem;
|
213 |
-
font-weight: 600;
|
214 |
-
text-decoration: none;
|
215 |
-
transition: all var(--transition-speed);
|
216 |
-
cursor: pointer;
|
217 |
-
border: none;
|
218 |
-
outline: none;
|
219 |
}
|
220 |
|
221 |
.btn-primary {
|
222 |
background: var(--primary-color);
|
223 |
color: white;
|
|
|
224 |
position: relative;
|
225 |
overflow: hidden;
|
226 |
}
|
@@ -232,96 +97,39 @@
|
|
232 |
.btn-primary::after {
|
233 |
content: '';
|
234 |
position: absolute;
|
235 |
-
top: 0;
|
236 |
-
left: -100%;
|
237 |
width: 100%;
|
238 |
height: 100%;
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
transparent
|
244 |
-
);
|
245 |
-
animation: slide 1s infinite;
|
246 |
-
}
|
247 |
-
|
248 |
-
/* Stats Section */
|
249 |
-
.stats-grid {
|
250 |
-
display: grid;
|
251 |
-
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
252 |
-
gap: 2rem;
|
253 |
-
}
|
254 |
-
|
255 |
-
.stat-card {
|
256 |
-
background: rgba(255, 255, 255, 0.7);
|
257 |
-
padding: 1.5rem;
|
258 |
-
border-radius: 1rem;
|
259 |
-
text-align: center;
|
260 |
-
}
|
261 |
-
|
262 |
-
.stat-number {
|
263 |
-
font-size: 2.5rem;
|
264 |
-
font-weight: bold;
|
265 |
-
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
|
266 |
-
-webkit-background-clip: text;
|
267 |
-
-webkit-text-fill-color: transparent;
|
268 |
-
}
|
269 |
-
|
270 |
-
/* Footer */
|
271 |
-
.footer {
|
272 |
-
background: rgba(255, 255, 255, 0.9);
|
273 |
-
backdrop-filter: blur(10px);
|
274 |
-
border-radius: 1rem;
|
275 |
-
padding: 2rem;
|
276 |
-
text-align: center;
|
277 |
-
margin-top: 4rem;
|
278 |
-
}
|
279 |
-
|
280 |
-
.citation {
|
281 |
-
background: rgba(255, 255, 255, 0.5);
|
282 |
-
padding: 1rem;
|
283 |
-
border-radius: 0.5rem;
|
284 |
-
display: inline-block;
|
285 |
-
margin-top: 1rem;
|
286 |
}
|
287 |
|
288 |
-
.
|
289 |
-
|
290 |
-
border: none;
|
291 |
-
color: var(--primary-color);
|
292 |
-
cursor: pointer;
|
293 |
-
padding: 0.5rem;
|
294 |
-
transition: color var(--transition-speed);
|
295 |
}
|
296 |
|
297 |
-
.
|
298 |
-
|
|
|
299 |
}
|
300 |
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
}
|
314 |
-
|
315 |
-
.features-grid {
|
316 |
-
grid-template-columns: 1fr;
|
317 |
-
}
|
318 |
}
|
319 |
|
320 |
-
|
321 |
-
|
322 |
-
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
|
323 |
-
-webkit-background-clip: text;
|
324 |
-
-webkit-text-fill-color: transparent;
|
325 |
}
|
326 |
|
327 |
.glass-effect {
|
@@ -332,244 +140,119 @@
|
|
332 |
</style>
|
333 |
</head>
|
334 |
<body>
|
335 |
-
<nav class="
|
336 |
-
<div class="container
|
337 |
-
<div class="
|
338 |
-
|
339 |
-
<
|
340 |
-
|
341 |
-
|
342 |
-
|
|
|
|
|
343 |
</div>
|
344 |
</div>
|
345 |
</nav>
|
346 |
|
347 |
-
<main>
|
348 |
-
<div class="container">
|
349 |
-
<header class="
|
350 |
-
<h1 class="
|
351 |
-
<p class="
|
352 |
</header>
|
353 |
|
354 |
-
<div x-data="{ activeTab: 'profile' }" class="
|
355 |
<div class="flex space-x-4 mb-8">
|
356 |
<button @click="activeTab = 'profile'"
|
357 |
-
:class="{ '
|
358 |
-
class="
|
359 |
Perfil
|
360 |
</button>
|
361 |
<button @click="activeTab = 'stats'"
|
362 |
-
:class="{ '
|
363 |
-
class="
|
364 |
Estatísticas
|
365 |
</button>
|
366 |
</div>
|
367 |
|
368 |
-
<div x-show="activeTab === 'profile'"
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
<div class="profile-image-container">
|
373 |
-
<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"
|
374 |
-
alt="Dheiver Santos"
|
375 |
-
class="profile-image"/>
|
376 |
-
<div class="verified-badge">
|
377 |
-
<i class="fas fa-check"></i>
|
378 |
-
</div>
|
379 |
</div>
|
380 |
-
<div class="
|
381 |
-
<h2 class="text-
|
382 |
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
|
383 |
-
<div class="flex items-center
|
384 |
<i class="fas fa-graduation-cap text-blue-500"></i>
|
385 |
<span>Doutor em IA/AM</span>
|
386 |
</div>
|
387 |
-
<div class="flex items-center
|
388 |
<i class="fas fa-star text-blue-500"></i>
|
389 |
-
<span>Especialista em IA
|
390 |
-
</div>
|
391 |
-
<div class="flex items-center justify-center space-x-2">
|
392 |
-
<i class="fas fa-book text-blue-500"></i>
|
393 |
-
<span>30 eBooks Publicados</span>
|
394 |
-
</div>
|
395 |
-
<div class="flex items-center justify-center space-x-2">
|
396 |
-
<i class="fas fa-trophy text-blue-500"></i>
|
397 |
-
<span>Titular de Patente INPI</span>
|
398 |
</div>
|
399 |
</div>
|
400 |
</div>
|
401 |
</div>
|
402 |
|
403 |
-
<div x-show="activeTab === 'stats'"
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
class="stats-grid">
|
408 |
-
<div class="stat-card">
|
409 |
-
<div class="stat-number">200+</div>
|
410 |
-
<div>Artigos Publicados</div>
|
411 |
</div>
|
412 |
-
<div class="
|
413 |
-
<div class="
|
414 |
-
<div>Leitores</div>
|
415 |
</div>
|
416 |
-
<div class="
|
417 |
-
<div class="
|
418 |
-
<div>Citações</div>
|
419 |
</div>
|
420 |
</div>
|
421 |
</div>
|
422 |
|
423 |
-
<div class="
|
424 |
-
<div class="feature-card">
|
425 |
-
<div class="
|
426 |
-
<div class="feature-card">
|
427 |
-
<div class="feature-icon">
|
428 |
<i class="fas fa-microphone"></i>
|
429 |
</div>
|
430 |
<h3 class="text-xl font-bold mb-4">Transcrição de Áudio</h3>
|
431 |
-
<p class="text-gray-600 mb-4">Converta áudio em texto com alta precisão
|
432 |
-
<button class="btn
|
433 |
</div>
|
434 |
|
435 |
-
<div class="feature-card">
|
436 |
-
<div class="
|
437 |
<i class="fas fa-language"></i>
|
438 |
</div>
|
439 |
<h3 class="text-xl font-bold mb-4">Tradução</h3>
|
440 |
-
<p class="text-gray-600 mb-4">
|
441 |
-
<button class="btn
|
442 |
</div>
|
443 |
|
444 |
-
<div class="feature-card">
|
445 |
-
<div class="
|
446 |
<i class="fas fa-file-alt"></i>
|
447 |
</div>
|
448 |
<h3 class="text-xl font-bold mb-4">Resumo</h3>
|
449 |
-
<p class="text-gray-600 mb-4">Gere resumos concisos
|
450 |
-
<button class="btn
|
451 |
-
</div>
|
452 |
-
|
453 |
-
<div class="feature-card">
|
454 |
-
<div class="feature-icon">
|
455 |
-
<i class="fas fa-heart"></i>
|
456 |
-
</div>
|
457 |
-
<h3 class="text-xl font-bold mb-4">Análise de Sentimento</h3>
|
458 |
-
<p class="text-gray-600 mb-4">Identifique o tom emocional em textos com precisão.</p>
|
459 |
-
<button class="btn btn-primary w-full">Experimentar</button>
|
460 |
-
</div>
|
461 |
-
|
462 |
-
<div class="feature-card">
|
463 |
-
<div class="feature-icon">
|
464 |
-
<i class="fas fa-comments"></i>
|
465 |
-
</div>
|
466 |
-
<h3 class="text-xl font-bold mb-4">Perguntas e Respostas</h3>
|
467 |
-
<p class="text-gray-600 mb-4">Obtenha respostas precisas baseadas em contexto fornecido.</p>
|
468 |
-
<button class="btn btn-primary w-full">Experimentar</button>
|
469 |
-
</div>
|
470 |
-
|
471 |
-
<div class="feature-card">
|
472 |
-
<div class="feature-icon">
|
473 |
-
<i class="fas fa-robot"></i>
|
474 |
-
</div>
|
475 |
-
<h3 class="text-xl font-bold mb-4">Chat Interativo</h3>
|
476 |
-
<p class="text-gray-600 mb-4">Interaja com um assistente virtual inteligente e versátil.</p>
|
477 |
-
<button class="btn btn-primary w-full">Experimentar</button>
|
478 |
</div>
|
479 |
</div>
|
480 |
|
481 |
-
<
|
482 |
-
<h2 class="text-2xl font-bold mb-6 text-center">Métricas de Impacto</h2>
|
483 |
-
<div class="grid grid-cols-1 md:grid-cols-4 gap-6">
|
484 |
-
<div class="text-center">
|
485 |
-
<div class="text-3xl font-bold gradient-text">200+</div>
|
486 |
-
<div class="text-gray-600">Produtos de IA</div>
|
487 |
-
</div>
|
488 |
-
<div class="text-center">
|
489 |
-
<div class="text-3xl font-bold gradient-text">30</div>
|
490 |
-
<div class="text-gray-600">eBooks</div>
|
491 |
-
</div>
|
492 |
-
<div class="text-center">
|
493 |
-
<div class="text-3xl font-bold gradient-text">50k+</div>
|
494 |
-
<div class="text-gray-600">Leitores</div>
|
495 |
-
</div>
|
496 |
-
<div class="text-center">
|
497 |
-
<div class="text-3xl font-bold gradient-text">300+</div>
|
498 |
-
<div class="text-gray-600">Citações</div>
|
499 |
-
</div>
|
500 |
-
</div>
|
501 |
-
</div>
|
502 |
-
|
503 |
-
<footer class="footer">
|
504 |
<h3 class="text-2xl font-bold mb-4">Como Citar</h3>
|
505 |
-
<div class="
|
506 |
<code class="text-sm">
|
507 |
Santos, D. (2024). IA Toolbox Hub [Software]. Hugging Face Spaces.
|
508 |
</code>
|
509 |
-
<button class="
|
510 |
onclick="navigator.clipboard.writeText('Santos, D. (2024). IA Toolbox Hub [Software]. Hugging Face Spaces.')">
|
511 |
<i class="far fa-copy"></i>
|
512 |
</button>
|
513 |
</div>
|
514 |
-
|
515 |
-
<div class="mt-8 grid grid-cols-1 md:grid-cols-3 gap-8">
|
516 |
-
<div>
|
517 |
-
<h4 class="font-bold mb-4">Contato</h4>
|
518 |
-
<div class="space-y-2">
|
519 |
-
<a href="#" class="flex items-center justify-center space-x-2 text-gray-600 hover:text-blue-500 transition">
|
520 |
-
<i class="fab fa-linkedin"></i>
|
521 |
-
<span>LinkedIn</span>
|
522 |
-
</a>
|
523 |
-
<a href="#" class="flex items-center justify-center space-x-2 text-gray-600 hover:text-blue-500 transition">
|
524 |
-
<i class="fab fa-github"></i>
|
525 |
-
<span>GitHub</span>
|
526 |
-
</a>
|
527 |
-
</div>
|
528 |
-
</div>
|
529 |
-
<div>
|
530 |
-
<h4 class="font-bold mb-4">Recursos</h4>
|
531 |
-
<div class="space-y-2">
|
532 |
-
<a href="#" class="block text-gray-600 hover:text-blue-500 transition">Documentação</a>
|
533 |
-
<a href="#" class="block text-gray-600 hover:text-blue-500 transition">API</a>
|
534 |
-
</div>
|
535 |
-
</div>
|
536 |
-
<div>
|
537 |
-
<h4 class="font-bold mb-4">Legal</h4>
|
538 |
-
<div class="space-y-2">
|
539 |
-
<a href="#" class="block text-gray-600 hover:text-blue-500 transition">Termos de Uso</a>
|
540 |
-
<a href="#" class="block text-gray-600 hover:text-blue-500 transition">Privacidade</a>
|
541 |
-
</div>
|
542 |
-
</div>
|
543 |
-
</div>
|
544 |
-
|
545 |
-
<div class="mt-8 pt-8 border-t border-gray-200">
|
546 |
-
<p class="text-gray-600">© 2024 IA Toolbox Hub. Todos os direitos reservados.</p>
|
547 |
-
</div>
|
548 |
</footer>
|
549 |
</div>
|
550 |
</main>
|
551 |
-
|
552 |
-
<!-- Scripts -->
|
553 |
-
<script>
|
554 |
-
// Smooth scroll for navigation links
|
555 |
-
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
556 |
-
anchor.addEventListener('click', function (e) {
|
557 |
-
e.preventDefault();
|
558 |
-
document.querySelector(this.getAttribute('href')).scrollIntoView({
|
559 |
-
behavior: 'smooth'
|
560 |
-
});
|
561 |
-
});
|
562 |
-
});
|
563 |
-
|
564 |
-
// Add loading state to buttons
|
565 |
-
document.querySelectorAll('.btn-primary').forEach(button => {
|
566 |
-
button.addEventListener('click', function() {
|
567 |
-
this.classList.add('loading');
|
568 |
-
setTimeout(() => {
|
569 |
-
this.classList.remove('loading');
|
570 |
-
}, 2000);
|
571 |
-
});
|
572 |
-
});
|
573 |
-
</script>
|
574 |
</body>
|
575 |
-
</html>
|
|
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>IA Toolbox Hub - Dheiver Santos</title>
|
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-color: #3B82F6;
|
13 |
--primary-dark: #2563EB;
|
|
|
19 |
--transition-speed: 0.3s;
|
20 |
}
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
body {
|
23 |
font-family: 'Inter', system-ui, -apple-system, sans-serif;
|
24 |
line-height: 1.5;
|
|
|
27 |
min-height: 100vh;
|
28 |
}
|
29 |
|
|
|
30 |
@keyframes fadeIn {
|
31 |
from { opacity: 0; transform: translateY(20px); }
|
32 |
to { opacity: 1; transform: translateY(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 |
|
|
|
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: all var(--transition-speed);
|
89 |
position: relative;
|
90 |
overflow: hidden;
|
91 |
}
|
|
|
97 |
.btn-primary::after {
|
98 |
content: '';
|
99 |
position: absolute;
|
|
|
|
|
100 |
width: 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 |
+
.btn-primary:hover::after {
|
109 |
+
left: 100%;
|
|
|
|
|
|
|
|
|
|
|
110 |
}
|
111 |
|
112 |
+
.loading {
|
113 |
+
position: relative;
|
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 |
.glass-effect {
|
|
|
140 |
</style>
|
141 |
</head>
|
142 |
<body>
|
143 |
+
<nav class="fixed w-full z-50 glass-effect">
|
144 |
+
<div class="container mx-auto px-6 py-4">
|
145 |
+
<div class="flex items-center justify-between">
|
146 |
+
<div class="text-xl font-bold gradient-text">IA Toolbox Hub</div>
|
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="container mx-auto px-4 py-12">
|
159 |
+
<header class="text-center mb-16">
|
160 |
+
<h1 class="text-5xl font-bold gradient-text mb-4">IA Toolbox Hub</h1>
|
161 |
+
<p class="text-xl text-gray-600 max-w-2xl mx-auto">Revolucionando o processamento de linguagem natural</p>
|
162 |
</header>
|
163 |
|
164 |
+
<div x-data="{ activeTab: 'profile' }" class="glass-effect rounded-xl p-8 mb-16">
|
165 |
<div class="flex space-x-4 mb-8">
|
166 |
<button @click="activeTab = 'profile'"
|
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 |
+
<div class="md:w-2/3 md:pl-8">
|
184 |
+
<h2 class="text-3xl font-bold mb-4">Dheiver Santos, PhD</h2>
|
185 |
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
|
186 |
+
<div class="flex items-center space-x-2">
|
187 |
<i class="fas fa-graduation-cap text-blue-500"></i>
|
188 |
<span>Doutor em IA/AM</span>
|
189 |
</div>
|
190 |
+
<div class="flex items-center space-x-2">
|
191 |
<i class="fas fa-star text-blue-500"></i>
|
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 |
+
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-16">
|
215 |
+
<div class="feature-card rounded-xl p-6">
|
216 |
+
<div class="text-blue-500 text-3xl mb-4">
|
|
|
|
|
217 |
<i class="fas fa-microphone"></i>
|
218 |
</div>
|
219 |
<h3 class="text-xl font-bold mb-4">Transcrição de Áudio</h3>
|
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 |
+
<div class="feature-card rounded-xl p-6">
|
225 |
+
<div class="text-blue-500 text-3xl mb-4">
|
226 |
<i class="fas fa-language"></i>
|
227 |
</div>
|
228 |
<h3 class="text-xl font-bold mb-4">Tradução</h3>
|
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 |
+
<div class="feature-card rounded-xl p-6">
|
234 |
+
<div class="text-blue-500 text-3xl mb-4">
|
235 |
<i class="fas fa-file-alt"></i>
|
236 |
</div>
|
237 |
<h3 class="text-xl font-bold mb-4">Resumo</h3>
|
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>
|