DHEIVER commited on
Commit
0cee204
·
verified ·
1 Parent(s): ce208c8

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +91 -37
index.html CHANGED
@@ -8,12 +8,14 @@
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 {
@@ -25,7 +27,7 @@
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
  }
@@ -33,61 +35,83 @@
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>
@@ -95,43 +119,73 @@
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>
 
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: #1d9bf0;
12
+ --primary-dark: #1a8cd8;
13
+ --background: #ffffff;
14
+ --card-bg: #f7f9f9;
15
+ --text: #0f1419;
16
+ --text-secondary: #536471;
17
+ --border: #eff3f4;
18
+ --hover: #e8f5fd;
19
  }
20
 
21
  body {
 
27
  }
28
 
29
  .nav-fixed {
30
+ background: rgba(255, 255, 255, 0.95);
31
  backdrop-filter: blur(12px);
32
  border-bottom: 1px solid var(--border);
33
  }
 
35
  .btn-twitter {
36
  background: var(--primary);
37
  color: white;
38
+ transition: all 0.2s;
39
  font-weight: 600;
40
  }
41
 
42
  .btn-twitter:hover {
43
  background: var(--primary-dark);
44
+ transform: scale(1.05);
45
  }
46
 
47
  .card {
48
+ background: var(--card-bg);
49
  border: 1px solid var(--border);
50
+ transition: all 0.2s;
51
  }
52
 
53
  .card:hover {
54
+ background: var(--hover);
55
+ transform: translateY(-2px);
56
  }
57
 
58
  .profile-image {
59
  border: 4px solid var(--primary);
60
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
61
  }
62
 
63
  .verified {
64
  color: var(--primary);
65
  }
66
+
67
+ .stat-number {
68
+ color: var(--text);
69
+ font-weight: 700;
70
+ }
71
+
72
+ .stat-label {
73
+ color: var(--text-secondary);
74
+ }
75
  </style>
76
  </head>
77
  <body class="min-h-screen">
78
  <nav class="nav-fixed w-full z-50 py-3">
79
  <div class="container mx-auto px-4 flex items-center justify-between">
80
+ <span class="text-2xl font-bold text-primary">IA Toolbox</span>
81
  <button class="btn-twitter px-6 py-2 rounded-full">Conectar</button>
82
  </div>
83
  </nav>
84
 
85
  <main class="container mx-auto px-4 pt-20 max-w-3xl">
86
+ <div class="card rounded-xl p-6 mb-8 shadow-sm">
87
  <div class="flex items-start space-x-4">
88
  <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"
89
  alt="Dheiver Santos"
90
+ class="profile-image w-24 h-24 rounded-full"/>
91
+ <div class="flex-1">
92
  <div class="flex items-center space-x-2">
93
+ <h2 class="text-xl font-bold text-text">Dheiver Santos, PhD</h2>
94
  <i class="fas fa-check-circle verified"></i>
95
  </div>
96
+ <p class="text-text-secondary font-medium">@IAToolbox</p>
97
+ <div class="mt-3 space-y-2">
98
+ <div class="flex items-center space-x-2 text-text-secondary">
99
+ <i class="fas fa-graduation-cap text-primary"></i>
100
  <span>Doutor em IA/AM</span>
101
  </div>
102
+ <div class="flex flex-wrap gap-4 mt-2">
103
+ <span>
104
+ <span class="stat-number">200+</span>
105
+ <span class="stat-label"> Artigos</span>
106
+ </span>
107
+ <span>
108
+ <span class="stat-number">50k+</span>
109
+ <span class="stat-label"> Leitores</span>
110
+ </span>
111
+ <span>
112
+ <span class="stat-number">300+</span>
113
+ <span class="stat-label"> Citações</span>
114
+ </span>
115
  </div>
116
  </div>
117
  </div>
 
119
  </div>
120
 
121
  <div class="grid grid-cols-1 gap-4">
122
+ <div x-data="{ open: false }"
123
+ class="card rounded-xl p-6 shadow-sm hover:shadow-md cursor-pointer"
124
+ @click="open = !open">
125
  <div class="flex items-center space-x-4">
126
+ <div class="bg-blue-50 p-3 rounded-full">
127
+ <i class="fas fa-microphone text-primary text-xl"></i>
128
+ </div>
129
  <div class="flex-1">
130
+ <h3 class="font-bold text-text">Transcrição de Áudio</h3>
131
+ <p x-show="open"
132
+ x-transition:enter="transition ease-out duration-200"
133
+ x-transition:enter-start="opacity-0 transform -translate-y-4"
134
+ x-transition:enter-end="opacity-100 transform translate-y-0"
135
+ class="mt-2 text-text-secondary">
136
+ Converta áudio em texto com alta precisão usando IA avançada
137
+ </p>
138
  </div>
139
  <i class="fas fa-chevron-right text-text-secondary"></i>
140
  </div>
141
  </div>
142
 
143
+ <div x-data="{ open: false }"
144
+ class="card rounded-xl p-6 shadow-sm hover:shadow-md cursor-pointer"
145
+ @click="open = !open">
146
  <div class="flex items-center space-x-4">
147
+ <div class="bg-blue-50 p-3 rounded-full">
148
+ <i class="fas fa-language text-primary text-xl"></i>
149
+ </div>
150
  <div class="flex-1">
151
+ <h3 class="font-bold text-text">Tradução Neural</h3>
152
+ <p x-show="open"
153
+ x-transition:enter="transition ease-out duration-200"
154
+ x-transition:enter-start="opacity-0 transform -translate-y-4"
155
+ x-transition:enter-end="opacity-100 transform translate-y-0"
156
+ class="mt-2 text-text-secondary">
157
+ Traduções precisas entre múltiplos idiomas em tempo real
158
+ </p>
159
  </div>
160
  <i class="fas fa-chevron-right text-text-secondary"></i>
161
  </div>
162
  </div>
163
 
164
+ <div x-data="{ open: false }"
165
+ class="card rounded-xl p-6 shadow-sm hover:shadow-md cursor-pointer"
166
+ @click="open = !open">
167
  <div class="flex items-center space-x-4">
168
+ <div class="bg-blue-50 p-3 rounded-full">
169
+ <i class="fas fa-robot text-primary text-xl"></i>
170
+ </div>
171
  <div class="flex-1">
172
+ <h3 class="font-bold text-text">Chat IA</h3>
173
+ <p x-show="open"
174
+ x-transition:enter="transition ease-out duration-200"
175
+ x-transition:enter-start="opacity-0 transform -translate-y-4"
176
+ x-transition:enter-end="opacity-100 transform translate-y-0"
177
+ class="mt-2 text-text-secondary">
178
+ Interaja com um assistente virtual avançado
179
+ </p>
180
  </div>
181
  <i class="fas fa-chevron-right text-text-secondary"></i>
182
  </div>
183
  </div>
184
  </div>
185
 
186
+ <footer class="mt-8 py-4 text-center text-sm text-text-secondary border-t border-border">
187
  <p>© 2024 IA Toolbox Hub • Citação: Santos, D. (2024)</p>
188
  </footer>
189
  </main>
190
  </body>
191
+ </html>