File size: 27,307 Bytes
8891f12 | 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 | <!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sento Clan - Élite Fortnite</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 and effects */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.fade-in {
animation: fadeIn 1s ease-out forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.gradient-text {
background: linear-gradient(45deg, #f72585, #7209b7, #3a0ca3, #4361ee);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.glow:hover {
text-shadow: 0 0 10px rgba(114, 9, 183, 0.7);
}
.stats-card {
transition: all 0.3s ease;
}
.stats-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(114, 9, 183, 0.3);
}
.member-card {
transition: all 0.3s ease;
}
.member-card:hover {
transform: scale(1.05);
z-index: 10;
}
.bg-clan {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.btn-primary {
background: linear-gradient(45deg, #f72585, #7209b7);
transition: all 0.3s ease;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(114, 9, 183, 0.4);
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background: linear-gradient(90deg, #f72585, #7209b7);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
</style>
</head>
<body class="bg-gray-900 text-white font-sans">
<!-- Navigation -->
<nav class="bg-clan py-4 px-6 sticky top-0 z-50 shadow-lg">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<img src="https://via.placeholder.com/50" alt="Sento Logo" class="h-10 w-10 rounded-full">
<span class="text-2xl font-bold gradient-text">SENTO</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#home" class="nav-link">Accueil</a>
<a href="#about" class="nav-link">Le Clan</a>
<a href="#members" class="nav-link">Membres</a>
<a href="#stats" class="nav-link">Stats</a>
<a href="#join" class="nav-link">Recrutement</a>
</div>
<div class="md:hidden">
<button id="menu-toggle" class="text-2xl focus:outline-none">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden bg-gray-800 mt-2 py-2 rounded-lg">
<div class="flex flex-col space-y-3 px-4">
<a href="#home" class="nav-link py-2">Accueil</a>
<a href="#about" class="nav-link py-2">Le Clan</a>
<a href="#members" class="nav-link py-2">Membres</a>
<a href="#stats" class="nav-link py-2">Stats</a>
<a href="#join" class="nav-link py-2">Recrutement</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="relative bg-clan py-20 overflow-hidden">
<div class="absolute inset-0 opacity-20">
<div class="absolute inset-0 bg-gradient-to-br from-purple-900 to-blue-900"></div>
</div>
<div class="container mx-auto px-6 relative z-10">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 fade-in">
<h1 class="text-5xl md:text-6xl font-bold mb-4">
<span class="gradient-text glow">SENTO</span> CLAN
</h1>
<h2 class="text-2xl md:text-3xl font-semibold mb-6 text-purple-300">Élite Fortnite Competitive</h2>
<p class="text-lg mb-8 text-gray-300 max-w-lg">
Rejoignez l'une des équipes les plus redoutables de la scène compétitive Fortnite.
Domination, stratégie et victoire sont notre marque de fabrique.
</p>
<div class="flex space-x-4">
<a href="#join" class="btn-primary px-8 py-3 rounded-full font-bold">Nous Rejoindre</a>
<a href="#stats" class="border border-purple-500 text-purple-300 px-8 py-3 rounded-full font-bold hover:bg-purple-900/30 transition">Nos Stats</a>
</div>
</div>
<div class="md:w-1/2 fade-in delay-1">
<div class="relative">
<img src="https://via.placeholder.com/600x400" alt="Sento Clan in Action" class="rounded-xl shadow-2xl border-4 border-purple-500/30 w-full">
<div class="absolute -bottom-5 -right-5 bg-purple-600 px-4 py-2 rounded-lg shadow-lg">
<span class="font-bold">#1 Clan EU West</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gray-800">
<div class="container mx-auto px-6">
<div class="text-center mb-16 fade-in">
<h2 class="text-4xl font-bold mb-4 gradient-text">NOTRE CLAN</h2>
<div class="w-24 h-1 bg-purple-500 mx-auto mb-6"></div>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">
Fondé en 2019, Sento s'est rapidement imposé comme une force majeure dans le monde compétitif de Fortnite.
</p>
</div>
<div class="grid md:grid-cols-3 gap-10">
<div class="bg-gray-700 p-8 rounded-xl shadow-lg fade-in delay-1">
<div class="text-purple-400 text-4xl mb-4">
<i class="fas fa-trophy"></i>
</div>
<h3 class="text-2xl font-bold mb-3">Compétition</h3>
<p class="text-gray-300">
Nous participons à tous les tournois majeurs avec une approche stratégique unique qui nous a valu de nombreuses victoires.
</p>
</div>
<div class="bg-gray-700 p-8 rounded-xl shadow-lg fade-in delay-2">
<div class="text-purple-400 text-4xl mb-4">
<i class="fas fa-users"></i>
</div>
<h3 class="text-2xl font-bold mb-3">Communauté</h3>
<p class="text-gray-300">
Plus qu'un clan, nous sommes une famille. Entraide, partage et bonne ambiance sont au cœur de notre philosophie.
</p>
</div>
<div class="bg-gray-700 p-8 rounded-xl shadow-lg fade-in delay-3">
<div class="text-purple-400 text-4xl mb-4">
<i class="fas fa-chart-line"></i>
</div>
<h3 class="text-2xl font-bold mb-3">Progression</h3>
<p class="text-gray-300">
Notre programme d'entraînement personnalisé permet à chaque membre d'atteindre son plein potentiel.
</p>
</div>
</div>
</div>
</section>
<!-- Members Section -->
<section id="members" class="py-20 bg-clan">
<div class="container mx-auto px-6">
<div class="text-center mb-16 fade-in">
<h2 class="text-4xl font-bold mb-4 gradient-text">NOS MEMBRES</h2>
<div class="w-24 h-1 bg-purple-500 mx-auto mb-6"></div>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">
Rencontrez nos joueurs d'élite, chacun expert dans son domaine.
</p>
</div>
<div class="grid sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-8">
<!-- Member 1 -->
<div class="member-card bg-gray-800 rounded-xl overflow-hidden shadow-lg fade-in delay-1">
<div class="relative">
<img src="https://via.placeholder.com/300x300" alt="Member" class="w-full h-64 object-cover">
<div class="absolute bottom-0 left-0 bg-purple-600 px-3 py-1 rounded-tr-lg">
<span class="font-bold">IGL</span>
</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-1">Shadow</h3>
<p class="text-purple-300 mb-3">Leader Stratégique</p>
<div class="flex justify-between text-sm text-gray-400">
<span><i class="fas fa-trophy mr-1"></i> 42 Wins</span>
<span><i class="fas fa-headset mr-1"></i> EU West</span>
</div>
</div>
</div>
<!-- Member 2 -->
<div class="member-card bg-gray-800 rounded-xl overflow-hidden shadow-lg fade-in delay-2">
<div class="relative">
<img src="https://via.placeholder.com/300x300" alt="Member" class="w-full h-64 object-cover">
<div class="absolute bottom-0 left-0 bg-blue-600 px-3 py-1 rounded-tr-lg">
<span class="font-bold">Fragger</span>
</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-1">Raven</h3>
<p class="text-blue-300 mb-3">Expert Combat</p>
<div class="flex justify-between text-sm text-gray-400">
<span><i class="fas fa-trophy mr-1"></i> 67 Wins</span>
<span><i class="fas fa-headset mr-1"></i> NA East</span>
</div>
</div>
</div>
<!-- Member 3 -->
<div class="member-card bg-gray-800 rounded-xl overflow-hidden shadow-lg fade-in delay-3">
<div class="relative">
<img src="https://via.placeholder.com/300x300" alt="Member" class="w-full h-64 object-cover">
<div class="absolute bottom-0 left-0 bg-green-600 px-3 py-1 rounded-tr-lg">
<span class="font-bold">Builder</span>
</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-1">Tectonic</h3>
<p class="text-green-300 mb-3">Maître Construction</p>
<div class="flex justify-between text-sm text-gray-400">
<span><i class="fas fa-trophy mr-1"></i> 53 Wins</span>
<span><i class="fas fa-headset mr-1"></i> EU West</span>
</div>
</div>
</div>
<!-- Member 4 -->
<div class="member-card bg-gray-800 rounded-xl overflow-hidden shadow-lg fade-in delay-4">
<div class="relative">
<img src="https://via.placeholder.com/300x300" alt="Member" class="w-full h-64 object-cover">
<div class="absolute bottom-0 left-0 bg-yellow-600 px-3 py-1 rounded-tr-lg">
<span class="font-bold">Sniper</span>
</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-1">Hawkeye</h3>
<p class="text-yellow-300 mb-3">Tireur d'Élite</p>
<div class="flex justify-between text-sm text-gray-400">
<span><i class="fas fa-trophy mr-1"></i> 48 Wins</span>
<span><i class="fas fa-headset mr-1"></i> NA West</span>
</div>
</div>
</div>
</div>
<div class="text-center mt-12 fade-in delay-4">
<a href="#join" class="inline-block btn-primary px-8 py-3 rounded-full font-bold">
Devenir Membre <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Stats Section -->
<section id="stats" class="py-20 bg-gray-800">
<div class="container mx-auto px-6">
<div class="text-center mb-16 fade-in">
<h2 class="text-4xl font-bold mb-4 gradient-text">NOS STATISTIQUES</h2>
<div class="w-24 h-1 bg-purple-500 mx-auto mb-6"></div>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">
Des chiffres qui parlent d'eux-mêmes et témoignent de notre domination.
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6 mb-12">
<div class="stats-card bg-gray-700 p-6 rounded-xl text-center fade-in delay-1">
<div class="text-5xl font-bold gradient-text mb-2">1,250+</div>
<div class="text-xl text-purple-300">Victoires en Tournois</div>
</div>
<div class="stats-card bg-gray-700 p-6 rounded-xl text-center fade-in delay-2">
<div class="text-5xl font-bold gradient-text mb-2">87%</div>
<div class="text-xl text-purple-300">Taux de Top 10</div>
</div>
<div class="stats-card bg-gray-700 p-6 rounded-xl text-center fade-in delay-3">
<div class="text-5xl font-bold gradient-text mb-2">24</div>
<div class="text-xl text-purple-300">Membres Actifs</div>
</div>
<div class="stats-card bg-gray-700 p-6 rounded-xl text-center fade-in delay-4">
<div class="text-5xl font-bold gradient-text mb-2">3.2K</div>
<div class="text-xl text-purple-300">Eliminations/Mois</div>
</div>
</div>
<div class="bg-gray-700 rounded-xl p-8 shadow-lg fade-in">
<h3 class="text-2xl font-bold mb-6 text-center">Répartition des Victoires par Saison</h3>
<div class="h-64">
<!-- Chart placeholder - would be replaced with actual chart in production -->
<div class="flex items-end justify-between h-full border-b-2 border-l-2 border-gray-600 pb-4 pl-4">
<div class="flex flex-col items-center w-1/12">
<div class="bg-purple-500 w-full rounded-t-sm" style="height: 20%;"></div>
<span class="text-xs mt-1">C1</span>
</div>
<div class="flex flex-col items-center w-1/12">
<div class="bg-purple-500 w-full rounded-t-sm" style="height: 35%;"></div>
<span class="text-xs mt-1">C2</span>
</div>
<div class="flex flex-col items-center w-1/12">
<div class="bg-purple-500 w-full rounded-t-sm" style="height: 50%;"></div>
<span class="text-xs mt-1">C3</span>
</div>
<div class="flex flex-col items-center w-1/12">
<div class="bg-purple-500 w-full rounded-t-sm" style="height: 70%;"></div>
<span class="text-xs mt-1">C4</span>
</div>
<div class="flex flex-col items-center w-1/12">
<div class="bg-purple-500 w-full rounded-t-sm" style="height: 85%;"></div>
<span class="text-xs mt-1">C5</span>
</div>
<div class="flex flex-col items-center w-1/12">
<div class="bg-purple-500 w-full rounded-t-sm" style="height: 65%;"></div>
<span class="text-xs mt-1">C6</span>
</div>
<div class="flex flex-col items-center w-1/12">
<div class="bg-purple-500 w-full rounded-t-sm" style="height: 90%;"></div>
<span class="text-xs mt-1">C7</span>
</div>
<div class="flex flex-col items-center w-1/12">
<div class="bg-purple-500 w-full rounded-t-sm" style="height: 100%;"></div>
<span class="text-xs mt-1">C8</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Join Section -->
<section id="join" class="py-20 bg-clan">
<div class="container mx-auto px-6">
<div class="max-w-4xl mx-auto bg-gray-800 rounded-xl shadow-xl overflow-hidden fade-in">
<div class="md:flex">
<div class="md:w-1/2 bg-purple-900/30 p-10 flex flex-col justify-center">
<h2 class="text-3xl font-bold mb-4 gradient-text">REJOIGNEZ SENTO</h2>
<p class="text-gray-300 mb-6">
Vous pensez avoir le niveau pour intégrer notre clan ? Remplissez le formulaire et nous vous contacterons pour des tests.
</p>
<div class="space-y-4">
<div class="flex items-center">
<div class="bg-purple-600 p-2 rounded-full mr-3">
<i class="fas fa-check"></i>
</div>
<span>Niveau compétitif élevé</span>
</div>
<div class="flex items-center">
<div class="bg-purple-600 p-2 rounded-full mr-3">
<i class="fas fa-check"></i>
</div>
<span>Esprit d'équipe</span>
</div>
<div class="flex items-center">
<div class="bg-purple-600 p-2 rounded-full mr-3">
<i class="fas fa-check"></i>
</div>
<span>Disponibilité pour les entraînements</span>
</div>
</div>
</div>
<div class="md:w-1/2 p-10">
<form id="join-form" class="space-y-5">
<div>
<label for="username" class="block mb-1 font-medium">Pseudo Fortnite</label>
<input type="text" id="username" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-purple-500">
</div>
<div>
<label for="platform" class="block mb-1 font-medium">Plateforme</label>
<select id="platform" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-purple-500">
<option value="pc">PC</option>
<option value="ps">PlayStation</option>
<option value="xbox">Xbox</option>
<option value="switch">Switch</option>
<option value="mobile">Mobile</option>
</select>
</div>
<div>
<label for="region" class="block mb-1 font-medium">Région Principale</label>
<select id="region" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-purple-500">
<option value="eu">Europe</option>
<option value="na">Amérique du Nord</option>
<option value="asia">Asie</option>
<option value="oce">Océanie</option>
<option value="me">Moyen-Orient</option>
</select>
</div>
<div>
<label for="stats" class="block mb-1 font-medium">Lien vers vos stats (Tracker Network)</label>
<input type="url" id="stats" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-purple-500">
</div>
<button type="submit" class="w-full btn-primary py-3 rounded-lg font-bold mt-6">
Envoyer la Candidature
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 py-12">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center space-x-2 mb-6 md:mb-0">
<img src="https://via.placeholder.com/40" alt="Sento Logo" class="h-10 w-10 rounded-full">
<span class="text-xl font-bold gradient-text">SENTO CLAN</span>
</div>
<div class="flex space-x-6 mb-6 md:mb-0">
<a href="#" class="text-2xl text-gray-400 hover:text-purple-400 transition">
<i class="fab fa-discord"></i>
</a>
<a href="#" class="text-2xl text-gray-400 hover:text-blue-400 transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-2xl text-gray-400 hover:text-red-400 transition">
<i class="fab fa-youtube"></i>
</a>
<a href="#" class="text-2xl text-gray-400 hover:text-pink-500 transition">
<i class="fab fa-twitch"></i>
</a>
</div>
<div class="text-gray-400 text-sm">
© 2023 Sento Clan. Tous droits réservés.
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('menu-toggle').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Form submission
document.getElementById('join-form').addEventListener('submit', function(e) {
e.preventDefault();
alert('Merci pour votre candidature ! Nous reviendrons vers vous sous peu.');
this.reset();
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
// Animation on scroll
const fadeElements = document.querySelectorAll('.fade-in');
const fadeInObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = 1;
entry.target.style.transform = 'translateY(0)';
}
});
}, { threshold: 0.1 });
fadeElements.forEach(element => {
element.style.opacity = 0;
element.style.transform = 'translateY(20px)';
element.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
fadeInObserver.observe(element);
});
</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=Adrig33k/sento" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |