Spaces:
Running
Running
File size: 31,943 Bytes
0296297 |
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 |
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio Moustapha Sidibé - Data Science & IA</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>
.gradient-bg {
background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
}
.project-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.timeline-item:not(:last-child)::after {
content: '';
position: absolute;
left: 7px;
top: 24px;
height: calc(100% - 24px);
width: 2px;
background: #9d50bb;
}
.skill-bar {
height: 8px;
border-radius: 4px;
background: #e5e7eb;
}
.skill-progress {
height: 100%;
border-radius: 4px;
background: linear-gradient(90deg, #6e48aa 0%, #9d50bb 100%);
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background: #9d50bb;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.active::after {
width: 100%;
}
</style>
</head>
<body class="font-sans bg-gray-50 text-gray-800">
<!-- Navigation -->
<nav class="fixed w-full bg-white shadow-md z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<span class="text-xl font-bold gradient-text bg-gradient-to-r from-purple-600 to-pink-600 bg-clip-text text-transparent">Moustapha Sidibé</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#home" class="nav-link px-3 py-2 text-sm font-medium active">Accueil</a>
<a href="#projects" class="nav-link px-3 py-2 text-sm font-medium">Projets</a>
<a href="#about" class="nav-link px-3 py-2 text-sm font-medium">À propos</a>
<a href="#cv" class="nav-link px-3 py-2 text-sm font-medium">CV</a>
<a href="#contact" class="nav-link px-3 py-2 text-sm font-medium">Contact</a>
</div>
<div class="md:hidden flex items-center">
<button id="menu-btn" class="text-gray-500 hover:text-gray-900 focus:outline-none">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white pb-3 px-2">
<a href="#home" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:bg-gray-100">Accueil</a>
<a href="#projects" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:bg-gray-100">Projets</a>
<a href="#about" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:bg-gray-100">À propos</a>
<a href="#cv" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:bg-gray-100">CV</a>
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:bg-gray-100">Contact</a>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="pt-24 pb-16 md:pt-32 md:pb-24 gradient-bg text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex items-center">
<div class="md:w-1/2 mb-8 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Moustapha Sidibé</h1>
<h2 class="text-2xl md:text-3xl font-semibold mb-6">Spécialiste en Intelligence Artificielle & Data Science</h2>
<p class="text-lg mb-8">Je transforme des données en solutions intelligentes pour résoudre des problèmes complexes.</p>
<div class="flex space-x-4">
<a href="#projects" class="px-6 py-3 bg-white text-purple-700 font-medium rounded-lg hover:bg-gray-100 transition duration-300">Voir mes projets</a>
<a href="#contact" class="px-6 py-3 border border-white text-white font-medium rounded-lg hover:bg-white hover:text-purple-700 transition duration-300">Me contacter</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="w-64 h-64 md:w-80 md:h-80 rounded-full bg-white bg-opacity-20 flex items-center justify-center">
<div class="w-56 h-56 md:w-72 md:h-72 rounded-full bg-white bg-opacity-30 flex items-center justify-center">
<div class="w-48 h-48 md:w-64 md:h-64 rounded-full bg-white bg-opacity-40 flex items-center justify-center">
<i class="fas fa-user-tie text-6xl md:text-8xl text-white"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12 gradient-text bg-gradient-to-r from-purple-600 to-pink-600 bg-clip-text text-transparent">Mes Projets IA</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Projet 1 -->
<div class="project-card bg-white rounded-xl shadow-lg overflow-hidden transition duration-500 ease-in-out">
<div class="h-48 bg-purple-100 flex items-center justify-center">
<i class="fas fa-comment-dots text-6xl text-purple-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Analyse de Sentiment</h3>
<p class="text-gray-600 mb-4">Analyse de sentiment en partant d'un tweet pour déterminer si l'opinion exprimée est positive, négative ou neutre.</p>
<div class="flex justify-between items-center">
<span class="text-sm font-medium text-purple-600">NLP • Transformers</span>
<a href="https://huggingface.co/spaces/moustaphasidibe/Sentiments_prediction" target="_blank" class="px-4 py-2 bg-purple-600 text-white rounded-lg hover:bg-purple-700 transition duration-300">Voir le projet</a>
</div>
</div>
</div>
<!-- Projet 2 -->
<div class="project-card bg-white rounded-xl shadow-lg overflow-hidden transition duration-500 ease-in-out">
<div class="h-48 bg-blue-100 flex items-center justify-center">
<i class="fas fa-x-ray text-6xl text-blue-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Détection de Tuberculose</h3>
<p class="text-gray-600 mb-4">Détection de la tuberculose à partir d'une image radio du patient en utilisant des modèles de vision par ordinateur.</p>
<div class="flex justify-between items-center">
<span class="text-sm font-medium text-blue-600">Computer Vision • CNN</span>
<a href="https://huggingface.co/spaces/moustaphasidibe/tuberculose_predicton" target="_blank" class="px-4 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition duration-300">Voir le projet</a>
</div>
</div>
</div>
<!-- Projet 3 -->
<div class="project-card bg-white rounded-xl shadow-lg overflow-hidden transition duration-500 ease-in-out">
<div class="h-48 bg-green-100 flex items-center justify-center">
<i class="fas fa-image text-6xl text-green-600"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Détection d'Objets</h3>
<p class="text-gray-600 mb-4">Détection d'entités sur une image à partir de dix classes prédéfinies en utilisant des algorithmes de reconnaissance d'images.</p>
<div class="flex justify-between items-center">
<span class="text-sm font-medium text-green-600">Object Detection • YOLO</span>
<a href="https://huggingface.co/spaces/moustaphasidibe/Images_prediction" target="_blank" class="px-4 py-2 bg-green-600 text-white rounded-lg hover:bg-green-700 transition duration-300">Voir le projet</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex items-center">
<div class="md:w-1/2 mb-8 md:mb-0">
<h2 class="text-3xl font-bold mb-6 gradient-text bg-gradient-to-r from-purple-600 to-pink-600 bg-clip-text text-transparent">À propos de moi</h2>
<p class="text-lg mb-6">Je suis un passionné d'intelligence artificielle et de data science, actuellement étudiant en Mathématiques et Informatique à l'Université Gamal Abdel Nasser de Conakry.</p>
<p class="text-lg mb-6">Mon objectif est de mettre mes compétences au service d'entreprises innovantes pour résoudre des problèmes complexes tout en continuant à apprendre et à me perfectionner dans le domaine de l'IA.</p>
<div class="flex space-x-4">
<div class="flex items-center">
<i class="fas fa-graduation-cap text-purple-600 mr-2"></i>
<span>Étudiant en MI</span>
</div>
<div class="flex items-center">
<i class="fas fa-map-marker-alt text-purple-600 mr-2"></i>
<span>Conakry, Guinée</span>
</div>
</div>
</div>
<div class="md:w-1/2 md:pl-12">
<h3 class="text-xl font-semibold mb-4">Mes compétences</h3>
<div class="mb-4">
<div class="flex justify-between mb-1">
<span class="font-medium">Machine Learning</span>
<span>85%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 85%"></div>
</div>
</div>
<div class="mb-4">
<div class="flex justify-between mb-1">
<span class="font-medium">Deep Learning</span>
<span>80%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 80%"></div>
</div>
</div>
<div class="mb-4">
<div class="flex justify-between mb-1">
<span class="font-medium">Traitement du Langage</span>
<span>75%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 75%"></div>
</div>
</div>
<div class="mb-4">
<div class="flex justify-between mb-1">
<span class="font-medium">Vision par Ordinateur</span>
<span>80%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 80%"></div>
</div>
</div>
<div class="mb-4">
<div class="flex justify-between mb-1">
<span class="font-medium">Python</span>
<span>90%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 90%"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CV Section -->
<section id="cv" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12 gradient-text bg-gradient-to-r from-purple-600 to-pink-600 bg-clip-text text-transparent">Mon Curriculum Vitae</h2>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
<!-- Informations personnelles -->
<div class="bg-gray-50 p-6 rounded-lg shadow">
<h3 class="text-xl font-semibold mb-4 text-purple-600 border-b pb-2">Informations Personnelles</h3>
<div class="space-y-4">
<div>
<h4 class="font-medium">Nom complet</h4>
<p>Moustapha Sidibé</p>
</div>
<div>
<h4 class="font-medium">Date de naissance</h4>
<p>18 Mai 2004</p>
</div>
<div>
<h4 class="font-medium">Adresse</h4>
<p>Simbaya II, Conakry</p>
</div>
<div>
<h4 class="font-medium">Téléphone</h4>
<p>+224 662 69 86 16</p>
</div>
<div>
<h4 class="font-medium">Email</h4>
<p>mssidiboss@gmail.com</p>
</div>
<div>
<h4 class="font-medium">Nationalité</h4>
<p>Guinéenne</p>
</div>
</div>
</div>
<!-- Formation -->
<div class="bg-gray-50 p-6 rounded-lg shadow">
<h3 class="text-xl font-semibold mb-4 text-purple-600 border-b pb-2">Formation</h3>
<div class="space-y-6">
<div class="relative pl-8 timeline-item">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-purple-600"></div>
<h4 class="font-medium">Licence 1 en Mathématiques Informatique</h4>
<p class="text-sm text-gray-600">2024 - Université Gamal Abdel Nasser de Conakry</p>
</div>
<div class="relative pl-8 timeline-item">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-purple-600"></div>
<h4 class="font-medium">Baccalauréat - Sciences Mathématiques</h4>
<p class="text-sm text-gray-600">2020-2023 - Lycée Simlapy</p>
</div>
<div class="relative pl-8 timeline-item">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-purple-600"></div>
<h4 class="font-medium">BEPC</h4>
<p class="text-sm text-gray-600">2017-2020 - Groupe Scolaire Sophiapole</p>
</div>
<div class="relative pl-8">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-purple-600"></div>
<h4 class="font-medium">CEP</h4>
<p class="text-sm text-gray-600">2010-2016 - Groupe Scolaire Concordia</p>
</div>
</div>
</div>
<!-- Compétences et Objectifs -->
<div class="bg-gray-50 p-6 rounded-lg shadow">
<h3 class="text-xl font-semibold mb-4 text-purple-600 border-b pb-2">Objectif de Carrière</h3>
<p class="mb-6">Mettre mes compétences au service d'une grande entreprise de renommée mondiale afin d'accroître mes connaissances et acquérir de l'expérience, pour ensuite envisager de réaliser mes propres projets comme créer ma propre entreprise et devenir indépendant.</p>
<h3 class="text-xl font-semibold mb-4 text-purple-600 border-b pb-2">Compétences</h3>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-check-circle text-purple-600 mr-2"></i>
<span>Maîtrise de Microsoft Office</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-purple-600 mr-2"></i>
<span>Secrétariat Bureautique</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-purple-600 mr-2"></i>
<span>Analyse et interprétation des données</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-purple-600 mr-2"></i>
<span>Élaboration de modèles de prédiction</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-purple-600 mr-2"></i>
<span>Statistiques</span>
</li>
</ul>
</div>
</div>
<div class="mt-8 grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Langues -->
<div class="bg-gray-50 p-6 rounded-lg shadow">
<h3 class="text-xl font-semibold mb-4 text-purple-600 border-b pb-2">Langues</h3>
<div class="space-y-4">
<div>
<h4 class="font-medium">Français</h4>
<p>Avancé</p>
</div>
<div>
<h4 class="font-medium">Anglais</h4>
<p>Intermédiaire</p>
</div>
<div>
<h4 class="font-medium">Langues nationales</h4>
<p>Poulhar, Malinké, Soussou, Diakhanké</p>
</div>
</div>
</div>
<!-- Centres d'intérêt -->
<div class="bg-gray-50 p-6 rounded-lg shadow">
<h3 class="text-xl font-semibold mb-4 text-purple-600 border-b pb-2">Centres d'Intérêt</h3>
<div class="flex flex-wrap gap-3">
<span class="px-3 py-1 bg-purple-100 text-purple-800 rounded-full">Lecture</span>
<span class="px-3 py-1 bg-purple-100 text-purple-800 rounded-full">Cinéma</span>
<span class="px-3 py-1 bg-purple-100 text-purple-800 rounded-full">Sport</span>
<span class="px-3 py-1 bg-purple-100 text-purple-800 rounded-full">Jeux Vidéo</span>
<span class="px-3 py-1 bg-purple-100 text-purple-800 rounded-full">Religion</span>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 gradient-bg text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-12">Contactez-moi</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<h3 class="text-xl font-semibold mb-4">Disponible pour des opportunités</h3>
<p class="mb-6">Je suis ouvert aux collaborations, aux opportunités de stage ou d'emploi dans le domaine de l'intelligence artificielle et de la data science.</p>
<div class="space-y-4">
<div class="flex items-center">
<i class="fas fa-envelope text-xl mr-4"></i>
<span>mssidiboss@gmail.com</span>
</div>
<div class="flex items-center">
<i class="fas fa-phone-alt text-xl mr-4"></i>
<span>+224 662 69 86 16</span>
</div>
<div class="flex items-center">
<i class="fas fa-map-marker-alt text-xl mr-4"></i>
<span>Simbaya II, Conakry, Guinée</span>
</div>
</div>
<div class="mt-8">
<h4 class="font-medium mb-4">Suivez-moi</h4>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center hover:bg-opacity-30 transition duration-300">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center hover:bg-opacity-30 transition duration-300">
<i class="fab fa-github"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-white bg-opacity-20 flex items-center justify-center hover:bg-opacity-30 transition duration-300">
<i class="fab fa-twitter"></i>
</a>
</div>
</div>
</div>
<div class="bg-white bg-opacity-10 backdrop-filter backdrop-blur-lg rounded-xl p-6">
<form id="contact-form" class="space-y-4">
<div>
<label for="name" class="block mb-1">Nom complet</label>
<input type="text" id="name" class="w-full px-4 py-2 bg-white bg-opacity-20 border border-white border-opacity-30 rounded-lg focus:outline-none focus:ring-2 focus:ring-white">
</div>
<div>
<label for="email" class="block mb-1">Email</label>
<input type="email" id="email" class="w-full px-4 py-2 bg-white bg-opacity-20 border border-white border-opacity-30 rounded-lg focus:outline-none focus:ring-2 focus:ring-white">
</div>
<div>
<label for="subject" class="block mb-1">Sujet</label>
<input type="text" id="subject" class="w-full px-4 py-2 bg-white bg-opacity-20 border border-white border-opacity-30 rounded-lg focus:outline-none focus:ring-2 focus:ring-white">
</div>
<div>
<label for="message" class="block mb-1">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 bg-white bg-opacity-20 border border-white border-opacity-30 rounded-lg focus:outline-none focus:ring-2 focus:ring-white"></textarea>
</div>
<button type="submit" class="w-full px-6 py-3 bg-white text-purple-700 font-medium rounded-lg hover:bg-gray-100 transition duration-300">Envoyer le message</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex md:justify-between">
<div class="mb-6 md:mb-0">
<span class="text-xl font-bold gradient-text bg-gradient-to-r from-purple-400 to-pink-400 bg-clip-text text-transparent">Moustapha Sidibé</span>
<p class="mt-2 text-gray-400">Data Scientist & IA Specialist</p>
</div>
<div class="grid grid-cols-2 gap-8 sm:grid-cols-3">
<div>
<h3 class="text-sm font-semibold uppercase tracking-wider">Navigation</h3>
<ul class="mt-4 space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-white">Accueil</a></li>
<li><a href="#projects" class="text-gray-400 hover:text-white">Projets</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white">À propos</a></li>
<li><a href="#cv" class="text-gray-400 hover:text-white">CV</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold uppercase tracking-wider">Projets</h3>
<ul class="mt-4 space-y-2">
<li><a href="https://huggingface.co/spaces/moustaphasidibe/Sentiments_prediction" target="_blank" class="text-gray-400 hover:text-white">Analyse de Sentiment</a></li>
<li><a href="https://huggingface.co/spaces/moustaphasidibe/tuberculose_predicton" target="_blank" class="text-gray-400 hover:text-white">Détection de Tuberculose</a></li>
<li><a href="https://huggingface.co/spaces/moustaphasidibe/Images_prediction" target="_blank" class="text-gray-400 hover:text-white">Détection d'Objets</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold uppercase tracking-wider">Contact</h3>
<ul class="mt-4 space-y-2">
<li class="flex items-center">
<i class="fas fa-envelope mr-2 text-gray-400"></i>
<span class="text-gray-400">mssidiboss@gmail.com</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone-alt mr-2 text-gray-400"></i>
<span class="text-gray-400">+224 662 69 86 16</span>
</li>
</ul>
</div>
</div>
</div>
<div class="mt-8 pt-8 border-t border-gray-800 text-center text-gray-400">
<p>© 2024 Moustapha Sidibé. Tous droits réservés.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('menu-btn').addEventListener('click', function() {
document.getElementById('mobile-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
document.getElementById('mobile-menu').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 data to a server
console.log({name, email, subject, message});
// Show success message
alert('Message envoyé avec succès! Je vous répondrai dès que possible.');
// Reset form
this.reset();
});
// Highlight active nav link on scroll
window.addEventListener('scroll', function() {
const sections = document.querySelectorAll('section');
const navLinks = document.querySelectorAll('.nav-link');
let current = '';
sections.forEach(section => {
const sectionTop = section.offsetTop;
const sectionHeight = section.clientHeight;
if (pageYOffset >= (sectionTop - 300)) {
current = section.getAttribute('id');
}
});
navLinks.forEach(link => {
link.classList.remove('active');
if (link.getAttribute('href') === `#${current}`) {
link.classList.add('active');
}
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=moustaphasidibe/mon-portfolio" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |