File size: 36,817 Bytes
7c53a1f | 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 |
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SAHAD - Page Moderne</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">
</head>
<body class="font-sans bg-gray-50">
<!-- Barre de navigation -->
<nav class="bg-white shadow-lg w-full fixed top-0 z-50">
<div class="max-w-6xl mx-auto px-4">
<div class="flex justify-between items-center h-16">
<div class="flex items-center">
<i class="fas fa-code text-purple-600 text-2xl mr-2"></i>
<span class="font-semibold text-xl text-gray-800">SAHAD</span>
</div>
<!-- Menu desktop -->
<div class="hidden md:flex space-x-8">
<a href="#accueil" class="text-gray-800 hover:text-purple-600 px-3 py-2 rounded-md text-sm font-medium transition">Accueil</a>
<a href="#services" class="text-gray-800 hover:text-purple-600 px-3 py-2 rounded-md text-sm font-medium transition">Services</a>
<a href="#portfolio" class="text-gray-800 hover:text-purple-600 px-3 py-2 rounded-md text-sm font-medium transition">Portfolio</a>
<a href="#contact" class="text-gray-800 hover:text-purple-600 px-3 py-2 rounded-md text-sm font-medium transition">Contact</a>
</div>
<!-- Bouton mobile -->
<div class="md:hidden">
<button id="menu-btn" class="text-gray-800 focus:outline-none">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
<!-- Menu mobile -->
<div id="mobile-menu" class="hidden md:hidden bg-white pb-3 px-2">
<a href="#accueil" class="block px-3 py-2 rounded-md text-base font-medium text-gray-800 hover:text-purple-600">Accueil</a>
<a href="#services" class="block px-3 py-2 rounded-md text-base font-medium text-gray-800 hover:text-purple-600">Services</a>
<a href="#portfolio" class="block px-3 py-2 rounded-md text-base font-medium text-gray-800 hover:text-purple-600">Portfolio</a>
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-800 hover:text-purple-600">Contact</a>
</div>
</nav>
<style>
/* Animation personnalisée */
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
.floating {
animation: float 3s ease-in-out infinite;
}
/* Gradient personnalisé */
.gradient-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
/* Style personnalisé pour les cartes */
.card-hover: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);
}
</style>
</head>
<body class="font-sans bg-gray-50">
<!-- Hero Section -->
<section id="accueil" class="gradient-bg text-white pt-32 pb-20 px-4">
<div class="max-w-6xl mx-auto flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Salut! Je suis Développeur</h1>
<p class="text-xl mb-8 opacity-90">Je crée des expériences web modernes et réactives qui impressionnent vos utilisateurs.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-white text-purple-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-medium transition duration-300 transform hover:scale-105">
Voir mon travail <i class="fas fa-arrow-right ml-2"></i>
</button>
<button class="border-2 border-white text-white hover:bg-white hover:text-purple-600 px-6 py-3 rounded-lg font-medium transition duration-300 transform hover:scale-105">
<i class="fas fa-envelope mr-2"></i> Me contacter
</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://images.unsplash.com/photo-1571171637578-41bc2dd41cd2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Développement web"
class="rounded-lg shadow-2xl floating max-w-md w-full">
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-white">
<div class="max-w-6xl mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Mes Services</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Je propose une gamme complète de services pour répondre à tous vos besoins numériques.</p>
</div>
<div id="portfolio-grid" class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="bg-gray-50 p-8 rounded-xl transition duration-300 card-hover">
<div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-laptop-code text-purple-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-3">Développement Web</h3>
<p class="text-gray-600">Création de sites web modernes et réactifs avec les dernières technologies comme React, Vue.js et Tailwind CSS.</p>
</div>
<!-- Service 2 -->
<div class="bg-gray-50 p-8 rounded-xl transition duration-300 card-hover">
<div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-mobile-alt text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-3">Applications Mobiles</h3>
<p class="text-gray-600">Développement d'applications iOS et Android performantes avec React Native ou Flutter.</p>
</div>
<!-- Service 3 -->
<div class="bg-gray-50 p-8 rounded-xl transition duration-300 card-hover">
<div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-search-dollar text-green-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-3">SEO Optimisation</h3>
<p class="text-gray-600">Amélioration du référencement naturel pour augmenter votre visibilité sur les moteurs de recherche.</p>
</div>
<!-- Service 4 -->
<div class="bg-gray-50 p-8 rounded-xl transition duration-300 card-hover">
<div class="w-16 h-16 bg-yellow-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-paint-brush text-yellow-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-3">UI/UX Design</h3>
<p class="text-gray-600">Conception d'interfaces utilisateur intuitives et d'expériences utilisateur mémorables.</p>
</div>
<!-- Service 5 -->
<div class="bg-gray-50 p-8 rounded-xl transition duration-300 card-hover">
<div class="w-16 h-16 bg-red-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-server text-red-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-3">Hébergement Cloud</h3>
<p class="text-gray-600">Solutions d'hébergement sécurisées et scalables sur AWS, Google Cloud ou Azure.</p>
</div>
<!-- Service 6 -->
<div class="bg-gray-50 p-8 rounded-xl transition duration-300 card-hover">
<div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-chart-line text-indigo-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-3">Analyse de Données</h3>
<p class="text-gray-600">Analyse et visualisation de données pour prendre des décisions éclairées basées sur les données.</p>
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="py-20 bg-gray-50">
<div class="max-w-6xl mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Mon Portfolio</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Découvrez une sélection de mes projets récents.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Projet 1 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 transform hover:scale-105">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Projet E-commerce" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-semibold text-gray-800 mb-2">Boutique E-commerce</h3>
<p class="text-gray-600 mb-4">Plateforme complète avec paiement en ligne et gestion des stocks.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-purple-100 text-purple-800 text-xs px-3 py-1 rounded-full">React</span>
<span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">Node.js</span>
<span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">MongoDB</span>
</div>
</div>
</div>
<!-- Projet 2 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 transform hover:scale-105">
<img src="https://images.unsplash.com/photo-1467232004584-a241de8b3885?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80"
alt="Projet Application Mobile" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-semibold text-gray-800 mb-2">Application de Fitness</h3>
<p class="text-gray-600 mb-4">Suivi des entraînements et nutrition avec synchronisation des wearables.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">React Native</span>
<span class="bg-red-100 text-red-800 text-xs px-3 py-1 rounded-full">Firebase</span>
</div>
</div>
</div>
<!-- Projet 3 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 transform hover:scale-105">
<img src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Projet Dashboard" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-semibold text-gray-800 mb-2">Dashboard Analytique</h3>
<p class="text-gray-600 mb-4">Visualisation de données en temps réel avec filtres avancés.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-yellow-100 text-yellow-800 text-xs px-3 py-1 rounded-full">Vue.js</span>
<span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">D3.js</span>
<span class="bg-indigo-100 text-indigo-800 text-xs px-3 py-1 rounded-full">Tailwind</span>
</div>
</div>
</div>
<!-- Projet 4 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 transform hover:scale-105">
<img src="https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Projet Blog" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-semibold text-gray-800 mb-2">Plateforme de Blog</h3>
<p class="text-gray-600 mb-4">Système de publication avec gestion des utilisateurs et commentaires.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">Next.js</span>
<span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full">GraphQL</span>
<span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">PostgreSQL</span>
</div>
</div>
</div>
<!-- Projet 5 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 transform hover:scale-105">
<img src="https://images.unsplash.com/photo-1555421689-3f034debb7a6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Projet CRM" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-semibold text-gray-800 mb-2">Système CRM</h3>
<p class="text-gray-600 mb-4">Gestion de relation client avec tableau de bord personnalisable.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-purple-100 text-purple-800 text-xs px-3 py-1 rounded-full">Angular</span>
<span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">NestJS</span>
<span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">MySQL</span>
</div>
</div>
</div>
<!-- Projet 6 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 transform hover:scale-105">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Projet API" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-semibold text-gray-800 mb-2">API RESTful</h3>
<p class="text-gray-600 mb-4">Service backend sécurisé avec authentification JWT et documentation Swagger.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-yellow-100 text-yellow-800 text-xs px-3 py-1 rounded-full">Python</span>
<span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">FastAPI</span>
<span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">Docker</span>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="border-2 border-purple-600 text-purple-600 hover:bg-purple-600 hover:text-white px-6 py-3 rounded-lg font-medium transition duration-300">
Voir plus de projets <i class="fas fa-plus ml-2"></i>
</button>
</div>
</div>
</section>
<!-- Témoignages -->
<section class="py-20 bg-white">
<div class="max-w-6xl mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Ce qu'ils disent de moi</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Les retours de mes clients et collaborateurs.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Témoignage 1 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-semibold text-gray-800">Mariama Dalanda Sy</h4>
<p class="text-gray-600 text-sm">Responsable Marketing</p>
</div>
</div>
<p class="text-gray-700 italic">"Le travail de SalutDev a transformé notre présence en ligne. Notre site web est maintenant plus rapide, plus beau et génère 40% plus de leads qu'avant."</p>
<div class="flex mt-4 text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Témoignage 2 -->
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-semibold text-gray-800">Ahmadou Tijane Bah</h4>
<p class="text-gray-600 text-sm">CEO, Entreprise XYZ</p>
</div>
</div>
<p class="text-gray-700 italic">"Non seulement le projet a été livré à temps, mais l'attention portée aux détails et aux bonnes pratiques a dépassé nos attentes. Un vrai professionnel!"</p>
<div class="flex mt-4 text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 gradient-bg text-white">
<div class="max-w-6xl mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Travaillons ensemble</h2>
<p class="max-w-2xl mx-auto opacity-90">Que vous ayez un projet en tête ou simplement une question, n'hésitez pas à me contacter.</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<div>
<form class="space-y-6">
<div>
<label for="name" class="block mb-2 text-sm font-medium">Votre nom</label>
<input type="text" id="name" class="w-full px-4 py-3 rounded-lg bg-white bg-opacity-10 border border-white border-opacity-20 focus:outline-none focus:ring-2 focus:ring-white focus:ring-opacity-50 placeholder-white placeholder-opacity-70" placeholder="Jean Dupont">
</div>
<div>
<label for="email" class="block mb-2 text-sm font-medium">Votre email</label>
<input type="email" id="email" class="w-full px-4 py-3 rounded-lg bg-white bg-opacity-10 border border-white border-opacity-20 focus:outline-none focus:ring-2 focus:ring-white focus:ring-opacity-50 placeholder-white placeholder-opacity-70" placeholder="jean@exemple.com">
</div>
<div>
<label for="subject" class="block mb-2 text-sm font-medium">Sujet</label>
<input type="text" id="subject" class="w-full px-4 py-3 rounded-lg bg-white bg-opacity-10 border border-white border-opacity-20 focus:outline-none focus:ring-2 focus:ring-white focus:ring-opacity-50 placeholder-white placeholder-opacity-70" placeholder="Proposition de projet">
</div>
<div>
<label for="message" class="block mb-2 text-sm font-medium">Votre message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 rounded-lg bg-white bg-opacity-10 border border-white border-opacity-20 focus:outline-none focus:ring-2 focus:ring-white focus:ring-opacity-50 placeholder-white placeholder-opacity-70" placeholder="Décrivez votre projet..."></textarea>
</div>
<button type="submit" class="w-full bg-white text-purple-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-medium transition duration-300">
Envoyer le message <i class="fas fa-paper-plane ml-2"></i>
</button>
</form>
</div>
<div class="flex flex-col justify-center">
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-white bg-opacity-20 p-3 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-xl"></i>
</div>
<div>
<h4 class="font-semibold text-lg mb-1">Adresse</h4>
<p class="opacity-90">123 Rue du Développement, 75000 Paris, France</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-white bg-opacity-20 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-xl"></i>
</div>
<div>
<h4 class="font-semibold text-lg mb-1">Email</h4>
<p class="opacity-90">contact@sahad.com</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-white bg-opacity-20 p-3 rounded-full mr-4">
<i class="fas fa-phone-alt text-xl"></i>
</div>
<div>
<h4 class="font-semibold text-lg mb-1">Téléphone</h4>
<p class="opacity-90">+33 6 12 34 56 78</p>
</div>
</div>
</div>
<div class="mt-10">
<h4 class="font-semibold text-lg mb-4">Suivez-moi</h4>
<div class="flex space-x-4">
<a href="#" class="bg-white bg-opacity-10 hover:bg-opacity-20 w-10 h-10 rounded-full flex items-center justify-center transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="bg-white bg-opacity-10 hover:bg-opacity-20 w-10 h-10 rounded-full flex items-center justify-center transition duration-300">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="bg-white bg-opacity-10 hover:bg-opacity-20 w-10 h-10 rounded-full flex items-center justify-center transition duration-300">
<i class="fab fa-github"></i>
</a>
<a href="#" class="bg-white bg-opacity-10 hover:bg-opacity-20 w-10 h-10 rounded-full flex items-center justify-center transition duration-300">
<i class="fab fa-dribbble"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Me Section -->
<section id="about" class="py-20 bg-white">
<div class="max-w-6xl mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">À Propos de Moi</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Découvrez mon parcours et mes compétences</p>
</div>
<div class="flex flex-col md:flex-row items-center gap-12">
<div class="md:w-1/3 flex justify-center">
<img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80"
alt="ELhadj Oumar Diallo"
class="rounded-full w-64 h-64 object-cover shadow-xl">
</div>
<div class="md:w-2/3">
<h3 class="text-2xl font-semibold text-gray-800 mb-4">ELhadj Oumar Diallo</h3>
<p class="text-gray-600 mb-6">Développeur Full Stack | Data Scientist | Diplômé en Mathématiques Appliquées</p>
<div class="mb-8">
<h4 class="text-lg font-semibold text-gray-800 mb-3">Formation</h4>
<div class="bg-gray-50 p-4 rounded-lg">
<div class="flex items-start mb-4">
<div class="bg-purple-100 p-2 rounded-full mr-4">
<i class="fas fa-graduation-cap text-purple-600"></i>
</div>
<div>
<h5 class="font-medium text-gray-800">Licence en Mathématiques Appliquées</h5>
<p class="text-gray-600 text-sm">Université Cheikh Anta Diop, Dakar</p>
<p class="text-gray-500 text-xs">2018 - 2021</p>
</div>
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<h4 class="text-lg font-semibold text-gray-800 mb-3">Compétences Techniques</h4>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-check text-purple-600 mr-2"></i>
<span>Développement Full Stack (React, Node.js)</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-purple-600 mr-2"></i>
<span>Data Science & Machine Learning</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-purple-600 mr-2"></i>
<span>Analyse de données avec Python/R</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-purple-600 mr-2"></i>
<span>Bases de données SQL/NoSQL</span>
</li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold text-gray-800 mb-3">Qualités</h4>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-check text-purple-600 mr-2"></i>
<span>Résolution de problèmes complexes</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-purple-600 mr-2"></i>
<span>Sens analytique développé</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-purple-600 mr-2"></i>
<span>Capacité d'adaptation</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-purple-600 mr-2"></i>
<span>Travail en équipe</span>
</li>
</ul>
</div>
</div>
<div class="mt-8">
<a href="#contact" class="bg-purple-600 hover:bg-purple-700 text-white px-6 py-3 rounded-lg font-medium transition inline-block">
Contactez-moi <i class="fas fa-paper-plane ml-2"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-6xl mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-semibold mb-4">SAHAD</h3>
<p class="text-gray-400">Création de solutions web sur mesure pour propulser votre entreprise vers l'avant.</p>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Liens rapides</h4>
<ul class="space-y-2">
<li><a href="#accueil" class="text-gray-400 hover:text-white transition">Accueil</a></li>
<li><a href="#services" class="text-gray-400 hover:text-white transition">Services</a></li>
<li><a href="#portfolio" class="text-gray-400 hover:text-white transition">Portfolio</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white transition">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Services</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Développement Web</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Applications Mobiles</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">UI/UX Design</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Consultation</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Newsletter</h4>
<p class="text-gray-400 mb-4">Abonnez-vous pour recevoir les dernières actualités.</p>
<div class="flex">
<input type="email" placeholder="Votre email" class="px-4 py-2 rounded-l-lg text-gray-900 focus:outline-none w-full">
<button class="bg-purple-600 hover:bg-purple-700 px-4 py-2 rounded-r-lg transition">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm">© 2025 SAHAD. Tous droits réservés.</p>
<div class="flex space-x-6 mt-4 md:mt-0">
<a href="#" class="text-gray-400 hover:text-white transition">Conditions d'utilisation</a>
<a href="#" class="text-gray-400 hover:text-white transition">Politique de confidentialité</a>
</div>
</div>
</div>
</footer>
<!-- Back to top button -->
<button id="back-to-top" class="fixed bottom-8 right-8 bg-purple-600 text-white w-12 h-12 rounded-full flex items-center justify-center shadow-lg transition opacity-0 invisible">
<i class="fas fa-arrow-up"></i>
</button>
<script>
// Menu mobile
const menuBtn = document.getElementById('menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
menuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Back to top button
const backToTopBtn = document.getElementById('back-to-top');
window.addEventListener('scroll', () => {
if (window.pageYOffset > 300) {
backToTopBtn.classList.remove('opacity-0', 'invisible');
backToTopBtn.classList.add('opacity-100', 'visible');
} else {
backToTopBtn.classList.remove('opacity-100', 'visible');
backToTopBtn.classList.add('opacity-0', 'invisible');
}
});
backToTopBtn.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// Animation au chargement
document.addEventListener('DOMContentLoaded', () => {
const elements = document.querySelectorAll('section, .card-hover');
elements.forEach((el, index) => {
setTimeout(() => {
el.style.opacity = '1';
el.style.transform = 'translateY(0)';
}, 100 * index);
});
});
</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=fawzane/mosite" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |