Spaces:
Running
Running
| <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> |