DHEIVER commited on
Commit
3f2bf77
·
verified ·
1 Parent(s): 198d92d

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +223 -99
index.html CHANGED
@@ -7,128 +7,252 @@
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
  </head>
11
- <body class="bg-gradient-to-br from-gray-100 to-blue-50 min-h-screen">
12
- <nav class="bg-white shadow-lg">
13
- <div class="container mx-auto px-6 py-3">
14
  <div class="flex items-center justify-between">
15
- <div class="text-xl font-bold text-gray-800">IA Toolbox Hub</div>
16
  <div class="hidden md:flex space-x-8">
17
- <a href="#features" class="text-gray-600 hover:text-blue-500 transition">Recursos</a>
18
- <a href="#about" class="text-gray-600 hover:text-blue-500 transition">Sobre</a>
19
- <a href="#contact" class="text-gray-600 hover:text-blue-500 transition">Contato</a>
 
20
  </div>
21
  </div>
22
  </div>
23
  </nav>
24
 
25
- <div class="container mx-auto px-4 py-12">
26
- <header class="text-center mb-16">
27
- <h1 class="text-5xl font-bold text-gray-800 mb-4">IA Toolbox Hub</h1>
28
- <p class="text-xl text-gray-600 max-w-2xl mx-auto">Uma plataforma inteligente que revoluciona o processamento de linguagem natural através de tecnologias de ponta</p>
29
- </header>
 
30
 
31
- <div x-data="{ activeTab: 'profile' }" class="bg-white rounded-lg shadow-xl p-8 mb-16">
32
- <div class="flex space-x-4 mb-8">
33
- <button @click="activeTab = 'profile'" :class="{ 'bg-blue-500 text-white': activeTab === 'profile' }" class="px-4 py-2 rounded-lg transition">Perfil</button>
34
- <button @click="activeTab = 'stats'" :class="{ 'bg-blue-500 text-white': activeTab === 'stats' }" class="px-4 py-2 rounded-lg transition">Estatísticas</button>
35
- </div>
 
 
 
 
 
 
 
 
36
 
37
- <div x-show="activeTab === 'profile'" class="flex flex-col md:flex-row items-center">
38
- <div class="md:w-1/3 mb-6 md:mb-0 relative">
39
- <img src="/api/placeholder/96/96" alt="Dheiver Santos" class="rounded-full mx-auto w-24 h-24 object-cover ring-4 ring-blue-500"/>
40
- <div class="absolute -bottom-2 -right-2 bg-blue-500 text-white p-2 rounded-full">
41
- <i class="fas fa-check"></i>
42
  </div>
43
- </div>
44
- <div class="md:w-2/3 md:pl-8">
45
- <h2 class="text-3xl font-bold mb-4">Dheiver Santos, PhD</h2>
46
- <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
47
- <div class="flex items-center space-x-2">
48
- <i class="fas fa-graduation-cap text-blue-500"></i>
49
- <span>Doutor em IA/AM</span>
50
- </div>
51
- <div class="flex items-center space-x-2">
52
- <i class="fas fa-star text-blue-500"></i>
53
- <span>Especialista em IA de Voz/IA Generativa</span>
54
- </div>
55
- <div class="flex items-center space-x-2">
56
- <i class="fas fa-book text-blue-500"></i>
57
- <span>30 eBooks Publicados</span>
58
- </div>
59
- <div class="flex items-center space-x-2">
60
- <i class="fas fa-trophy text-blue-500"></i>
61
- <span>Titular de Patente INPI</span>
62
  </div>
63
  </div>
64
  </div>
65
- </div>
66
 
67
- <div x-show="activeTab === 'stats'" class="grid grid-cols-1 md:grid-cols-3 gap-6">
68
- <div class="bg-blue-50 p-6 rounded-lg text-center">
69
- <div class="text-4xl font-bold text-blue-500 mb-2">200+</div>
70
- <div class="text-gray-600">Artigos Publicados</div>
71
- </div>
72
- <div class="bg-blue-50 p-6 rounded-lg text-center">
73
- <div class="text-4xl font-bold text-blue-500 mb-2">50k+</div>
74
- <div class="text-gray-600">Leitores</div>
75
- </div>
76
- <div class="bg-blue-50 p-6 rounded-lg text-center">
77
- <div class="text-4xl font-bold text-blue-500 mb-2">300+</div>
78
- <div class="text-gray-600">Citações</div>
 
79
  </div>
80
  </div>
81
- </div>
82
 
83
- <div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-16">
84
- <div x-data="{ hover: false }" @mouseenter="hover = true" @mouseleave="hover = false"
85
- class="bg-white rounded-lg shadow-lg p-6 transform transition-all duration-300 hover:scale-105">
86
- <div class="text-blue-500 text-3xl mb-4">
87
- <i class="fas fa-microphone"></i>
 
 
 
88
  </div>
89
- <h3 class="text-xl font-bold mb-4">Transcrição de Áudio</h3>
90
- <p class="text-gray-600 mb-4">Converta áudio em texto com alta precisão usando modelos state-of-the-art.</p>
91
- <button class="bg-blue-500 text-white px-4 py-2 rounded-lg w-full transition hover:bg-blue-600">
92
- Experimentar
93
- </button>
94
- </div>
95
-
96
- <div x-data="{ hover: false }" @mouseenter="hover = true" @mouseleave="hover = false"
97
- class="bg-white rounded-lg shadow-lg p-6 transform transition-all duration-300 hover:scale-105">
98
- <div class="text-blue-500 text-3xl mb-4">
99
- <i class="fas fa-language"></i>
100
  </div>
101
- <h3 class="text-xl font-bold mb-4">Tradução</h3>
102
- <p class="text-gray-600 mb-4">Traduza textos entre português e inglês com qualidade profissional.</p>
103
- <button class="bg-blue-500 text-white px-4 py-2 rounded-lg w-full transition hover:bg-blue-600">
104
- Experimentar
105
- </button>
106
- </div>
107
 
108
- <div x-data="{ hover: false }" @mouseenter="hover = true" @mouseleave="hover = false"
109
- class="bg-white rounded-lg shadow-lg p-6 transform transition-all duration-300 hover:scale-105">
110
- <div class="text-blue-500 text-3xl mb-4">
111
- <i class="fas fa-file-alt"></i>
 
 
 
112
  </div>
113
- <h3 class="text-xl font-bold mb-4">Resumo</h3>
114
- <p class="text-gray-600 mb-4">Gere resumos concisos mantendo as informações essenciais do texto.</p>
115
- <button class="bg-blue-500 text-white px-4 py-2 rounded-lg w-full transition hover:bg-blue-600">
116
- Experimentar
117
- </button>
118
  </div>
119
- </div>
120
 
121
- <footer class="bg-white rounded-lg shadow-lg p-8 text-center">
122
- <h3 class="text-2xl font-bold mb-4">Como Citar</h3>
123
- <div class="bg-gray-50 p-4 rounded-lg inline-block">
124
- <code class="text-sm">
125
- Santos, D. (2024). IA Toolbox Hub [Software]. Hugging Face Spaces.
126
- </code>
127
- <button class="ml-2 text-blue-500 hover:text-blue-600" onclick="navigator.clipboard.writeText('Santos, D. (2024). IA Toolbox Hub [Software]. Hugging Face Spaces.')">
128
- <i class="far fa-copy"></i>
129
- </button>
130
- </div>
131
- </footer>
132
- </div>
 
 
133
  </body>
134
  </html>
 
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;
14
+ --secondary-color: #1F2937;
15
+ --accent-color: #60A5FA;
16
+ --background-light: #F3F4F6;
17
+ --text-primary: #1F2937;
18
+ --text-secondary: #4B5563;
19
+ --transition-speed: 0.3s;
20
+ }
21
+
22
+ body {
23
+ font-family: 'Inter', system-ui, -apple-system, sans-serif;
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
+ @keyframes fadeIn {
31
+ from { opacity: 0; transform: translateY(20px); }
32
+ to { opacity: 1; transform: translateY(0); }
33
+ }
34
+
35
+ @keyframes pulseGlow {
36
+ 0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5); }
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: all var(--transition-speed);
89
+ position: relative;
90
+ overflow: hidden;
91
+ }
92
+
93
+ .btn-primary:hover {
94
+ background: var(--primary-dark);
95
+ }
96
+
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 {
136
+ background: rgba(255, 255, 255, 0.7);
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 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>