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