Spaces:
Running
Running
File size: 30,920 Bytes
b787694 16573fc b787694 16573fc b787694 16573fc b787694 |
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 |
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Briwel Dodaho - Développeur Full Stack</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>
/* Custom CSS for animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
animation: fadeIn 0.8s ease-out forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #3b82f6;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #2563eb;
}
/* Smooth transitions */
.transition-slow {
transition: all 0.5s ease;
}
</style>
</head>
<body class="bg-gray-50 font-sans text-gray-800">
<!-- Navigation -->
<nav class="fixed w-full bg-white shadow-md z-50 transition-slow">
<div class="container mx-auto px-6 py-4">
<div class="flex justify-between items-center">
<div class="text-2xl font-bold text-blue-600">DODAHO</div>
<div class="hidden md:flex space-x-8">
<a href="#home" class="text-blue-600 hover:text-blue-800 transition-slow">Accueil</a>
<a href="#about" class="hover:text-blue-600 transition-slow">À propos</a>
<a href="#skills" class="hover:text-blue-600 transition-slow">Compétences</a>
<a href="#projects" class="hover:text-blue-600 transition-slow">Projets</a>
<a href="#contact" class="hover:text-blue-600 transition-slow">Contact</a>
<a href="uatm-gasa.html" class="hover:text-blue-600 transition-slow">UATM/GASA</a>
</div>
<div class="md:hidden">
<button id="menu-toggle" class="text-gray-800 focus:outline-none">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden mt-4 pb-4">
<a href="#home" class="block py-2 hover:text-blue-600 transition-slow">Accueil</a>
<a href="#about" class="block py-2 hover:text-blue-600 transition-slow">À propos</a>
<a href="#skills" class="block py-2 hover:text-blue-600 transition-slow">Compétences</a>
<a href="#projects" class="block py-2 hover:text-blue-600 transition-slow">Projets</a>
<a href="#contact" class="block py-2 hover:text-blue-600 transition-slow">Contact</a>
<a href="uatm-gasa.html" class="block py-2 hover:text-blue-600 transition-slow">UATM/GASA</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="pt-32 pb-20 px-6 bg-gradient-to-r from-blue-50 to-indigo-50">
<div class="container mx-auto flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 animate-fade-in">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Bonjour, je suis <span class="text-blue-600">Briwel Dodaho</span></h1>
<h2 class="text-2xl md:text-3xl font-semibold mb-6">Développeur Full Stack</h2>
<p class="text-lg mb-8 text-gray-600">Je crée des solutions web modernes et performantes avec Python, JavaScript et WordPress.</p>
<div class="flex space-x-4">
<a href="#projects" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg transition-slow">Voir mes projets</a>
<a href="#contact" class="border-2 border-blue-600 text-blue-600 hover:bg-blue-50 px-6 py-3 rounded-lg transition-slow">Me contacter</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center animate-fade-in delay-1">
<div class="relative w-64 h-64 md:w-80 md:h-80 rounded-full overflow-hidden border-4 border-white shadow-xl">
<img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80" alt="Briwel Dodaho" class="w-full h-full object-cover">
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 px-6 bg-white">
<div class="container mx-auto">
<h2 class="text-3xl font-bold text-center mb-16 relative">
<span class="relative inline-block">
À propos de moi
<span class="absolute bottom-0 left-0 w-full h-1 bg-blue-600"></span>
</span>
</h2>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 animate-fade-in delay-1">
<p class="text-lg mb-6 text-gray-700 leading-relaxed">
Salut ! Je m'appelle Briwel Dodaho, et je suis un développeur passionné par la création de solutions web et d'outils pratiques. Avec mes compétences en <span class="font-semibold text-blue-600">Python</span>, <span class="font-semibold text-blue-600">HTML/CSS</span>, <span class="font-semibold text-blue-600">JavaScript</span> et <span class="font-semibold text-blue-600">WordPress</span>, j'aime construire des sites modernes, des applications dynamiques et des automatisations qui simplifient la vie.
</p>
<p class="text-lg mb-6 text-gray-700 leading-relaxed">
Que ce soit pour un projet freelance ou un poste en entreprise, je mets tout mon cœur à coder des solutions propres et efficaces. Chaque projet est une occasion de relever des défis et d'apprendre quelque chose de nouveau.
</p>
<div class="flex space-x-4">
<a href="#" class="bg-gray-800 hover:bg-gray-900 text-white px-6 py-3 rounded-lg transition-slow flex items-center">
<i class="fab fa-github mr-2"></i> GitHub
</a>
<a href="#" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg transition-slow flex items-center">
<i class="fab fa-linkedin-in mr-2"></i> LinkedIn
</a>
</div>
</div>
<div class="md:w-1/2 md:pl-12 animate-fade-in delay-2">
<div class="bg-gray-100 p-8 rounded-xl">
<h3 class="text-xl font-semibold mb-4 text-blue-600">Mon parcours</h3>
<div class="space-y-6">
<div class="flex">
<div class="mr-4">
<div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center text-blue-600">
<i class="fas fa-graduation-cap"></i>
</div>
</div>
<div>
<h4 class="font-semibold">Diplôme en Informatique</h4>
<p class="text-gray-600">Université de Technologie, 2018-2021</p>
</div>
</div>
<div class="flex">
<div class="mr-4">
<div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center text-blue-600">
<i class="fas fa-briefcase"></i>
</div>
</div>
<div>
<h4 class="font-semibold">Développeur Full Stack</h4>
<p class="text-gray-600">Freelance, 2021-Présent</p>
</div>
</div>
<div class="flex">
<div class="mr-4">
<div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center text-blue-600">
<i class="fas fa-medal"></i>
</div>
</div>
<div>
<h4 class="font-semibold">Certification Python Avancé</h4>
<p class="text-gray-600">2022</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="py-20 px-6 bg-gray-50">
<div class="container mx-auto">
<h2 class="text-3xl font-bold text-center mb-16 relative">
<span class="relative inline-block">
Mes compétences
<span class="absolute bottom-0 left-0 w-full h-1 bg-blue-600"></span>
</span>
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Skill 1 -->
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-slow animate-fade-in">
<div class="text-blue-600 text-4xl mb-4">
<i class="fab fa-python"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Python</h3>
<p class="text-gray-600">Développement backend, scripts d'automatisation, analyse de données avec Flask, Django, Pandas.</p>
</div>
<!-- Skill 2 -->
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-slow animate-fade-in delay-1">
<div class="text-blue-600 text-4xl mb-4">
<i class="fab fa-js"></i>
</div>
<h3 class="text-xl font-semibold mb-2">JavaScript</h3>
<p class="text-gray-600">Applications web interactives, animations, manipulation du DOM, frameworks modernes.</p>
</div>
<!-- Skill 3 -->
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-slow animate-fade-in delay-2">
<div class="text-blue-600 text-4xl mb-4">
<i class="fab fa-wordpress"></i>
</div>
<h3 class="text-xl font-semibold mb-2">WordPress</h3>
<p class="text-gray-600">Création de thèmes personnalisés, plugins, sites e-commerce avec WooCommerce.</p>
</div>
<!-- Skill 4 -->
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-slow animate-fade-in delay-3">
<div class="text-blue-600 text-4xl mb-4">
<i class="fas fa-code"></i>
</div>
<h3 class="text-xl font-semibold mb-2">HTML/CSS</h3>
<p class="text-gray-600">Intégration responsive, animations CSS, frameworks comme TailwindCSS et Bootstrap.</p>
</div>
</div>
<div class="mt-12 grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Additional Skills -->
<div class="bg-white p-6 rounded-xl shadow-md animate-fade-in">
<h3 class="text-xl font-semibold mb-4 text-blue-600">Autres technologies</h3>
<div class="flex flex-wrap gap-3">
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm">Flask</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm">Django</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm">MySQL</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm">Git</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm">REST API</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm">Selenium</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm">BeautifulSoup</span>
<span class="bg-gray-100 px-3 py-1 rounded-full text-sm">WooCommerce</span>
</div>
</div>
<!-- Languages -->
<div class="bg-white p-6 rounded-xl shadow-md animate-fade-in delay-1">
<h3 class="text-xl font-semibold mb-4 text-blue-600">Langues</h3>
<div class="space-y-4">
<div>
<div class="flex justify-between mb-1">
<span class="font-medium">Français</span>
<span class="text-gray-600">Natif</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-blue-600 h-2 rounded-full" style="width: 100%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="font-medium">Anglais</span>
<span class="text-gray-600">Courant</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-blue-600 h-2 rounded-full" style="width: 85%"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 px-6 bg-white">
<div class="container mx-auto">
<h2 class="text-3xl font-bold text-center mb-16 relative">
<span class="relative inline-block">
Mes projets
<span class="absolute bottom-0 left-0 w-full h-1 bg-blue-600"></span>
</span>
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition-slow animate-fade-in">
<div class="h-48 overflow-hidden">
<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="Site e-commerce" class="w-full h-full object-cover transition-slow hover:scale-105">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold">Boutique en ligne</h3>
<span class="bg-blue-100 text-blue-600 text-xs px-2 py-1 rounded-full">WordPress</span>
</div>
<p class="text-gray-600 mb-4">Site e-commerce complet avec WooCommerce, système de paiement et gestion des stocks.</p>
<div class="flex justify-between items-center">
<a href="#" class="text-blue-600 hover:text-blue-800 font-medium">Voir le projet →</a>
<div class="flex space-x-2">
<span class="text-xs bg-gray-100 px-2 py-1 rounded">HTML/CSS</span>
<span class="text-xs bg-gray-100 px-2 py-1 rounded">PHP</span>
<span class="text-xs bg-gray-100 px-2 py-1 rounded">JS</span>
</div>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition-slow animate-fade-in delay-1">
<div class="h-48 overflow-hidden">
<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="Application web" class="w-full h-full object-cover transition-slow hover:scale-105">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold">Gestionnaire de tâches</h3>
<span class="bg-blue-100 text-blue-600 text-xs px-2 py-1 rounded-full">Python</span>
</div>
<p class="text-gray-600 mb-4">Application web avec Flask pour gérer des projets, avec authentification utilisateur.</p>
<div class="flex justify-between items-center">
<a href="#" class="text-blue-600 hover:text-blue-800 font-medium">Voir le projet →</a>
<div class="flex space-x-2">
<span class="text-xs bg-gray-100 px-2 py-1 rounded">Flask</span>
<span class="text-xs bg-gray-100 px-2 py-1 rounded">SQLite</span>
<span class="text-xs bg-gray-100 px-2 py-1 rounded">JS</span>
</div>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition-slow animate-fade-in delay-2">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80" alt="Scraper web" class="w-full h-full object-cover transition-slow hover:scale-105">
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold">Scraper de prix</h3>
<span class="bg-blue-100 text-blue-600 text-xs px-2 py-1 rounded-full">Automatisation</span>
</div>
<p class="text-gray-600 mb-4">Outil Python pour collecter les prix de produits sur des sites e-commerce et générer des rapports.</p>
<div class="flex justify-between items-center">
<a href="#" class="text-blue-600 hover:text-blue-800 font-medium">Voir le projet →</a>
<div class="flex space-x-2">
<span class="text-xs bg-gray-100 px-2 py-1 rounded">Python</span>
<span class="text-xs bg-gray-100 px-2 py-1 rounded">BeautifulSoup</span>
<span class="text-xs bg-gray-100 px-2 py-1 rounded">Pandas</span>
</div>
</div>
</div>
</div>
</div>
<div class="text-center mt-12 animate-fade-in delay-3">
<a href="#" class="inline-block bg-blue-600 hover:bg-blue-700 text-white px-8 py-3 rounded-lg transition-slow">
Voir tous mes projets <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 px-6 bg-gray-50">
<div class="container mx-auto">
<h2 class="text-3xl font-bold text-center mb-16 relative">
<span class="relative inline-block">
Contactez-moi
<span class="absolute bottom-0 left-0 w-full h-1 bg-blue-600"></span>
</span>
</h2>
<div class="flex flex-col md:flex-row gap-12">
<div class="md:w-1/2 animate-fade-in">
<h3 class="text-2xl font-semibold mb-6 text-blue-600">Travaillons ensemble</h3>
<p class="text-lg mb-8 text-gray-700 leading-relaxed">
Vous avez un projet en tête ou souhaitez discuter d'une opportunité ? N'hésitez pas à me contacter. Je suis toujours ouvert à de nouvelles collaborations et défis techniques.
</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="mr-4 text-blue-600 text-xl">
<i class="fas fa-envelope"></i>
</div>
<div>
<h4 class="font-semibold">Email</h4>
<p class="text-gray-600">briwel.dodaho@example.com</p>
</div>
</div>
<div class="flex items-start">
<div class="mr-4 text-blue-600 text-xl">
<i class="fas fa-phone-alt"></i>
</div>
<div>
<h4 class="font-semibold">Téléphone</h4>
<p class="text-gray-600">+33 6 12 34 56 78</p>
</div>
</div>
<div class="flex items-start">
<div class="mr-4 text-blue-600 text-xl">
<i class="fas fa-map-marker-alt"></i>
</div>
<div>
<h4 class="font-semibold">Localisation</h4>
<p class="text-gray-600">Paris, France</p>
</div>
</div>
</div>
<div class="mt-8 flex space-x-4">
<a href="#" class="w-10 h-10 bg-gray-200 hover:bg-blue-600 hover:text-white rounded-full flex items-center justify-center transition-slow">
<i class="fab fa-github"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-200 hover:bg-blue-600 hover:text-white rounded-full flex items-center justify-center transition-slow">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-200 hover:bg-blue-600 hover:text-white rounded-full flex items-center justify-center transition-slow">
<i class="fab fa-twitter"></i>
</a>
</div>
</div>
<div class="md:w-1/2 animate-fade-in delay-1">
<form class="bg-white p-8 rounded-xl shadow-md">
<div class="mb-6">
<label for="name" class="block text-gray-700 font-medium mb-2">Nom complet</label>
<input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent">
</div>
<div class="mb-6">
<label for="email" class="block text-gray-700 font-medium mb-2">Email</label>
<input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent">
</div>
<div class="mb-6">
<label for="subject" class="block text-gray-700 font-medium mb-2">Sujet</label>
<input type="text" id="subject" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent">
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent"></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white py-3 px-6 rounded-lg transition-slow">
Envoyer le message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12 px-6">
<div class="container mx-auto">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<div class="text-2xl font-bold mb-2">DODAHO</div>
<p class="text-gray-400">Développeur Full Stack passionné par la création de solutions web.</p>
</div>
<div class="flex flex-col space-y-2">
<a href="#home" class="hover:text-blue-400 transition-slow">Accueil</a>
<a href="#about" class="hover:text-blue-400 transition-slow">À propos</a>
<a href="#skills" class="hover:text-blue-400 transition-slow">Compétences</a>
<a href="#projects" class="hover:text-blue-400 transition-slow">Projets</a>
<a href="#contact" class="hover:text-blue-400 transition-slow">Contact</a>
<a href="uatm-gasa.html" class="hover:text-blue-400 transition-slow">UATM/GASA</a>
</div>
<div class="mt-6 md:mt-0">
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 bg-gray-700 hover:bg-blue-600 rounded-full flex items-center justify-center transition-slow">
<i class="fab fa-github"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-700 hover:bg-blue-600 rounded-full flex items-center justify-center transition-slow">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-700 hover:bg-blue-600 rounded-full flex items-center justify-center transition-slow">
<i class="fab fa-twitter"></i>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
<p>© 2023 Briwel Dodaho. Tous droits réservés.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('menu-toggle').addEventListener('click', function() {
document.getElementById('mobile-menu').classList.toggle('hidden');
});
// Smooth scrolling for anchor 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');
});
});
// Add shadow to navbar on scroll
window.addEventListener('scroll', function() {
const nav = document.querySelector('nav');
if (window.scrollY > 50) {
nav.classList.add('shadow-lg');
} else {
nav.classList.remove('shadow-lg');
}
});
// Animation on scroll
const animateOnScroll = function() {
const elements = document.querySelectorAll('.animate-fade-in');
elements.forEach(element => {
const elementPosition = element.getBoundingClientRect().top;
const screenPosition = window.innerHeight / 1.3;
if (elementPosition < screenPosition) {
element.classList.add('animate-fade-in');
}
});
};
window.addEventListener('scroll', animateOnScroll);
window.addEventListener('load', animateOnScroll);
</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=Briwel/portfolio" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |