Hamsy commited on
Commit
2dcf8fb
·
verified ·
1 Parent(s): 202ff58

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +599 -599
index.html CHANGED
@@ -1,600 +1,600 @@
1
- <!DOCTYPE html>
2
- <html lang="fr">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Mory Hamidou Sylla - Portfolio</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
- scroll-behavior: smooth;
15
- }
16
-
17
- .gradient-bg {
18
- background: linear-gradient(135deg, #4f46e5 0%, #10b981 100%);
19
- }
20
-
21
- .project-card:hover {
22
- transform: translateY(-5px);
23
- box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
24
- }
25
-
26
- .skill-badge {
27
- transition: all 0.3s ease;
28
- }
29
-
30
- .skill-badge:hover {
31
- transform: scale(1.05);
32
- }
33
-
34
- .nav-link {
35
- position: relative;
36
- }
37
-
38
- .nav-link::after {
39
- content: '';
40
- position: absolute;
41
- width: 0;
42
- height: 2px;
43
- bottom: 0;
44
- left: 0;
45
- background-color: #4f46e5;
46
- transition: width 0.3s ease;
47
- }
48
-
49
- .nav-link:hover::after {
50
- width: 100%;
51
- }
52
-
53
- .profile-img {
54
- border: 5px solid white;
55
- box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
56
- }
57
- </style>
58
- </head>
59
- <body class="bg-gray-50">
60
- <!-- Navigation -->
61
- <nav class="bg-white shadow-md sticky top-0 z-50">
62
- <div class="container mx-auto px-6 py-3">
63
- <div class="flex justify-between items-center">
64
- <div class="text-2xl font-bold text-indigo-600">Mory Hamidou Sylla</div>
65
- <div class="hidden md:flex space-x-8">
66
- <a href="#about" class="nav-link text-gray-700 hover:text-indigo-600">Présentation</a>
67
- <a href="#education" class="nav-link text-gray-700 hover:text-indigo-600">Formation</a>
68
- <a href="#experience" class="nav-link text-gray-700 hover:text-indigo-600">Expérience</a>
69
- <a href="#skills" class="nav-link text-gray-700 hover:text-indigo-600">Compétences</a>
70
- <a href="#projects" class="nav-link text-gray-700 hover:text-indigo-600">Projets</a>
71
- <a href="#contact" class="nav-link text-gray-700 hover:text-indigo-600">Contact</a>
72
- </div>
73
- <button class="md:hidden focus:outline-none" id="menu-toggle">
74
- <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
75
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
76
- </svg>
77
- </button>
78
- </div>
79
- <div class="md:hidden hidden mt-2" id="mobile-menu">
80
- <a href="#about" class="block py-2 text-gray-700 hover:text-indigo-600">Présentation</a>
81
- <a href="#education" class="block py-2 text-gray-700 hover:text-indigo-600">Formation</a>
82
- <a href="#experience" class="block py-2 text-gray-700 hover:text-indigo-600">Expérience</a>
83
- <a href="#skills" class="block py-2 text-gray-700 hover:text-indigo-600">Compétences</a>
84
- <a href="#projects" class="block py-2 text-gray-700 hover:text-indigo-600">Projets</a>
85
- <a href="#contact" class="block py-2 text-gray-700 hover:text-indigo-600">Contact</a>
86
- </div>
87
- </div>
88
- </nav>
89
-
90
- <!-- Hero Section -->
91
- <section id="about" class="gradient-bg text-white py-20">
92
- <div class="container mx-auto px-6 flex flex-col md:flex-row items-center">
93
- <div class="md:w-1/2 flex justify-center mb-10 md:mb-0">
94
- <img src="https://i.postimg.cc/sgNFd6zM/MORY1.png" alt="Mory Hamidou Sylla" class="rounded-full profile-img w-64 h-64 object-cover">
95
- </div>
96
- <div class="md:w-1/2 md:pl-12">
97
- <h1 class="text-4xl md:text-5xl font-bold mb-4">Mory Hamidou Sylla</h1>
98
- <h2 class="text-2xl md:text-3xl font-semibold mb-6">Expert en Intelligence Artificielle & Data Science</h2>
99
- <p class="text-lg mb-6">Diplômé en Math passionné par l'intelligence artificielle, l'informatique et la finance. J'ai récemment achevé une formation intensive en IA à l'Orange Digital Center (ODC) avec plus de 15 projets concrets.</p>
100
- <div class="flex space-x-4">
101
- <a href="#contact" class="bg-white text-indigo-600 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition duration-300">Me contacter</a>
102
- <a href="#projects" class="border-2 border-white text-white px-6 py-3 rounded-lg font-medium hover:bg-white hover:text-indigo-600 transition duration-300">Voir mes projets</a>
103
- </div>
104
- </div>
105
- </div>
106
- </section>
107
-
108
- <!-- Education Section -->
109
- <section id="education" class="py-16 bg-white">
110
- <div class="container mx-auto px-6">
111
- <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Formation</h2>
112
- <div class="flex flex-col md:flex-row justify-center gap-8">
113
- <div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300 md:w-1/2">
114
- <div class="flex items-center mb-4">
115
- <div class="bg-indigo-100 p-3 rounded-full mr-4">
116
- <i class="fas fa-graduation-cap text-indigo-600 text-xl"></i>
117
- </div>
118
- <h3 class="text-xl font-semibold text-gray-800">Formation en Intelligence Artificielle</h3>
119
- </div>
120
- <p class="text-gray-600 mb-2"><span class="font-medium">Orange Digital Center</span> - 2025</p>
121
- <p class="text-gray-700">Formation intensive d'un mois avec réalisation de plus de 15 projets concrets en IA, machine learning, vision par ordinateur, NLP et data science...</p>
122
- </div>
123
- <div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300 md:w-1/2">
124
- <div class="flex items-center mb-4">
125
- <div class="bg-green-100 p-3 rounded-full mr-4">
126
- <i class="fas fa-university text-green-600 text-xl"></i>
127
- </div>
128
- <h3 class="text-xl font-semibold text-gray-800">Diplôme d'Etude Superieure MIAGE</h3>
129
- </div>
130
- <p class="text-gray-600 mb-2"><span class="font-medium">Université Gamal Abdel Nasser de Conakry</span> - 2024</p>
131
- <p class="text-gray-700">Diplôme en Méthodes Informatiques Appliquées à la Gestion des Entreprises, combinant informatique et gestion.</p>
132
- </div>
133
- </div>
134
- </div>
135
- </section>
136
-
137
- <!-- Experience Section -->
138
- <section id="experience" class="py-16 bg-gray-50">
139
- <div class="container mx-auto px-6">
140
- <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Expérience Professionnelle</h2>
141
- <div class="space-y-8 max-w-3xl mx-auto">
142
- <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
143
- <div class="flex items-start">
144
- <div class="bg-blue-100 p-3 rounded-full mr-4">
145
- <i class="fas fa-laptop-code text-blue-600 text-xl"></i>
146
- </div>
147
- <div>
148
- <h3 class="text-xl font-semibold text-gray-800">Responsable Informatique</h3>
149
- <p class="text-gray-600 mb-2">École Franco-Guinéenne HMD</p>
150
- <p class="text-gray-700">Gestion et maintenance du parc informatique, support technique, et mise en place de solutions informatiques.</p>
151
- </div>
152
- </div>
153
- </div>
154
- <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
155
- <div class="flex items-start">
156
- <div class="bg-purple-100 p-3 rounded-full mr-4">
157
- <i class="fas fa-users text-purple-600 text-xl"></i>
158
- </div>
159
- <div>
160
- <h3 class="text-xl font-semibold text-gray-800">Trésorier</h3>
161
- <p class="text-gray-600 mb-2">Conseil des Étudiants de l'Université GAN de Conakry</p>
162
- <p class="text-gray-700">Gestion financière du conseil étudiant, organisation d'événements et représentation des étudiants.</p>
163
- </div>
164
- </div>
165
- </div>
166
- <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
167
- <div class="flex items-start">
168
- <div class="bg-yellow-100 p-3 rounded-full mr-4">
169
- <i class="fas fa-bullhorn text-yellow-600 text-xl"></i>
170
- </div>
171
- <div>
172
- <h3 class="text-xl font-semibold text-gray-800">Responsable Communication</h3>
173
- <p class="text-gray-600 mb-2">Union des Jeunes Leaders de Guinée</p>
174
- <p class="text-gray-700">Gestion des canaux de communication, création de contenu et organisation d'événements pour la jeunesse.</p>
175
- </div>
176
- </div>
177
- </div>
178
- <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
179
- <div class="flex items-start">
180
- <div class="bg-red-100 p-3 rounded-full mr-4">
181
- <i class="fas fa-network-wired text-red-600 text-xl"></i>
182
- </div>
183
- <div>
184
- <h3 class="text-xl font-semibold text-gray-800">Stagiaire IT</h3>
185
- <p class="text-gray-600 mb-2">CBG (maintenance, réseau, administration système)</p>
186
- <p class="text-gray-700">Maintenance informatique, gestion des réseaux et administration des systèmes.</p>
187
- </div>
188
- </div>
189
- </div>
190
- <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
191
- <div class="flex items-start">
192
- <div class="bg-green-100 p-3 rounded-full mr-4">
193
- <i class="fas fa-chart-line text-green-600 text-xl"></i>
194
- </div>
195
- <div>
196
- <h3 class="text-xl font-semibold text-gray-800">Stagiaire Commercial</h3>
197
- <p class="text-gray-600 mb-2">FirstBank Guinée</p>
198
- <p class="text-gray-700">Découverte du milieu bancaire, analyse des besoins clients et proposition de solutions financières.</p>
199
- </div>
200
- </div>
201
- </div>
202
- </div>
203
- </div>
204
- </section>
205
-
206
- <!-- Skills Section -->
207
- <section id="skills" class="py-16 bg-white">
208
- <div class="container mx-auto px-6">
209
- <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Compétences</h2>
210
- <div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4">
211
- <div class="skill-badge bg-indigo-100 text-indigo-800 px-4 py-3 rounded-lg text-center font-medium">
212
- IA & Machine Learning
213
- </div>
214
- <div class="skill-badge bg-blue-100 text-blue-800 px-4 py-3 rounded-lg text-center font-medium">
215
- Vision par ordinateur
216
- </div>
217
- <div class="skill-badge bg-purple-100 text-purple-800 px-4 py-3 rounded-lg text-center font-medium">
218
- NLP (Traitement du langage)
219
- </div>
220
- <div class="skill-badge bg-green-100 text-green-800 px-4 py-3 rounded-lg text-center font-medium">
221
- Développement Web
222
- </div>
223
- <div class="skill-badge bg-yellow-100 text-yellow-800 px-4 py-3 rounded-lg text-center font-medium">
224
- Développement Mobile
225
- </div>
226
- <div class="skill-badge bg-red-100 text-red-800 px-4 py-3 rounded-lg text-center font-medium">
227
- Développement Desktop
228
- </div>
229
- <div class="skill-badge bg-pink-100 text-pink-800 px-4 py-3 rounded-lg text-center font-medium">
230
- Administration système
231
- </div>
232
- <div class="skill-badge bg-gray-100 text-gray-800 px-4 py-3 rounded-lg text-center font-medium">
233
- Gestion financière
234
- </div>
235
- </div>
236
- </div>
237
- </section>
238
-
239
- <!-- Projects Section -->
240
- <section id="projects" class="py-16 bg-gray-50">
241
- <div class="container mx-auto px-6">
242
- <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Projets IA (Orange Digital Center)</h2>
243
- <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
244
- <!-- Projet 1 -->
245
- <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
246
- <div class="bg-indigo-100 p-3 rounded-lg inline-block mb-4">
247
- <i class="fas fa-comment-dots text-indigo-600 text-xl"></i>
248
- </div>
249
- <h3 class="text-xl font-semibold mb-2 text-gray-800">Prédiction des sentiments des tweets</h3>
250
- <p class="text-gray-600 mb-4">Analyse des sentiments exprimés dans les tweets.</p>
251
- <a href="https://huggingface.co/spaces/Hamsy/PREDICTION_SENTIMENTS_DES_TWEETS" target="_blank" class="text-indigo-600 font-medium hover:underline inline-flex items-center">
252
- Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
253
- </a>
254
- </div>
255
-
256
- <!-- Projet 2 -->
257
- <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
258
- <div class="bg-blue-100 p-3 rounded-lg inline-block mb-4">
259
- <i class="fas fa-piggy-bank text-blue-600 text-xl"></i>
260
- </div>
261
- <h3 class="text-xl font-semibold mb-2 text-gray-800">Prédiction de souscription à un dépôt</h3>
262
- <p class="text-gray-600 mb-4">Modèle prédictif pour les dépôts à terme bancaires.</p>
263
- <a href="https://huggingface.co/spaces/Hamsy/PREDICTION_SOUSCRIPTION_A_UN_DEPOT_A_TERME" target="_blank" class="text-blue-600 font-medium hover:underline inline-flex items-center">
264
- Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
265
- </a>
266
- </div>
267
-
268
- <!-- Projet 3 -->
269
- <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
270
- <div class="bg-purple-100 p-3 rounded-lg inline-block mb-4">
271
- <i class="fas fa-images text-purple-600 text-xl"></i>
272
- </div>
273
- <h3 class="text-xl font-semibold mb-2 text-gray-800">Classification d'images</h3>
274
- <p class="text-gray-600 mb-4">Reconnaissance et classification automatique d'images.</p>
275
- <a href="https://huggingface.co/spaces/Hamsy/PREDICTION_DES_IMAGES" target="_blank" class="text-purple-600 font-medium hover:underline inline-flex items-center">
276
- Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
277
- </a>
278
- </div>
279
-
280
- <!-- Projet 4 -->
281
- <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
282
- <div class="bg-green-100 p-3 rounded-lg inline-block mb-4">
283
- <i class="fas fa-hand-holding-usd text-green-600 text-xl"></i>
284
- </div>
285
- <h3 class="text-xl font-semibold mb-2 text-gray-800">Prédiction d'offre bancaire</h3>
286
- <p class="text-gray-600 mb-4">Modèle pour prédire l'acceptation d'offres bancaires.</p>
287
- <a href="https://huggingface.co/spaces/Hamsy/PREDICTION_DE_SOUSCRIPTION_A_UNE_OFFRE_BANCAIRE" target="_blank" class="text-green-600 font-medium hover:underline inline-flex items-center">
288
- Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
289
- </a>
290
- </div>
291
-
292
- <!-- Projet 5 -->
293
- <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
294
- <div class="bg-yellow-100 p-3 rounded-lg inline-block mb-4">
295
- <i class="fas fa-car text-yellow-600 text-xl"></i>
296
- </div>
297
- <h3 class="text-xl font-semibold mb-2 text-gray-800">État des voitures</h3>
298
- <p class="text-gray-600 mb-4">Prédiction de l'état mécanique des véhicules.</p>
299
- <a href="https://huggingface.co/spaces/Hamsy/PREDICTION_DE_L_ETAT_DES_VOITURES" target="_blank" class="text-yellow-600 font-medium hover:underline inline-flex items-center">
300
- Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
301
- </a>
302
- </div>
303
-
304
- <!-- Projet 6 -->
305
- <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
306
- <div class="bg-red-100 p-3 rounded-lg inline-block mb-4">
307
- <i class="fas fa-tags text-red-600 text-xl"></i>
308
- </div>
309
- <h3 class="text-xl font-semibold mb-2 text-gray-800">Prix de vente des voitures</h3>
310
- <p class="text-gray-600 mb-4">Estimation du prix de vente des véhicules d'occasion.</p>
311
- <a href="https://huggingface.co/spaces/Hamsy/PREDICTION_DU_PRIX_DE_VENTE_DES_VOITURES" target="_blank" class="text-red-600 font-medium hover:underline inline-flex items-center">
312
- Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
313
- </a>
314
- </div>
315
-
316
- <!-- Projet 7 -->
317
- <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
318
- <div class="bg-pink-100 p-3 rounded-lg inline-block mb-4">
319
- <i class="fas fa-object-group text-pink-600 text-xl"></i>
320
- </div>
321
- <h3 class="text-xl font-semibold mb-2 text-gray-800">Image segmentation</h3>
322
- <p class="text-gray-600 mb-4">Segmentation d'images par intelligence artificielle.</p>
323
- <a href="https://huggingface.co/spaces/Hamsy/IMAGE_SEGMENTATION" target="_blank" class="text-pink-600 font-medium hover:underline inline-flex items-center">
324
- Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
325
- </a>
326
- </div>
327
-
328
- <!-- Projet 8 -->
329
- <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
330
- <div class="bg-indigo-100 p-3 rounded-lg inline-block mb-4">
331
- <i class="fas fa-search text-indigo-600 text-xl"></i>
332
- </div>
333
- <h3 class="text-xl font-semibold mb-2 text-gray-800">Détection d'objets</h3>
334
- <p class="text-gray-600 mb-4">Reconnaissance et localisation d'objets dans une image.</p>
335
- <a href="https://huggingface.co/spaces/Hamsy/DETECTION_DES_OBJETS" target="_blank" class="text-indigo-600 font-medium hover:underline inline-flex items-center">
336
- Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
337
- </a>
338
- </div>
339
-
340
- <!-- Projet 9 -->
341
- <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
342
- <div class="bg-blue-100 p-3 rounded-lg inline-block mb-4">
343
- <i class="fas fa-image text-blue-600 text-xl"></i>
344
- </div>
345
- <h3 class="text-xl font-semibold mb-2 text-gray-800">Text-to-Image</h3>
346
- <p class="text-gray-600 mb-4">Génération d'images à partir de descriptions textuelles.</p>
347
- <a href="https://huggingface.co/spaces/Hamsy/TEXT_TO_IMAGE" target="_blank" class="text-blue-600 font-medium hover:underline inline-flex items-center">
348
- Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
349
- </a>
350
- </div>
351
-
352
- <!-- Projet 10 -->
353
- <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
354
- <div class="bg-purple-100 p-3 rounded-lg inline-block mb-4">
355
- <i class="fas fa-comment-alt text-purple-600 text-xl"></i>
356
- </div>
357
- <h3 class="text-xl font-semibold mb-2 text-gray-800">Image Captioning</h3>
358
- <p class="text-gray-600 mb-4">Génération de descriptions automatiques pour images.</p>
359
- <a href="https://huggingface.co/spaces/Hamsy/IMAGE_CAPTIONING" target="_blank" class="text-purple-600 font-medium hover:underline inline-flex items-center">
360
- Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
361
- </a>
362
- </div>
363
-
364
- <!-- Projet 11 -->
365
- <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
366
- <div class="bg-green-100 p-3 rounded-lg inline-block mb-4">
367
- <i class="fas fa-volume-up text-green-600 text-xl"></i>
368
- </div>
369
- <h3 class="text-xl font-semibold mb-2 text-gray-800">Text-to-Speech</h3>
370
- <p class="text-gray-600 mb-4">Synthèse vocale à partir de texte.</p>
371
- <a href="https://huggingface.co/spaces/Hamsy/TEXT_TO_SPEEK" target="_blank" class="text-green-600 font-medium hover:underline inline-flex items-center">
372
- Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
373
- </a>
374
- </div>
375
-
376
- <!-- Projet 12 -->
377
- <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
378
- <div class="bg-yellow-100 p-3 rounded-lg inline-block mb-4">
379
- <i class="fas fa-language text-yellow-600 text-xl"></i>
380
- </div>
381
- <h3 class="text-xl font-semibold mb-2 text-gray-800">Traduction multilingue</h3>
382
- <p class="text-gray-600 mb-4">Système de traduction automatique multilingue.</p>
383
- <a href="https://huggingface.co/spaces/Hamsy/TRADUCTION_MULTILINGUE" target="_blank" class="text-yellow-600 font-medium hover:underline inline-flex items-center">
384
- Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
385
- </a>
386
- </div>
387
-
388
- <!-- Projet 13 -->
389
- <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
390
- <div class="bg-red-100 p-3 rounded-lg inline-block mb-4">
391
- <i class="fas fa-microphone text-red-600 text-xl"></i>
392
- </div>
393
- <h3 class="text-xl font-semibold mb-2 text-gray-800">Transcription vocale</h3>
394
- <p class="text-gray-600 mb-4">Reconnaissance vocale via microphone.</p>
395
- <a href="https://huggingface.co/spaces/Hamsy/TRANSCRIPTION_AUDIO_MIICROPHONE" target="_blank" class="text-red-600 font-medium hover:underline inline-flex items-center">
396
- Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
397
- </a>
398
- </div>
399
-
400
- <!-- Projet 14 -->
401
- <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
402
- <div class="bg-pink-100 p-3 rounded-lg inline-block mb-4">
403
- <i class="fas fa-file-alt text-pink-600 text-xl"></i>
404
- </div>
405
- <h3 class="text-xl font-semibold mb-2 text-gray-800">Résumé de texte FR/EN</h3>
406
- <p class="text-gray-600 mb-4">Résumé automatique de documents en français et anglais.</p>
407
- <a href="https://huggingface.co/spaces/Hamsy/RESUME_TEXTE_ENGLAIS_FRANCAIS" target="_blank" class="text-pink-600 font-medium hover:underline inline-flex items-center">
408
- Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
409
- </a>
410
- </div>
411
-
412
- <!-- Projet 15 -->
413
- <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
414
- <div class="bg-indigo-100 p-3 rounded-lg inline-block mb-4">
415
- <i class="fas fa-graduation-cap text-indigo-600 text-xl"></i>
416
- </div>
417
- <h3 class="text-xl font-semibold mb-2 text-gray-800">Performance des élèves</h3>
418
- <p class="text-gray-600 mb-4">Prédiction des performances scolaires (2 versions).</p>
419
- <div class="space-y-2">
420
- <a href="https://huggingface.co/spaces/Hamsy/Prediction_performance_des_eleves_deeplearning" target="_blank" class="text-indigo-600 font-medium hover:underline inline-flex items-center text-sm">
421
- Version 1 <i class="fas fa-external-link-alt ml-1"></i>
422
- </a>
423
- <a href="https://huggingface.co/spaces/Hamsy/PREDICTION_DE_LA_PERFORMANCE_DES_ELEVES" target="_blank" class="text-indigo-600 font-medium hover:underline inline-flex items-center text-sm">
424
- Version 2 <i class="fas fa-external-link-alt ml-1"></i>
425
- </a>
426
- </div>
427
- </div>
428
-
429
- <!-- Projet 16 (Projet de fin de formation) -->
430
- <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300 border-2 border-green-500">
431
- <div class="bg-green-100 p-3 rounded-lg inline-block mb-4">
432
- <i class="fas fa-medkit text-green-600 text-xl"></i>
433
- </div>
434
- <h3 class="text-xl font-semibold mb-2 text-gray-800">Détection de maladies pulmonaires</h3>
435
- <p class="text-gray-600 mb-4">Projet de fin de formation : Diagnostic assisté par IA des pathologies pulmonaires.</p>
436
- <a href="https://huggingface.co/spaces/Hamsy/DETECTION_DE_MALADIES_PULMONAIRES" target="_blank" class="text-green-600 font-medium hover:underline inline-flex items-center">
437
- Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
438
- </a>
439
- </div>
440
- </div>
441
- </div>
442
- </section>
443
-
444
- <!-- Contact Section -->
445
- <section id="contact" class="py-16 bg-white">
446
- <div class="container mx-auto px-6">
447
- <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Contactez-moi</h2>
448
- <div class="flex flex-col md:flex-row gap-8">
449
- <div class="md:w-1/2">
450
- <div class="bg-gray-50 p-8 rounded-xl shadow-md">
451
- <h3 class="text-xl font-semibold mb-6 text-gray-800">Informations de contact</h3>
452
- <div class="space-y-4">
453
- <div class="flex items-start">
454
- <div class="bg-indigo-100 p-2 rounded-full mr-4">
455
- <i class="fas fa-envelope text-indigo-600"></i>
456
- </div>
457
- <div>
458
- <h4 class="font-medium text-gray-700">Email</h4>
459
- <a href="mailto:moryhamsy19@gmail.com" class="text-gray-600 hover:text-indigo-600">moryhamsy19@gmail.com</a>
460
- </div>
461
- </div>
462
- <div class="flex items-start">
463
- <div class="bg-blue-100 p-2 rounded-full mr-4">
464
- <i class="fas fa-phone-alt text-blue-600"></i>
465
- </div>
466
- <div>
467
- <h4 class="font-medium text-gray-700">Téléphone</h4>
468
- <a href="tel:+224628435664" class="text-gray-600 hover:text-blue-600">+224 628 435 664</a>
469
- </div>
470
- </div>
471
- <div class="flex items-start">
472
- <div class="bg-green-100 p-2 rounded-full mr-4">
473
- <i class="fas fa-map-marker-alt text-green-600"></i>
474
- </div>
475
- <div>
476
- <h4 class="font-medium text-gray-700">Adresse</h4>
477
- <p class="text-gray-600">Yimbayah, Guinée</p>
478
- </div>
479
- </div>
480
- </div>
481
- <div class="mt-8">
482
- <h3 class="text-xl font-semibold mb-4 text-gray-800">Réseaux sociaux</h3>
483
- <div class="flex space-x-4">
484
- <a href="https://www.facebook.com/mory.hamidou.sylla.2025" target="_blank" class="bg-blue-100 text-blue-600 p-3 rounded-full hover:bg-blue-200 transition duration-300">
485
- <i class="fab fa-facebook-f"></i>
486
- </a>
487
- <a href="https://www.linkedin.com/mory.hamidou.sylla.2025" target="_blank" class="bg-blue-100 text-blue-600 p-3 rounded-full hover:bg-blue-200 transition duration-300">
488
- <i class="fab fa-linkedin-in"></i>
489
- </a>
490
- </div>
491
- </div>
492
- </div>
493
- </div>
494
- <div class="md:w-1/2">
495
- <div class="bg-gray-50 p-8 rounded-xl shadow-md">
496
- <h3 class="text-xl font-semibold mb-6 text-gray-800">Envoyez-moi un message</h3>
497
- <form id="contact-form" class="space-y-4">
498
- <div>
499
- <label for="name" class="block text-gray-700 mb-2">Nom complet</label>
500
- <input type="text" id="name" name="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent">
501
- </div>
502
- <div>
503
- <label for="email" class="block text-gray-700 mb-2">Email</label>
504
- <input type="email" id="email" name="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent">
505
- </div>
506
- <div>
507
- <label for="subject" class="block text-gray-700 mb-2">Sujet</label>
508
- <input type="text" id="subject" name="subject" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent">
509
- </div>
510
- <div>
511
- <label for="message" class="block text-gray-700 mb-2">Message</label>
512
- <textarea id="message" name="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent"></textarea>
513
- </div>
514
- <button type="submit" class="bg-indigo-600 text-white px-6 py-3 rounded-lg font-medium hover:bg-indigo-700 transition duration-300 w-full">
515
- Envoyer le message
516
- </button>
517
- </form>
518
- </div>
519
- </div>
520
- </div>
521
- </div>
522
- </section>
523
-
524
- <!-- Objective Section -->
525
- <section class="py-16 gradient-bg text-white">
526
- <div class="container mx-auto px-6 text-center max-w-3xl">
527
- <h2 class="text-3xl font-bold mb-6">Objectif Professionnel</h2>
528
- <p class="text-lg mb-8">
529
- Je cherche à approfondir mes compétences en IA, Data Science et développement informatique à travers des projets concrets et innovants, dans le but de contribuer activement à la transformation numérique en Guinée et ailleurs.
530
- </p>
531
- <a href="#contact" class="bg-white text-indigo-600 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition duration-300 inline-block">
532
- Travaillons ensemble
533
- </a>
534
- </div>
535
- </section>
536
-
537
- <!-- Footer -->
538
- <footer class="bg-gray-800 text-white py-8">
539
- <div class="container mx-auto px-6">
540
- <div class="flex flex-col md:flex-row justify-between items-center">
541
- <div class="mb-4 md:mb-0">
542
- <h3 class="text-xl font-bold">Mory Hamidou Sylla</h3>
543
- <p class="text-gray-400">Expert en Intelligence Artificielle & Data Science</p>
544
- </div>
545
- <div class="flex space-x-6">
546
- <a href="#about" class="text-gray-400 hover:text-white transition duration-300">Présentation</a>
547
- <a href="#projects" class="text-gray-400 hover:text-white transition duration-300">Projets</a>
548
- <a href="#contact" class="text-gray-400 hover:text-white transition duration-300">Contact</a>
549
- </div>
550
- </div>
551
- <div class="border-t border-gray-700 mt-6 pt-6 text-center text-gray-400">
552
- <p>&copy; 2023 Mory Hamidou Sylla. Tous droits réservés.</p>
553
- </div>
554
- </div>
555
- </footer>
556
-
557
- <script>
558
- // Mobile menu toggle
559
- document.getElementById('menu-toggle').addEventListener('click', function() {
560
- const menu = document.getElementById('mobile-menu');
561
- menu.classList.toggle('hidden');
562
- });
563
-
564
- // Smooth scrolling for navigation links
565
- document.querySelectorAll('a[href^="#"]').forEach(anchor => {
566
- anchor.addEventListener('click', function (e) {
567
- e.preventDefault();
568
-
569
- document.querySelector(this.getAttribute('href')).scrollIntoView({
570
- behavior: 'smooth'
571
- });
572
-
573
- // Close mobile menu if open
574
- const mobileMenu = document.getElementById('mobile-menu');
575
- if (!mobileMenu.classList.contains('hidden')) {
576
- mobileMenu.classList.add('hidden');
577
- }
578
- });
579
- });
580
-
581
- // Form submission
582
- document.getElementById('contact-form').addEventListener('submit', function(e) {
583
- e.preventDefault();
584
-
585
- // Get form values
586
- const name = document.getElementById('name').value;
587
- const email = document.getElementById('email').value;
588
- const subject = document.getElementById('subject').value;
589
- const message = document.getElementById('message').value;
590
-
591
- // Here you would typically send the form data to a server
592
- // For demo purposes, we'll just show an alert
593
- alert(`Merci pour votre message, ${name}! Je vous répondrai dès que possible.`);
594
-
595
- // Reset form
596
- this.reset();
597
- });
598
- </script>
599
- </body>
600
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Mory Hamidou Sylla - Portfolio</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
+ scroll-behavior: smooth;
15
+ }
16
+
17
+ .gradient-bg {
18
+ background: linear-gradient(135deg, #4f46e5 0%, #10b981 100%);
19
+ }
20
+
21
+ .project-card:hover {
22
+ transform: translateY(-5px);
23
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
24
+ }
25
+
26
+ .skill-badge {
27
+ transition: all 0.3s ease;
28
+ }
29
+
30
+ .skill-badge:hover {
31
+ transform: scale(1.05);
32
+ }
33
+
34
+ .nav-link {
35
+ position: relative;
36
+ }
37
+
38
+ .nav-link::after {
39
+ content: '';
40
+ position: absolute;
41
+ width: 0;
42
+ height: 2px;
43
+ bottom: 0;
44
+ left: 0;
45
+ background-color: #4f46e5;
46
+ transition: width 0.3s ease;
47
+ }
48
+
49
+ .nav-link:hover::after {
50
+ width: 100%;
51
+ }
52
+
53
+ .profile-img {
54
+ border: 5px solid white;
55
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
56
+ }
57
+ </style>
58
+ </head>
59
+ <body class="bg-gray-50">
60
+ <!-- Navigation -->
61
+ <nav class="bg-white shadow-md sticky top-0 z-50">
62
+ <div class="container mx-auto px-6 py-3">
63
+ <div class="flex justify-between items-center">
64
+ <div class="text-2xl font-bold text-indigo-600">Mory Hamidou Sylla</div>
65
+ <div class="hidden md:flex space-x-8">
66
+ <a href="#about" class="nav-link text-gray-700 hover:text-indigo-600">Présentation</a>
67
+ <a href="#education" class="nav-link text-gray-700 hover:text-indigo-600">Formation</a>
68
+ <a href="#experience" class="nav-link text-gray-700 hover:text-indigo-600">Expérience</a>
69
+ <a href="#skills" class="nav-link text-gray-700 hover:text-indigo-600">Compétences</a>
70
+ <a href="#projects" class="nav-link text-gray-700 hover:text-indigo-600">Projets</a>
71
+ <a href="#contact" class="nav-link text-gray-700 hover:text-indigo-600">Contact</a>
72
+ </div>
73
+ <button class="md:hidden focus:outline-none" id="menu-toggle">
74
+ <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
75
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
76
+ </svg>
77
+ </button>
78
+ </div>
79
+ <div class="md:hidden hidden mt-2" id="mobile-menu">
80
+ <a href="#about" class="block py-2 text-gray-700 hover:text-indigo-600">Présentation</a>
81
+ <a href="#education" class="block py-2 text-gray-700 hover:text-indigo-600">Formation</a>
82
+ <a href="#experience" class="block py-2 text-gray-700 hover:text-indigo-600">Expérience</a>
83
+ <a href="#skills" class="block py-2 text-gray-700 hover:text-indigo-600">Compétences</a>
84
+ <a href="#projects" class="block py-2 text-gray-700 hover:text-indigo-600">Projets</a>
85
+ <a href="#contact" class="block py-2 text-gray-700 hover:text-indigo-600">Contact</a>
86
+ </div>
87
+ </div>
88
+ </nav>
89
+
90
+ <!-- Hero Section -->
91
+ <section id="about" class="gradient-bg text-white py-20">
92
+ <div class="container mx-auto px-6 flex flex-col md:flex-row items-center">
93
+ <div class="md:w-1/2 flex justify-center mb-10 md:mb-0">
94
+ <img src="https://i.postimg.cc/sgNFd6zM/MORY1.png" alt="Mory Hamidou Sylla" class="rounded-full profile-img w-64 h-64 object-cover">
95
+ </div>
96
+ <div class="md:w-1/2 md:pl-12">
97
+ <h1 class="text-4xl md:text-5xl font-bold mb-4">Mory Hamidou Sylla</h1>
98
+ <h2 class="text-2xl md:text-3xl font-semibold mb-6">Intelligence Artificielle & Data Science</h2>
99
+ <p class="text-lg mb-6">Diplômé en Math passionné par l'intelligence artificielle, l'informatique et la finance. J'ai récemment achevé une formation intensive en IA à l'Orange Digital Center (ODC) avec plus de 15 projets concrets.</p>
100
+ <div class="flex space-x-4">
101
+ <a href="#contact" class="bg-white text-indigo-600 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition duration-300">Me contacter</a>
102
+ <a href="#projects" class="border-2 border-white text-white px-6 py-3 rounded-lg font-medium hover:bg-white hover:text-indigo-600 transition duration-300">Voir mes projets</a>
103
+ </div>
104
+ </div>
105
+ </div>
106
+ </section>
107
+
108
+ <!-- Education Section -->
109
+ <section id="education" class="py-16 bg-white">
110
+ <div class="container mx-auto px-6">
111
+ <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Formation</h2>
112
+ <div class="flex flex-col md:flex-row justify-center gap-8">
113
+ <div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300 md:w-1/2">
114
+ <div class="flex items-center mb-4">
115
+ <div class="bg-indigo-100 p-3 rounded-full mr-4">
116
+ <i class="fas fa-graduation-cap text-indigo-600 text-xl"></i>
117
+ </div>
118
+ <h3 class="text-xl font-semibold text-gray-800">Formation en Intelligence Artificielle</h3>
119
+ </div>
120
+ <p class="text-gray-600 mb-2"><span class="font-medium">Orange Digital Center</span> - 2025</p>
121
+ <p class="text-gray-700">Formation intensive d'un mois avec réalisation de plus de 15 projets concrets en IA, machine learning, vision par ordinateur, NLP et data science...</p>
122
+ </div>
123
+ <div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300 md:w-1/2">
124
+ <div class="flex items-center mb-4">
125
+ <div class="bg-green-100 p-3 rounded-full mr-4">
126
+ <i class="fas fa-university text-green-600 text-xl"></i>
127
+ </div>
128
+ <h3 class="text-xl font-semibold text-gray-800">Diplôme d'Etude Superieure MIAGE</h3>
129
+ </div>
130
+ <p class="text-gray-600 mb-2"><span class="font-medium">Université Gamal Abdel Nasser de Conakry</span> - 2024</p>
131
+ <p class="text-gray-700">Diplôme en Méthodes Informatiques Appliquées à la Gestion des Entreprises, combinant informatique et gestion.</p>
132
+ </div>
133
+ </div>
134
+ </div>
135
+ </section>
136
+
137
+ <!-- Experience Section -->
138
+ <section id="experience" class="py-16 bg-gray-50">
139
+ <div class="container mx-auto px-6">
140
+ <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Expérience Professionnelle</h2>
141
+ <div class="space-y-8 max-w-3xl mx-auto">
142
+ <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
143
+ <div class="flex items-start">
144
+ <div class="bg-blue-100 p-3 rounded-full mr-4">
145
+ <i class="fas fa-laptop-code text-blue-600 text-xl"></i>
146
+ </div>
147
+ <div>
148
+ <h3 class="text-xl font-semibold text-gray-800">Responsable Informatique</h3>
149
+ <p class="text-gray-600 mb-2">École Franco-Guinéenne HMD</p>
150
+ <p class="text-gray-700">Gestion et maintenance du parc informatique, support technique, et mise en place de solutions informatiques.</p>
151
+ </div>
152
+ </div>
153
+ </div>
154
+ <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
155
+ <div class="flex items-start">
156
+ <div class="bg-purple-100 p-3 rounded-full mr-4">
157
+ <i class="fas fa-users text-purple-600 text-xl"></i>
158
+ </div>
159
+ <div>
160
+ <h3 class="text-xl font-semibold text-gray-800">Trésorier</h3>
161
+ <p class="text-gray-600 mb-2">Conseil des Étudiants de l'Université GAN de Conakry</p>
162
+ <p class="text-gray-700">Gestion financière du conseil étudiant, organisation d'événements et représentation des étudiants.</p>
163
+ </div>
164
+ </div>
165
+ </div>
166
+ <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
167
+ <div class="flex items-start">
168
+ <div class="bg-yellow-100 p-3 rounded-full mr-4">
169
+ <i class="fas fa-bullhorn text-yellow-600 text-xl"></i>
170
+ </div>
171
+ <div>
172
+ <h3 class="text-xl font-semibold text-gray-800">Responsable Communication</h3>
173
+ <p class="text-gray-600 mb-2">Union des Jeunes Leaders de Guinée</p>
174
+ <p class="text-gray-700">Gestion des canaux de communication, création de contenu et organisation d'événements pour la jeunesse.</p>
175
+ </div>
176
+ </div>
177
+ </div>
178
+ <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
179
+ <div class="flex items-start">
180
+ <div class="bg-red-100 p-3 rounded-full mr-4">
181
+ <i class="fas fa-network-wired text-red-600 text-xl"></i>
182
+ </div>
183
+ <div>
184
+ <h3 class="text-xl font-semibold text-gray-800">Stagiaire IT</h3>
185
+ <p class="text-gray-600 mb-2">CBG (maintenance, réseau, administration système)</p>
186
+ <p class="text-gray-700">Maintenance informatique, gestion des réseaux et administration des systèmes.</p>
187
+ </div>
188
+ </div>
189
+ </div>
190
+ <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
191
+ <div class="flex items-start">
192
+ <div class="bg-green-100 p-3 rounded-full mr-4">
193
+ <i class="fas fa-chart-line text-green-600 text-xl"></i>
194
+ </div>
195
+ <div>
196
+ <h3 class="text-xl font-semibold text-gray-800">Stagiaire Commercial</h3>
197
+ <p class="text-gray-600 mb-2">FirstBank Guinée</p>
198
+ <p class="text-gray-700">Découverte du milieu bancaire, analyse des besoins clients et proposition de solutions financières.</p>
199
+ </div>
200
+ </div>
201
+ </div>
202
+ </div>
203
+ </div>
204
+ </section>
205
+
206
+ <!-- Skills Section -->
207
+ <section id="skills" class="py-16 bg-white">
208
+ <div class="container mx-auto px-6">
209
+ <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Compétences</h2>
210
+ <div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4">
211
+ <div class="skill-badge bg-indigo-100 text-indigo-800 px-4 py-3 rounded-lg text-center font-medium">
212
+ IA & Machine Learning
213
+ </div>
214
+ <div class="skill-badge bg-blue-100 text-blue-800 px-4 py-3 rounded-lg text-center font-medium">
215
+ Vision par ordinateur
216
+ </div>
217
+ <div class="skill-badge bg-purple-100 text-purple-800 px-4 py-3 rounded-lg text-center font-medium">
218
+ NLP (Traitement du langage)
219
+ </div>
220
+ <div class="skill-badge bg-green-100 text-green-800 px-4 py-3 rounded-lg text-center font-medium">
221
+ Développement Web
222
+ </div>
223
+ <div class="skill-badge bg-yellow-100 text-yellow-800 px-4 py-3 rounded-lg text-center font-medium">
224
+ Développement Mobile
225
+ </div>
226
+ <div class="skill-badge bg-red-100 text-red-800 px-4 py-3 rounded-lg text-center font-medium">
227
+ Développement Desktop
228
+ </div>
229
+ <div class="skill-badge bg-pink-100 text-pink-800 px-4 py-3 rounded-lg text-center font-medium">
230
+ Administration système
231
+ </div>
232
+ <div class="skill-badge bg-gray-100 text-gray-800 px-4 py-3 rounded-lg text-center font-medium">
233
+ Gestion financière
234
+ </div>
235
+ </div>
236
+ </div>
237
+ </section>
238
+
239
+ <!-- Projects Section -->
240
+ <section id="projects" class="py-16 bg-gray-50">
241
+ <div class="container mx-auto px-6">
242
+ <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Projets IA (Orange Digital Center)</h2>
243
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
244
+ <!-- Projet 1 -->
245
+ <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
246
+ <div class="bg-indigo-100 p-3 rounded-lg inline-block mb-4">
247
+ <i class="fas fa-comment-dots text-indigo-600 text-xl"></i>
248
+ </div>
249
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Prédiction des sentiments des tweets</h3>
250
+ <p class="text-gray-600 mb-4">Analyse des sentiments exprimés dans les tweets.</p>
251
+ <a href="https://huggingface.co/spaces/Hamsy/PREDICTION_SENTIMENTS_DES_TWEETS" target="_blank" class="text-indigo-600 font-medium hover:underline inline-flex items-center">
252
+ Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
253
+ </a>
254
+ </div>
255
+
256
+ <!-- Projet 2 -->
257
+ <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
258
+ <div class="bg-blue-100 p-3 rounded-lg inline-block mb-4">
259
+ <i class="fas fa-piggy-bank text-blue-600 text-xl"></i>
260
+ </div>
261
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Prédiction de souscription à un dépôt</h3>
262
+ <p class="text-gray-600 mb-4">Modèle prédictif pour les dépôts à terme bancaires.</p>
263
+ <a href="https://huggingface.co/spaces/Hamsy/PREDICTION_SOUSCRIPTION_A_UN_DEPOT_A_TERME" target="_blank" class="text-blue-600 font-medium hover:underline inline-flex items-center">
264
+ Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
265
+ </a>
266
+ </div>
267
+
268
+ <!-- Projet 3 -->
269
+ <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
270
+ <div class="bg-purple-100 p-3 rounded-lg inline-block mb-4">
271
+ <i class="fas fa-images text-purple-600 text-xl"></i>
272
+ </div>
273
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Classification d'images</h3>
274
+ <p class="text-gray-600 mb-4">Reconnaissance et classification automatique d'images.</p>
275
+ <a href="https://huggingface.co/spaces/Hamsy/PREDICTION_DES_IMAGES" target="_blank" class="text-purple-600 font-medium hover:underline inline-flex items-center">
276
+ Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
277
+ </a>
278
+ </div>
279
+
280
+ <!-- Projet 4 -->
281
+ <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
282
+ <div class="bg-green-100 p-3 rounded-lg inline-block mb-4">
283
+ <i class="fas fa-hand-holding-usd text-green-600 text-xl"></i>
284
+ </div>
285
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Prédiction d'offre bancaire</h3>
286
+ <p class="text-gray-600 mb-4">Modèle pour prédire l'acceptation d'offres bancaires.</p>
287
+ <a href="https://huggingface.co/spaces/Hamsy/PREDICTION_DE_SOUSCRIPTION_A_UNE_OFFRE_BANCAIRE" target="_blank" class="text-green-600 font-medium hover:underline inline-flex items-center">
288
+ Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
289
+ </a>
290
+ </div>
291
+
292
+ <!-- Projet 5 -->
293
+ <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
294
+ <div class="bg-yellow-100 p-3 rounded-lg inline-block mb-4">
295
+ <i class="fas fa-car text-yellow-600 text-xl"></i>
296
+ </div>
297
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">État des voitures</h3>
298
+ <p class="text-gray-600 mb-4">Prédiction de l'état mécanique des véhicules.</p>
299
+ <a href="https://huggingface.co/spaces/Hamsy/PREDICTION_DE_L_ETAT_DES_VOITURES" target="_blank" class="text-yellow-600 font-medium hover:underline inline-flex items-center">
300
+ Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
301
+ </a>
302
+ </div>
303
+
304
+ <!-- Projet 6 -->
305
+ <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
306
+ <div class="bg-red-100 p-3 rounded-lg inline-block mb-4">
307
+ <i class="fas fa-tags text-red-600 text-xl"></i>
308
+ </div>
309
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Prix de vente des voitures</h3>
310
+ <p class="text-gray-600 mb-4">Estimation du prix de vente des véhicules d'occasion.</p>
311
+ <a href="https://huggingface.co/spaces/Hamsy/PREDICTION_DU_PRIX_DE_VENTE_DES_VOITURES" target="_blank" class="text-red-600 font-medium hover:underline inline-flex items-center">
312
+ Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
313
+ </a>
314
+ </div>
315
+
316
+ <!-- Projet 7 -->
317
+ <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
318
+ <div class="bg-pink-100 p-3 rounded-lg inline-block mb-4">
319
+ <i class="fas fa-object-group text-pink-600 text-xl"></i>
320
+ </div>
321
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Image segmentation</h3>
322
+ <p class="text-gray-600 mb-4">Segmentation d'images par intelligence artificielle.</p>
323
+ <a href="https://huggingface.co/spaces/Hamsy/IMAGE_SEGMENTATION" target="_blank" class="text-pink-600 font-medium hover:underline inline-flex items-center">
324
+ Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
325
+ </a>
326
+ </div>
327
+
328
+ <!-- Projet 8 -->
329
+ <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
330
+ <div class="bg-indigo-100 p-3 rounded-lg inline-block mb-4">
331
+ <i class="fas fa-search text-indigo-600 text-xl"></i>
332
+ </div>
333
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Détection d'objets</h3>
334
+ <p class="text-gray-600 mb-4">Reconnaissance et localisation d'objets dans une image.</p>
335
+ <a href="https://huggingface.co/spaces/Hamsy/DETECTION_DES_OBJETS" target="_blank" class="text-indigo-600 font-medium hover:underline inline-flex items-center">
336
+ Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
337
+ </a>
338
+ </div>
339
+
340
+ <!-- Projet 9 -->
341
+ <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
342
+ <div class="bg-blue-100 p-3 rounded-lg inline-block mb-4">
343
+ <i class="fas fa-image text-blue-600 text-xl"></i>
344
+ </div>
345
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Text-to-Image</h3>
346
+ <p class="text-gray-600 mb-4">Génération d'images à partir de descriptions textuelles.</p>
347
+ <a href="https://huggingface.co/spaces/Hamsy/TEXT_TO_IMAGE" target="_blank" class="text-blue-600 font-medium hover:underline inline-flex items-center">
348
+ Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
349
+ </a>
350
+ </div>
351
+
352
+ <!-- Projet 10 -->
353
+ <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
354
+ <div class="bg-purple-100 p-3 rounded-lg inline-block mb-4">
355
+ <i class="fas fa-comment-alt text-purple-600 text-xl"></i>
356
+ </div>
357
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Image Captioning</h3>
358
+ <p class="text-gray-600 mb-4">Génération de descriptions automatiques pour images.</p>
359
+ <a href="https://huggingface.co/spaces/Hamsy/IMAGE_CAPTIONING" target="_blank" class="text-purple-600 font-medium hover:underline inline-flex items-center">
360
+ Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
361
+ </a>
362
+ </div>
363
+
364
+ <!-- Projet 11 -->
365
+ <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
366
+ <div class="bg-green-100 p-3 rounded-lg inline-block mb-4">
367
+ <i class="fas fa-volume-up text-green-600 text-xl"></i>
368
+ </div>
369
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Text-to-Speech</h3>
370
+ <p class="text-gray-600 mb-4">Synthèse vocale à partir de texte.</p>
371
+ <a href="https://huggingface.co/spaces/Hamsy/TEXT_TO_SPEEK" target="_blank" class="text-green-600 font-medium hover:underline inline-flex items-center">
372
+ Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
373
+ </a>
374
+ </div>
375
+
376
+ <!-- Projet 12 -->
377
+ <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
378
+ <div class="bg-yellow-100 p-3 rounded-lg inline-block mb-4">
379
+ <i class="fas fa-language text-yellow-600 text-xl"></i>
380
+ </div>
381
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Traduction multilingue</h3>
382
+ <p class="text-gray-600 mb-4">Système de traduction automatique multilingue.</p>
383
+ <a href="https://huggingface.co/spaces/Hamsy/TRADUCTION_MULTILINGUE" target="_blank" class="text-yellow-600 font-medium hover:underline inline-flex items-center">
384
+ Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
385
+ </a>
386
+ </div>
387
+
388
+ <!-- Projet 13 -->
389
+ <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
390
+ <div class="bg-red-100 p-3 rounded-lg inline-block mb-4">
391
+ <i class="fas fa-microphone text-red-600 text-xl"></i>
392
+ </div>
393
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Transcription vocale</h3>
394
+ <p class="text-gray-600 mb-4">Reconnaissance vocale via microphone.</p>
395
+ <a href="https://huggingface.co/spaces/Hamsy/TRANSCRIPTION_AUDIO_MIICROPHONE" target="_blank" class="text-red-600 font-medium hover:underline inline-flex items-center">
396
+ Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
397
+ </a>
398
+ </div>
399
+
400
+ <!-- Projet 14 -->
401
+ <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
402
+ <div class="bg-pink-100 p-3 rounded-lg inline-block mb-4">
403
+ <i class="fas fa-file-alt text-pink-600 text-xl"></i>
404
+ </div>
405
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Résumé de texte FR/EN</h3>
406
+ <p class="text-gray-600 mb-4">Résumé automatique de documents en français et anglais.</p>
407
+ <a href="https://huggingface.co/spaces/Hamsy/RESUME_TEXTE_ENGLAIS_FRANCAIS" target="_blank" class="text-pink-600 font-medium hover:underline inline-flex items-center">
408
+ Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
409
+ </a>
410
+ </div>
411
+
412
+ <!-- Projet 15 -->
413
+ <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300">
414
+ <div class="bg-indigo-100 p-3 rounded-lg inline-block mb-4">
415
+ <i class="fas fa-graduation-cap text-indigo-600 text-xl"></i>
416
+ </div>
417
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Performance des élèves</h3>
418
+ <p class="text-gray-600 mb-4">Prédiction des performances scolaires (2 versions).</p>
419
+ <div class="space-y-2">
420
+ <a href="https://huggingface.co/spaces/Hamsy/Prediction_performance_des_eleves_deeplearning" target="_blank" class="text-indigo-600 font-medium hover:underline inline-flex items-center text-sm">
421
+ Version 1 <i class="fas fa-external-link-alt ml-1"></i>
422
+ </a>
423
+ <a href="https://huggingface.co/spaces/Hamsy/PREDICTION_DE_LA_PERFORMANCE_DES_ELEVES" target="_blank" class="text-indigo-600 font-medium hover:underline inline-flex items-center text-sm">
424
+ Version 2 <i class="fas fa-external-link-alt ml-1"></i>
425
+ </a>
426
+ </div>
427
+ </div>
428
+
429
+ <!-- Projet 16 (Projet de fin de formation) -->
430
+ <div class="project-card bg-white p-6 rounded-xl shadow-md transition duration-300 border-2 border-green-500">
431
+ <div class="bg-green-100 p-3 rounded-lg inline-block mb-4">
432
+ <i class="fas fa-medkit text-green-600 text-xl"></i>
433
+ </div>
434
+ <h3 class="text-xl font-semibold mb-2 text-gray-800">Détection de maladies pulmonaires</h3>
435
+ <p class="text-gray-600 mb-4">Projet de fin de formation : Diagnostic assisté par IA des pathologies pulmonaires.</p>
436
+ <a href="https://huggingface.co/spaces/Hamsy/DETECTION_DE_MALADIES_PULMONAIRES" target="_blank" class="text-green-600 font-medium hover:underline inline-flex items-center">
437
+ Voir le projet <i class="fas fa-external-link-alt ml-2"></i>
438
+ </a>
439
+ </div>
440
+ </div>
441
+ </div>
442
+ </section>
443
+
444
+ <!-- Contact Section -->
445
+ <section id="contact" class="py-16 bg-white">
446
+ <div class="container mx-auto px-6">
447
+ <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Contactez-moi</h2>
448
+ <div class="flex flex-col md:flex-row gap-8">
449
+ <div class="md:w-1/2">
450
+ <div class="bg-gray-50 p-8 rounded-xl shadow-md">
451
+ <h3 class="text-xl font-semibold mb-6 text-gray-800">Informations de contact</h3>
452
+ <div class="space-y-4">
453
+ <div class="flex items-start">
454
+ <div class="bg-indigo-100 p-2 rounded-full mr-4">
455
+ <i class="fas fa-envelope text-indigo-600"></i>
456
+ </div>
457
+ <div>
458
+ <h4 class="font-medium text-gray-700">Email</h4>
459
+ <a href="mailto:moryhamsy19@gmail.com" class="text-gray-600 hover:text-indigo-600">moryhamsy19@gmail.com</a>
460
+ </div>
461
+ </div>
462
+ <div class="flex items-start">
463
+ <div class="bg-blue-100 p-2 rounded-full mr-4">
464
+ <i class="fas fa-phone-alt text-blue-600"></i>
465
+ </div>
466
+ <div>
467
+ <h4 class="font-medium text-gray-700">Téléphone</h4>
468
+ <a href="tel:+224628435664" class="text-gray-600 hover:text-blue-600">+224 628 435 664</a>
469
+ </div>
470
+ </div>
471
+ <div class="flex items-start">
472
+ <div class="bg-green-100 p-2 rounded-full mr-4">
473
+ <i class="fas fa-map-marker-alt text-green-600"></i>
474
+ </div>
475
+ <div>
476
+ <h4 class="font-medium text-gray-700">Adresse</h4>
477
+ <p class="text-gray-600">Yimbayah, Guinée</p>
478
+ </div>
479
+ </div>
480
+ </div>
481
+ <div class="mt-8">
482
+ <h3 class="text-xl font-semibold mb-4 text-gray-800">Réseaux sociaux</h3>
483
+ <div class="flex space-x-4">
484
+ <a href="https://www.facebook.com/mory.hamidou.sylla.2025" target="_blank" class="bg-blue-100 text-blue-600 p-3 rounded-full hover:bg-blue-200 transition duration-300">
485
+ <i class="fab fa-facebook-f"></i>
486
+ </a>
487
+ <a href="https://www.linkedin.com/mory.hamidou.sylla.2025" target="_blank" class="bg-blue-100 text-blue-600 p-3 rounded-full hover:bg-blue-200 transition duration-300">
488
+ <i class="fab fa-linkedin-in"></i>
489
+ </a>
490
+ </div>
491
+ </div>
492
+ </div>
493
+ </div>
494
+ <div class="md:w-1/2">
495
+ <div class="bg-gray-50 p-8 rounded-xl shadow-md">
496
+ <h3 class="text-xl font-semibold mb-6 text-gray-800">Envoyez-moi un message</h3>
497
+ <form id="contact-form" class="space-y-4">
498
+ <div>
499
+ <label for="name" class="block text-gray-700 mb-2">Nom complet</label>
500
+ <input type="text" id="name" name="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent">
501
+ </div>
502
+ <div>
503
+ <label for="email" class="block text-gray-700 mb-2">Email</label>
504
+ <input type="email" id="email" name="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent">
505
+ </div>
506
+ <div>
507
+ <label for="subject" class="block text-gray-700 mb-2">Sujet</label>
508
+ <input type="text" id="subject" name="subject" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent">
509
+ </div>
510
+ <div>
511
+ <label for="message" class="block text-gray-700 mb-2">Message</label>
512
+ <textarea id="message" name="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent"></textarea>
513
+ </div>
514
+ <button type="submit" class="bg-indigo-600 text-white px-6 py-3 rounded-lg font-medium hover:bg-indigo-700 transition duration-300 w-full">
515
+ Envoyer le message
516
+ </button>
517
+ </form>
518
+ </div>
519
+ </div>
520
+ </div>
521
+ </div>
522
+ </section>
523
+
524
+ <!-- Objective Section -->
525
+ <section class="py-16 gradient-bg text-white">
526
+ <div class="container mx-auto px-6 text-center max-w-3xl">
527
+ <h2 class="text-3xl font-bold mb-6">Objectif Professionnel</h2>
528
+ <p class="text-lg mb-8">
529
+ Je cherche à approfondir mes compétences en IA, Data Science et développement informatique à travers des projets concrets et innovants, dans le but de contribuer activement à la transformation numérique en Guinée et ailleurs.
530
+ </p>
531
+ <a href="#contact" class="bg-white text-indigo-600 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition duration-300 inline-block">
532
+ Travaillons ensemble
533
+ </a>
534
+ </div>
535
+ </section>
536
+
537
+ <!-- Footer -->
538
+ <footer class="bg-gray-800 text-white py-8">
539
+ <div class="container mx-auto px-6">
540
+ <div class="flex flex-col md:flex-row justify-between items-center">
541
+ <div class="mb-4 md:mb-0">
542
+ <h3 class="text-xl font-bold">Mory Hamidou Sylla</h3>
543
+ <p class="text-gray-400">Intelligence Artificielle & Data Science</p>
544
+ </div>
545
+ <div class="flex space-x-6">
546
+ <a href="#about" class="text-gray-400 hover:text-white transition duration-300">Présentation</a>
547
+ <a href="#projects" class="text-gray-400 hover:text-white transition duration-300">Projets</a>
548
+ <a href="#contact" class="text-gray-400 hover:text-white transition duration-300">Contact</a>
549
+ </div>
550
+ </div>
551
+ <div class="border-t border-gray-700 mt-6 pt-6 text-center text-gray-400">
552
+ <p>&copy; 2023 Mory Hamidou Sylla. Tous droits réservés.</p>
553
+ </div>
554
+ </div>
555
+ </footer>
556
+
557
+ <script>
558
+ // Mobile menu toggle
559
+ document.getElementById('menu-toggle').addEventListener('click', function() {
560
+ const menu = document.getElementById('mobile-menu');
561
+ menu.classList.toggle('hidden');
562
+ });
563
+
564
+ // Smooth scrolling for navigation links
565
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
566
+ anchor.addEventListener('click', function (e) {
567
+ e.preventDefault();
568
+
569
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
570
+ behavior: 'smooth'
571
+ });
572
+
573
+ // Close mobile menu if open
574
+ const mobileMenu = document.getElementById('mobile-menu');
575
+ if (!mobileMenu.classList.contains('hidden')) {
576
+ mobileMenu.classList.add('hidden');
577
+ }
578
+ });
579
+ });
580
+
581
+ // Form submission
582
+ document.getElementById('contact-form').addEventListener('submit', function(e) {
583
+ e.preventDefault();
584
+
585
+ // Get form values
586
+ const name = document.getElementById('name').value;
587
+ const email = document.getElementById('email').value;
588
+ const subject = document.getElementById('subject').value;
589
+ const message = document.getElementById('message').value;
590
+
591
+ // Here you would typically send the form data to a server
592
+ // For demo purposes, we'll just show an alert
593
+ alert(`Merci pour votre message, ${name}! Je vous répondrai dès que possible.`);
594
+
595
+ // Reset form
596
+ this.reset();
597
+ });
598
+ </script>
599
+ </body>
600
  </html>