File size: 34,295 Bytes
c45a4f5 |
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 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 |
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trackly - Suivi des Habitudes</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root {
--primary: #6366f1;
--primary-dark: #4f46e5;
--secondary: #f43f5e;
--dark: #1e293b;
--light: #f8fafc;
}
body {
font-family: 'Poppins', sans-serif;
background-color: #f1f5f9;
}
.habit-card:hover .habit-progress {
transform: scaleY(1.1);
}
.streak-flame {
animation: pulse 1.5s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
.progress-ring__circle {
transition: stroke-dashoffset 0.5s;
transform: rotate(-90deg);
transform-origin: 50% 50%;
}
</style>
</head>
<body class="min-h-screen">
<!-- Navigation -->
<nav class="bg-white shadow-sm">
<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">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-fire text-indigo-500 text-2xl mr-2"></i>
<span class="text-xl font-bold text-indigo-600">Trackly</span>
</div>
</div>
<div class="hidden sm:ml-6 sm:flex sm:items-center space-x-8">
<a href="#" class="text-indigo-600 px-3 py-2 font-medium">Tableau de bord</a>
<a href="#" class="text-gray-500 hover:text-indigo-600 px-3 py-2 font-medium">Habitudes</a>
<a href="#" class="text-gray-500 hover:text-indigo-600 px-3 py-2 font-medium">Statistiques</a>
<a href="#" class="text-gray-500 hover:text-indigo-600 px-3 py-2 font-medium">Récompenses</a>
</div>
<div class="hidden sm:ml-6 sm:flex sm:items-center">
<button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md font-medium transition">
Passer Premium
</button>
</div>
<div class="-mr-2 flex items-center sm:hidden">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-controls="mobile-menu" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Main Content -->
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
<!-- Header -->
<div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-8">
<div>
<h1 class="text-3xl font-bold text-gray-900">Bonjour, Alex</h1>
<p class="text-gray-500 mt-2">Suivez vos progrès et construisez des habitudes durables</p>
</div>
<div class="mt-4 md:mt-0 flex space-x-3">
<button class="bg-white border border-gray-300 rounded-md px-4 py-2 text-sm font-medium text-gray-700 hover:bg-gray-50 flex items-center">
<i class="fas fa-calendar-alt mr-2 text-indigo-500"></i>
Aujourd'hui
</button>
<button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md font-medium transition flex items-center">
<i class="fas fa-plus mr-2"></i>
Nouvelle habitude
</button>
</div>
</div>
<!-- Stats Overview -->
<div class="grid grid-cols-1 md:grid-cols-4 gap-6 mb-8">
<div class="bg-white rounded-xl shadow-sm p-6">
<div class="flex items-center justify-between">
<div>
<p class="text-gray-500 text-sm font-medium">Série actuelle</p>
<p class="text-2xl font-bold text-gray-900 mt-1">12 <span class="text-sm text-gray-500">jours</span></p>
</div>
<div class="bg-indigo-100 p-3 rounded-full">
<i class="fas fa-fire text-indigo-600 text-xl"></i>
</div>
</div>
<div class="mt-4">
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-indigo-600 h-2 rounded-full" style="width: 75%"></div>
</div>
<p class="text-xs text-gray-500 mt-1">75% de votre objectif de 16 jours</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm p-6">
<div class="flex items-center justify-between">
<div>
<p class="text-gray-500 text-sm font-medium">Habitudes complétées</p>
<p class="text-2xl font-bold text-gray-900 mt-1">5/8</p>
</div>
<div class="bg-green-100 p-3 rounded-full">
<i class="fas fa-check-circle text-green-600 text-xl"></i>
</div>
</div>
<div class="mt-4">
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-green-500 h-2 rounded-full" style="width: 62%"></div>
</div>
<p class="text-xs text-gray-500 mt-1">62% des habitudes terminées</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm p-6">
<div class="flex items-center justify-between">
<div>
<p class="text-gray-500 text-sm font-medium">Taux de réussite</p>
<p class="text-2xl font-bold text-gray-900 mt-1">89%</p>
</div>
<div class="bg-blue-100 p-3 rounded-full">
<i class="fas fa-chart-line text-blue-600 text-xl"></i>
</div>
</div>
<div class="mt-4">
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-blue-500 h-2 rounded-full" style="width: 89%"></div>
</div>
<p class="text-xs text-gray-500 mt-1">+12% depuis la semaine dernière</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm p-6">
<div class="flex items-center justify-between">
<div>
<p class="text-gray-500 text-sm font-medium">Points</p>
<p class="text-2xl font-bold text-gray-900 mt-1">1,240</p>
</div>
<div class="bg-purple-100 p-3 rounded-full">
<i class="fas fa-trophy text-purple-600 text-xl"></i>
</div>
</div>
<div class="mt-4">
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-purple-500 h-2 rounded-full" style="width: 40%"></div>
</div>
<p class="text-xs text-gray-500 mt-1">400 points jusqu'au prochain niveau</p>
</div>
</div>
</div>
<!-- Habits Section -->
<div class="mb-8">
<div class="flex justify-between items-center mb-6">
<h2 class="text-xl font-bold text-gray-900">Vos habitudes du jour</h2>
<div class="flex space-x-2">
<button class="text-gray-500 hover:text-indigo-600">
<i class="fas fa-filter"></i>
</button>
<button class="text-gray-500 hover:text-indigo-600">
<i class="fas fa-sort"></i>
</button>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Habit Card 1 -->
<div class="habit-card bg-white rounded-xl shadow-sm overflow-hidden transition hover:shadow-md">
<div class="p-6">
<div class="flex justify-between items-start">
<div>
<div class="flex items-center">
<div class="bg-indigo-100 p-2 rounded-lg">
<i class="fas fa-running text-indigo-600 text-lg"></i>
</div>
<h3 class="ml-3 font-bold text-gray-900">Course matinale</h3>
</div>
<p class="text-sm text-gray-500 mt-2">30 minutes de course à pied</p>
</div>
<div class="flex items-center">
<span class="text-xs font-medium px-2 py-1 rounded-full bg-green-100 text-green-800">Active</span>
</div>
</div>
<div class="mt-6 flex justify-between items-center">
<div class="flex items-center">
<div class="relative w-10 h-10">
<svg class="w-10 h-10" viewBox="0 0 36 36">
<circle cx="18" cy="18" r="16" fill="none" stroke="#e6e6e6" stroke-width="3"></circle>
<circle class="progress-ring__circle" cx="18" cy="18" r="16" fill="none" stroke="#6366f1" stroke-width="3" stroke-dasharray="100" stroke-dashoffset="30"></circle>
</svg>
<div class="absolute inset-0 flex items-center justify-center">
<span class="text-xs font-bold text-indigo-600">70%</span>
</div>
</div>
<div class="ml-3">
<p class="text-xs text-gray-500">Réussite</p>
<p class="text-sm font-medium">7/10 jours</p>
</div>
</div>
<div class="flex flex-col items-center">
<div class="flex items-center text-yellow-500 streak-flame">
<i class="fas fa-fire"></i>
<span class="ml-1 text-sm font-bold">5</span>
</div>
<p class="text-xs text-gray-500 mt-1">Série actuelle</p>
</div>
</div>
</div>
<div class="habit-progress bg-gray-100 h-2 transition-transform origin-bottom">
<div class="bg-indigo-600 h-2" style="width: 70%"></div>
</div>
</div>
<!-- Habit Card 2 -->
<div class="habit-card bg-white rounded-xl shadow-sm overflow-hidden transition hover:shadow-md">
<div class="p-6">
<div class="flex justify-between items-start">
<div>
<div class="flex items-center">
<div class="bg-blue-100 p-2 rounded-lg">
<i class="fas fa-book text-blue-600 text-lg"></i>
</div>
<h3 class="ml-3 font-bold text-gray-900">Lecture</h3>
</div>
<p class="text-sm text-gray-500 mt-2">20 pages par jour</p>
</div>
<div class="flex items-center">
<span class="text-xs font-medium px-2 py-1 rounded-full bg-green-100 text-green-800">Active</span>
</div>
</div>
<div class="mt-6 flex justify-between items-center">
<div class="flex items-center">
<div class="relative w-10 h-10">
<svg class="w-10 h-10" viewBox="0 0 36 36">
<circle cx="18" cy="18" r="16" fill="none" stroke="#e6e6e6" stroke-width="3"></circle>
<circle class="progress-ring__circle" cx="18" cy="18" r="16" fill="none" stroke="#3b82f6" stroke-width="3" stroke-dasharray="100" stroke-dashoffset="15"></circle>
</svg>
<div class="absolute inset-0 flex items-center justify-center">
<span class="text-xs font-bold text-blue-600">85%</span>
</div>
</div>
<div class="ml-3">
<p class="text-xs text-gray-500">Réussite</p>
<p class="text-sm font-medium">17/20 jours</p>
</div>
</div>
<div class="flex flex-col items-center">
<div class="flex items-center text-yellow-500 streak-flame">
<i class="fas fa-fire"></i>
<span class="ml-1 text-sm font-bold">12</span>
</div>
<p class="text-xs text-gray-500 mt-1">Série actuelle</p>
</div>
</div>
</div>
<div class="habit-progress bg-gray-100 h-2 transition-transform origin-bottom">
<div class="bg-blue-500 h-2" style="width: 85%"></div>
</div>
</div>
<!-- Habit Card 3 -->
<div class="habit-card bg-white rounded-xl shadow-sm overflow-hidden transition hover:shadow-md">
<div class="p-6">
<div class="flex justify-between items-start">
<div>
<div class="flex items-center">
<div class="bg-purple-100 p-2 rounded-lg">
<i class="fas fa-spa text-purple-600 text-lg"></i>
</div>
<h3 class="ml-3 font-bold text-gray-900">Méditation</h3>
</div>
<p class="text-sm text-gray-500 mt-2">10 minutes de pleine conscience</p>
</div>
<div class="flex items-center">
<span class="text-xs font-medium px-2 py-1 rounded-full bg-green-100 text-green-800">Active</span>
</div>
</div>
<div class="mt-6 flex justify-between items-center">
<div class="flex items-center">
<div class="relative w-10 h-10">
<svg class="w-10 h-10" viewBox="0 0 36 36">
<circle cx="18" cy="18" r="16" fill="none" stroke="#e6e6e6" stroke-width="3"></circle>
<circle class="progress-ring__circle" cx="18" cy="18" r="16" fill="none" stroke="#8b5cf6" stroke-width="3" stroke-dasharray="100" stroke-dashoffset="50"></circle>
</svg>
<div class="absolute inset-0 flex items-center justify-center">
<span class="text-xs font-bold text-purple-600">50%</span>
</div>
</div>
<div class="ml-3">
<p class="text-xs text-gray-500">Réussite</p>
<p class="text-sm font-medium">5/10 jours</p>
</div>
</div>
<div class="flex flex-col items-center">
<div class="flex items-center text-yellow-500 streak-flame">
<i class="fas fa-fire"></i>
<span class="ml-1 text-sm font-bold">3</span>
</div>
<p class="text-xs text-gray-500 mt-1">Série actuelle</p>
</div>
</div>
</div>
<div class="habit-progress bg-gray-100 h-2 transition-transform origin-bottom">
<div class="bg-purple-500 h-2" style="width: 50%"></div>
</div>
</div>
<!-- Habit Card 4 -->
<div class="habit-card bg-white rounded-xl shadow-sm overflow-hidden transition hover:shadow-md">
<div class="p-6">
<div class="flex justify-between items-start">
<div>
<div class="flex items-center">
<div class="bg-green-100 p-2 rounded-lg">
<i class="fas fa-utensils text-green-600 text-lg"></i>
</div>
<h3 class="ml-3 font-bold text-gray-900">Repas sains</h3>
</div>
<p class="text-sm text-gray-500 mt-2">3 repas équilibrés par jour</p>
</div>
<div class="flex items-center">
<span class="text-xs font-medium px-2 py-1 rounded-full bg-green-100 text-green-800">Active</span>
</div>
</div>
<div class="mt-6 flex justify-between items-center">
<div class="flex items-center">
<div class="relative w-10 h-10">
<svg class="w-10 h-10" viewBox="0 0 36 36">
<circle cx="18" cy="18" r="16" fill="none" stroke="#e6e6e6" stroke-width="3"></circle>
<circle class="progress-ring__circle" cx="18" cy="18" r="16" fill="none" stroke="#10b981" stroke-width="3" stroke-dasharray="100" stroke-dashoffset="60"></circle>
</svg>
<div class="absolute inset-0 flex items-center justify-center">
<span class="text-xs font-bold text-green-600">40%</span>
</div>
</div>
<div class="ml-3">
<p class="text-xs text-gray-500">Réussite</p>
<p class="text-sm font-medium">4/10 jours</p>
</div>
</div>
<div class="flex flex-col items-center">
<div class="flex items-center text-yellow-500 streak-flame">
<i class="fas fa-fire"></i>
<span class="ml-1 text-sm font-bold">2</span>
</div>
<p class="text-xs text-gray-500 mt-1">Série actuelle</p>
</div>
</div>
</div>
<div class="habit-progress bg-gray-100 h-2 transition-transform origin-bottom">
<div class="bg-green-500 h-2" style="width: 40%"></div>
</div>
</div>
<!-- Habit Card 5 -->
<div class="habit-card bg-white rounded-xl shadow-sm overflow-hidden transition hover:shadow-md">
<div class="p-6">
<div class="flex justify-between items-start">
<div>
<div class="flex items-center">
<div class="bg-red-100 p-2 rounded-lg">
<i class="fas fa-bed text-red-600 text-lg"></i>
</div>
<h3 class="ml-3 font-bold text-gray-900">Sommeil</h3>
</div>
<p class="text-sm text-gray-500 mt-2">7-8 heures par nuit</p>
</div>
<div class="flex items-center">
<span class="text-xs font-medium px-2 py-1 rounded-full bg-green-100 text-green-800">Active</span>
</div>
</div>
<div class="mt-6 flex justify-between items-center">
<div class="flex items-center">
<div class="relative w-10 h-10">
<svg class="w-10 h-10" viewBox="0 0 36 36">
<circle cx="18" cy="18" r="16" fill="none" stroke="#e6e6e6" stroke-width="3"></circle>
<circle class="progress-ring__circle" cx="18" cy="18" r="16" fill="none" stroke="#ef4444" stroke-width="3" stroke-dasharray="100" stroke-dashoffset="20"></circle>
</svg>
<div class="absolute inset-0 flex items-center justify-center">
<span class="text-xs font-bold text-red-600">80%</span>
</div>
</div>
<div class="ml-3">
<p class="text-xs text-gray-500">Réussite</p>
<p class="text-sm font-medium">16/20 jours</p>
</div>
</div>
<div class="flex flex-col items-center">
<div class="flex items-center text-yellow-500 streak-flame">
<i class="fas fa-fire"></i>
<span class="ml-1 text-sm font-bold">8</span>
</div>
<p class="text-xs text-gray-500 mt-1">Série actuelle</p>
</div>
</div>
</div>
<div class="habit-progress bg-gray-100 h-2 transition-transform origin-bottom">
<div class="bg-red-500 h-2" style="width: 80%"></div>
</div>
</div>
<!-- Add New Habit Card -->
<div class="border-2 border-dashed border-gray-300 rounded-xl flex flex-col items-center justify-center p-6 hover:border-indigo-400 hover:bg-indigo-50 transition cursor-pointer">
<div class="w-12 h-12 bg-indigo-100 rounded-full flex items-center justify-center mb-3">
<i class="fas fa-plus text-indigo-600 text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-700">Ajouter une habitude</h3>
<p class="text-sm text-gray-500 mt-1 text-center">Commencez à suivre une nouvelle routine</p>
</div>
</div>
</div>
<!-- Statistics Section -->
<div class="bg-white rounded-xl shadow-sm p-6 mb-8">
<div class="flex justify-between items-center mb-6">
<h2 class="text-xl font-bold text-gray-900">Vos statistiques</h2>
<div class="flex space-x-2">
<button class="text-gray-500 hover:text-indigo-600 text-sm font-medium">Semaine</button>
<button class="text-gray-500 hover:text-indigo-600 text-sm font-medium">Mois</button>
<button class="bg-indigo-100 text-indigo-600 px-3 py-1 rounded-md text-sm font-medium">Année</button>
</div>
</div>
<div class="h-64">
<canvas id="statsChart"></canvas>
</div>
</div>
<!-- Premium CTA -->
<div class="bg-gradient-to-r from-indigo-500 to-purple-600 rounded-xl shadow-sm p-8 text-white">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<h2 class="text-2xl font-bold mb-2">Passez à Trackly Premium</h2>
<p class="opacity-90 max-w-lg">Débloquez des analyses avancées, des plans personnalisés et des fonctionnalités exclusives pour maximiser vos progrès.</p>
</div>
<button class="bg-white text-indigo-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-bold transition whitespace-nowrap">
Essai gratuit de 7 jours
</button>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-white border-t border-gray-200 mt-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-lg font-semibold text-gray-900 mb-4">Trackly</h3>
<p class="text-gray-500 text-sm">Aidez-vous à construire des habitudes durables et à atteindre vos objectifs personnels.</p>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-900 uppercase tracking-wider mb-4">Produit</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-500 hover:text-indigo-600 text-sm">Fonctionnalités</a></li>
<li><a href="#" class="text-gray-500 hover:text-indigo-600 text-sm">Premium</a></li>
<li><a href="#" class="text-gray-500 hover:text-indigo-600 text-sm">Tarifs</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-900 uppercase tracking-wider mb-4">Ressources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-500 hover:text-indigo-600 text-sm">Blog</a></li>
<li><a href="#" class="text-gray-500 hover:text-indigo-600 text-sm">Guides</a></li>
<li><a href="#" class="text-gray-500 hover:text-indigo-600 text-sm">FAQ</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-900 uppercase tracking-wider mb-4">Entreprise</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-500 hover:text-indigo-600 text-sm">À propos</a></li>
<li><a href="#" class="text-gray-500 hover:text-indigo-600 text-sm">Carrières</a></li>
<li><a href="#" class="text-gray-500 hover:text-indigo-600 text-sm">Contact</a></li>
</ul>
</div>
</div>
<div class="mt-8 pt-8 border-t border-gray-200 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-500 text-sm">© 2023 Trackly. 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-indigo-600">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-indigo-600">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-indigo-600">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script>
// Initialize Chart
const ctx = document.getElementById('statsChart').getContext('2d');
const statsChart = new Chart(ctx, {
type: 'line',
data: {
labels: ['Jan', 'Fév', 'Mar', 'Avr', 'Mai', 'Juin', 'Juil', 'Août', 'Sep', 'Oct', 'Nov', 'Déc'],
datasets: [
{
label: 'Habitudes complétées',
data: [65, 59, 80, 81, 76, 85, 90, 92, 88, 95, 93, 97],
borderColor: '#6366f1',
backgroundColor: 'rgba(99, 102, 241, 0.1)',
tension: 0.3,
fill: true
},
{
label: 'Taux de réussite',
data: [72, 75, 78, 82, 85, 87, 89, 91, 90, 93, 94, 96],
borderColor: '#10b981',
backgroundColor: 'rgba(16, 185, 129, 0.1)',
tension: 0.3,
fill: true
}
]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
position: 'top',
},
tooltip: {
mode: 'index',
intersect: false,
}
},
scales: {
y: {
beginAtZero: false,
min: 50,
max: 100,
ticks: {
callback: function(value) {
return value + '%';
}
}
}
}
}
});
// Animate progress rings
document.addEventListener('DOMContentLoaded', function() {
const circles = document.querySelectorAll('.progress-ring__circle');
const radius = 16;
const circumference = 2 * Math.PI * radius;
circles.forEach(circle => {
const percent = parseInt(circle.parentElement.querySelector('span').textContent);
const offset = circumference - (percent / 100) * circumference;
circle.style.strokeDasharray = circumference;
circle.style.strokeDashoffset = offset;
});
// Simulate habit completion
const habitCards = document.querySelectorAll('.habit-card');
habitCards.forEach(card => {
card.addEventListener('click', function() {
const checkIcon = document.createElement('i');
checkIcon.className = 'fas fa-check-circle text-green-500 text-4xl';
const overlay = document.createElement('div');
overlay.className = 'absolute inset-0 bg-white bg-opacity-90 flex items-center justify-center rounded-xl';
overlay.appendChild(checkIcon);
this.style.position = 'relative';
this.appendChild(overlay);
setTimeout(() => {
this.removeChild(overlay);
}, 1500);
});
});
});
</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=zama1/trackly" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |