Spaces:
Running
Running
File size: 70,725 Bytes
0a319f8 |
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 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 |
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LearnFlow Pro | Système Automatisé</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.gradient-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.course-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.membership-tier:hover {
transform: scale(1.03);
}
.video-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.progress-ring__circle {
transition: stroke-dashoffset 0.35s;
transform: rotate(-90deg);
transform-origin: 50% 50%;
}
.automated-process {
border: 2px dashed #4F46E5;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 1; }
50% { opacity: 0.5; }
100% { opacity: 1; }
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-lg sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-robot text-indigo-600 text-2xl mr-2"></i>
<span class="text-xl font-bold text-indigo-600">LearnFlow Auto</span>
</div>
<div class="hidden md:ml-10 md:flex md:space-x-8">
<a href="#" class="border-indigo-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Accueil</a>
<a href="#courses" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Cours</a>
<a href="#membership" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Abonnements</a>
<a href="#pricing" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Tarifs</a>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center">
<button id="auto-login" class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md text-sm font-medium mr-4 automated-process">
<i class="fas fa-sign-in-alt mr-2"></i>Connexion Auto
</button>
<button id="auto-signup" class="border border-indigo-600 text-indigo-600 hover:bg-indigo-50 px-4 py-2 rounded-md text-sm font-medium automated-process">
<i class="fas fa-user-plus mr-2"></i>Inscription Auto
</button>
</div>
<div class="-mr-2 flex items-center md: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">Menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Système Automatisé -->
<div class="bg-indigo-100 py-4">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between">
<div class="flex items-center">
<i class="fas fa-cogs text-indigo-600 mr-2"></i>
<span class="font-medium text-indigo-800">SYSTÈME AUTOMATISÉ ACTIVÉ</span>
</div>
<div class="flex space-x-4">
<button id="start-automation" class="bg-green-600 hover:bg-green-700 text-white px-4 py-2 rounded-md text-sm font-medium">
<i class="fas fa-play mr-2"></i>Démarrer
</button>
<button id="stop-automation" class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded-md text-sm font-medium" disabled>
<i class="fas fa-stop mr-2"></i>Arrêter
</button>
<button id="reset-automation" class="bg-gray-600 hover:bg-gray-700 text-white px-4 py-2 rounded-md text-sm font-medium">
<i class="fas fa-undo mr-2"></i>Réinitialiser
</button>
</div>
</div>
<div class="mt-2">
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div id="automation-progress" class="bg-indigo-600 h-2.5 rounded-full" style="width: 0%"></div>
</div>
<div id="automation-status" class="text-sm text-gray-600 mt-1">Prêt à démarrer le processus automatisé...</div>
</div>
</div>
</div>
<!-- Hero Section -->
<div class="gradient-bg text-white">
<div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
<div class="text-center">
<h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl">
Apprentissage Automatisé avec Robot
</h1>
<p class="mt-6 max-w-lg mx-auto text-xl">
Système robotisé pour une expérience d'apprentissage entièrement automatisée.
</p>
<div class="mt-10 flex justify-center space-x-4">
<button id="auto-get-started" class="bg-white text-indigo-600 px-8 py-3 rounded-md text-base font-medium hover:bg-gray-100 md:py-4 md:text-lg md:px-10 automated-process">
<i class="fas fa-rocket mr-2"></i>Démarrer Auto
</button>
<button id="auto-browse-courses" class="bg-indigo-600 bg-opacity-20 text-white px-8 py-3 rounded-md text-base font-medium hover:bg-opacity-30 md:py-4 md:text-lg md:px-10 automated-process">
<i class="fas fa-search mr-2"></i>Parcourir Auto
</button>
</div>
</div>
</div>
</div>
<!-- Stats Section -->
<div class="bg-gray-50 py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-4">
<div class="text-center">
<p class="text-4xl font-extrabold text-indigo-600">10,000+</p>
<p class="mt-2 text-base text-gray-500">Étudiants Automatiques</p>
</div>
<div class="text-center">
<p class="text-4xl font-extrabold text-indigo-600">200+</p>
<p class="mt-2 text-base text-gray-500">Cours Automatisés</p>
</div>
<div class="text-center">
<p class="text-4xl font-extrabold text-indigo-600">50+</p>
<p class="mt-2 text-base text-gray-500">Robots Instructeurs</p>
</div>
<div class="text-center">
<p class="text-4xl font-extrabold text-indigo-600">24/7</p>
<p class="mt-2 text-base text-gray-500">Support Automatisé</p>
</div>
</div>
</div>
</div>
<!-- Featured Courses Section -->
<div id="courses" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Cours en Vedette
</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">
Sélection automatisée des meilleurs cours
</p>
</div>
<div class="mt-12 grid gap-8 md:grid-cols-2 lg:grid-cols-3">
<!-- Course Card 1 -->
<div class="course-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300 ease-in-out">
<div class="relative">
<img class="w-full h-48 object-cover" src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60" alt="Développement Web">
<div class="absolute top-2 right-2 bg-indigo-600 text-white text-xs font-bold px-2 py-1 rounded">
Best-seller
</div>
</div>
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/women/12.jpg" alt="Instructeur">
</div>
<div class="ml-3">
<p class="text-sm font-medium text-gray-900">Sarah Johnson</p>
<div class="flex space-x-1 text-sm text-gray-500">
<span>Développeuse Web</span>
</div>
</div>
</div>
<h3 class="mt-4 text-lg font-medium text-gray-900">Bootcamp Complet en Développement Web</h3>
<p class="mt-2 text-sm text-gray-500">Apprenez HTML, CSS, JavaScript, React, Node.js, MongoDB et plus encore!</p>
<div class="mt-4 flex items-center justify-between">
<div class="flex items-center">
<div class="flex items-center">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star-half-alt text-yellow-400"></i>
<span class="ml-1 text-sm text-gray-500">4.7 (1,234)</span>
</div>
</div>
<div class="text-lg font-medium text-indigo-600">$99.99</div>
</div>
<button class="mt-4 w-full bg-indigo-600 text-white py-2 rounded-md text-sm font-medium hover:bg-indigo-700 automated-process">
<i class="fas fa-robot mr-2"></i>S'inscrire Auto
</button>
</div>
</div>
<!-- Course Card 2 -->
<div class="course-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300 ease-in-out">
<div class="relative">
<img class="w-full h-48 object-cover" src="https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60" alt="Science des Données">
</div>
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Instructeur">
</div>
<div class="ml-3">
<p class="text-sm font-medium text-gray-900">Michael Chen</p>
<div class="flex space-x-1 text-sm text-gray-500">
<span>Data Scientist</span>
</div>
</div>
</div>
<h3 class="mt-4 text-lg font-medium text-gray-900">Science des Données & Machine Learning</h3>
<p class="mt-2 text-sm text-gray-500">Maîtrisez Python, Pandas, NumPy, Matplotlib, Scikit-learn et TensorFlow</p>
<div class="mt-4 flex items-center justify-between">
<div class="flex items-center">
<div class="flex items-center">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="far fa-star text-yellow-400"></i>
<span class="ml-1 text-sm text-gray-500">4.5 (876)</span>
</div>
</div>
<div class="text-lg font-medium text-indigo-600">$129.99</div>
</div>
<button class="mt-4 w-full bg-indigo-600 text-white py-2 rounded-md text-sm font-medium hover:bg-indigo-700 automated-process">
<i class="fas fa-robot mr-2"></i>S'inscrire Auto
</button>
</div>
</div>
<!-- Course Card 3 -->
<div class="course-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300 ease-in-out">
<div class="relative">
<img class="w-full h-48 object-cover" src="https://images.unsplash.com/photo-1507679799987-c73779587ccf?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60" alt="Marketing Digital">
<div class="absolute top-2 right-2 bg-indigo-600 text-white text-xs font-bold px-2 py-1 rounded">
Nouveau
</div>
</div>
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/women/45.jpg" alt="Instructeur">
</div>
<div class="ml-3">
<p class="text-sm font-medium text-gray-900">Emily Rodriguez</p>
<div class="flex space-x-1 text-sm text-gray-500">
<span>Experte en Marketing</span>
</div>
</div>
</div>
<h3 class="mt-4 text-lg font-medium text-gray-900">Masterclass en Marketing Digital</h3>
<p class="mt-2 text-sm text-gray-500">SEO, Médias Sociaux, Marketing de Contenu, Email Marketing & Google Ads</p>
<div class="mt-4 flex items-center justify-between">
<div class="flex items-center">
<div class="flex items-center">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<span class="ml-1 text-sm text-gray-500">4.9 (542)</span>
</div>
</div>
<div class="text-lg font-medium text-indigo-600">$89.99</div>
</div>
<button class="mt-4 w-full bg-indigo-600 text-white py-2 rounded-md text-sm font-medium hover:bg-indigo-700 automated-process">
<i class="fas fa-robot mr-2"></i>S'inscrire Auto
</button>
</div>
</div>
</div>
<div class="mt-12 text-center">
<button id="view-all-courses" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700 automated-process">
<i class="fas fa-list mr-2"></i>Voir Tous les Cours Auto
</button>
</div>
</div>
</div>
<!-- LMS Features Section -->
<div class="bg-gray-50 py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Plateforme d'Apprentissage Automatisée
</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
Tout ce dont vous avez besoin pour réussir votre parcours d'apprentissage automatisé
</p>
</div>
<div class="mt-20">
<div class="space-y-10 md:space-y-0 md:grid md:grid-cols-2 md:gap-x-8 md:gap-y-10">
<!-- Feature 1 -->
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
<i class="fas fa-robot"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg leading-6 font-medium text-gray-900">Leçons Automatisées</h3>
<p class="mt-2 text-base text-gray-500">
Leçons vidéo engageantes avec quiz interactifs et exercices de codage automatisés.
</p>
</div>
</div>
<!-- Feature 2 -->
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
<i class="fas fa-brain"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg leading-6 font-medium text-gray-900">IA d'Apprentissage</h3>
<p class="mt-2 text-base text-gray-500">
Notre IA adapte automatiquement le contenu à votre rythme et style d'apprentissage.
</p>
</div>
</div>
<!-- Feature 3 -->
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
<i class="fas fa-certificate"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg leading-6 font-medium text-gray-900">Certification Automatique</h3>
<p class="mt-2 text-base text-gray-500">
Obtenez des certificats vérifiables automatiquement à la fin de chaque cours.
</p>
</div>
</div>
<!-- Feature 4 -->
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
<i class="fas fa-comments"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg leading-6 font-medium text-gray-900">Support Robotisé</h3>
<p class="mt-2 text-base text-gray-500">
Assistance 24/7 par nos chatbots intelligents et communauté d'apprentissage.
</p>
</div>
</div>
<!-- Feature 5 -->
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
<i class="fas fa-mobile-alt"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg leading-6 font-medium text-gray-900">Apprentissage Mobile</h3>
<p class="mt-2 text-base text-gray-500">
Apprenez en déplacement avec notre application mobile automatisée.
</p>
</div>
</div>
<!-- Feature 6 -->
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white">
<i class="fas fa-briefcase"></i>
</div>
</div>
<div class="ml-4">
<h3 class="text-lg leading-6 font-medium text-gray-900">Services Carrière Automatisés</h3>
<p class="mt-2 text-base text-gray-500">
Accès à un coaching de carrière automatisé et assistance pour la recherche d'emploi.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Video Preview Section -->
<div class="bg-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-8">
<div class="mb-8 lg:mb-0">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Découvrez Notre Plateforme Automatisée
</h2>
<p class="mt-4 text-lg text-gray-500">
Regardez cette démo rapide pour voir comment notre système automatisé fonctionne.
</p>
<div class="mt-8">
<button id="auto-free-trial" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700 automated-process">
<i class="fas fa-magic mr-2"></i>Essai Gratuit Auto
</button>
</div>
</div>
<div class="video-container rounded-lg shadow-xl overflow-hidden">
<iframe src="https://www.youtube.com/embed/9bZkp7q19f0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
<!-- Testimonials Section -->
<div class="bg-indigo-50 py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Témoignages de Nos Utilisateurs
</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
Découvrez ce que nos utilisateurs pensent de notre système automatisé
</p>
</div>
<div class="mt-16 grid gap-8 md:grid-cols-2 lg:grid-cols-3">
<!-- Testimonial 1 -->
<div class="bg-white p-8 rounded-lg shadow-md">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/32.jpg" alt="Témoignage">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Jessica Thompson</h4>
<p class="text-indigo-600">Développeuse Web</p>
</div>
</div>
<div class="mt-4">
<p class="text-gray-600">
"Le Bootcamp de Développement Web a complètement transformé ma carrière. Le système automatisé m'a permis d'apprendre à mon rythme."
</p>
</div>
<div class="mt-4 flex items-center">
<div class="flex items-center">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<button class="mt-4 w-full bg-indigo-100 text-indigo-600 py-2 rounded-md text-sm font-medium hover:bg-indigo-200 automated-process">
<i class="fas fa-reply mr-2"></i>Répondre Auto
</button>
</div>
<!-- Testimonial 2 -->
<div class="bg-white p-8 rounded-lg shadow-md">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/men/54.jpg" alt="Témoignage">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">David Kim</h4>
<p class="text-indigo-600">Data Analyst</p>
</div>
</div>
<div class="mt-4">
<p class="text-gray-600">
"Le cours de Data Science m'a fourni des compétences pratiques que j'ai pu immédiatement appliquer au travail. L'automatisation est impressionnante."
</p>
</div>
<div class="mt-4 flex items-center">
<div class="flex items-center">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star-half-alt text-yellow-400"></i>
</div>
</div>
<button class="mt-4 w-full bg-indigo-100 text-indigo-600 py-2 rounded-md text-sm font-medium hover:bg-indigo-200 automated-process">
<i class="fas fa-reply mr-2"></i>Répondre Auto
</button>
</div>
<!-- Testimonial 3 -->
<div class="bg-white p-8 rounded-lg shadow-md">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Témoignage">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Maria Garcia</p>
<p class="text-indigo-600">Responsable Marketing</p>
</div>
</div>
<div class="mt-4">
<p class="text-gray-600">
"J'ai pu mettre en œuvre des stratégies de marketing digital qui ont augmenté les ventes en ligne de notre entreprise de 35% en trois mois."
</p>
</div>
<div class="mt-4 flex items-center">
<div class="flex items-center">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="far fa-star text-yellow-400"></i>
</div>
</div>
<button class="mt-4 w-full bg-indigo-100 text-indigo-600 py-2 rounded-md text-sm font-medium hover:bg-indigo-200 automated-process">
<i class="fas fa-reply mr-2"></i>Répondre Auto
</button>
</div>
</div>
</div>
</div>
<!-- Membership Tiers Section -->
<div id="membership" class="bg-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Niveaux d'Abonnement
</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">
Choisissez le plan qui correspond à vos objectifs d'apprentissage et à votre budget
</p>
</div>
<div class="mt-12 space-y-4 sm:mt-16 sm:space-y-0 sm:grid sm:grid-cols-3 sm:gap-6 lg:max-w-4xl lg:mx-auto xl:max-w-none xl:mx-0">
<!-- Free Tier -->
<div class="membership-tier border border-gray-200 rounded-lg shadow-sm divide-y divide-gray-200 transition duration-300 ease-in-out">
<div class="p-6">
<h3 class="text-lg leading-6 font-medium text-gray-900">Gratuit</h3>
<p class="mt-4 text-sm text-gray-500">
Parfait pour essayer notre plateforme
</p>
<p class="mt-8">
<span class="text-4xl font-extrabold text-gray-900">$0</span>
<span class="text-base font-medium text-gray-500">/mois</span>
</p>
<button class="mt-8 block w-full bg-gray-800 border border-gray-800 rounded-md py-2 text-sm font-semibold text-white text-center hover:bg-gray-900 automated-process">
<i class="fas fa-bolt mr-2"></i>Commencer Auto
</button>
</div>
<div class="pt-6 pb-8 px-6">
<h4 class="text-xs font-medium text-gray-900 tracking-wide uppercase">Ce qui est inclus</h4>
<ul class="mt-6 space-y-4">
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-500">Accès aux cours gratuits</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-500">Support communautaire</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-500">Suivi de progression basique</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-gray-400">
<i class="fas fa-times"></i>
</div>
<p class="ml-3 text-sm text-gray-500">Certificats de complétion</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-gray-400">
<i class="fas fa-times"></i>
</div>
<p class="ml-3 text-sm text-gray-500">Cours premium</p>
</li>
</ul>
</div>
</div>
<!-- Pro Tier -->
<div class="membership-tier border-2 border-indigo-500 rounded-lg shadow-sm divide-y divide-gray-200 transition duration-300 ease-in-out transform scale-105">
<div class="p-6">
<div class="flex justify-between">
<h3 class="text-lg leading-6 font-medium text-gray-900">Pro</h3>
<span class="inline-flex items-center px-3 py-0.5 rounded-full text-xs font-medium bg-indigo-100 text-indigo-800">
Plus Populaire
</span>
</div>
<p class="mt-4 text-sm text-gray-500">
Pour les apprenants sérieux qui veulent un accès complet
</p>
<p class="mt-8">
<span class="text-4xl font-extrabold text-gray-900">$29</span>
<span class="text-base font-medium text-gray-500">/mois</span>
</p>
<button class="mt-8 block w-full bg-indigo-600 border border-indigo-600 rounded-md py-2 text-sm font-semibold text-white text-center hover:bg-indigo-700 automated-process">
<i class="fas fa-rocket mr-2"></i>M'abonner Auto
</button>
</div>
<div class="pt-6 pb-8 px-6">
<h4 class="text-xs font-medium text-gray-900 tracking-wide uppercase">Ce qui est inclus</h4>
<ul class="mt-6 space-y-4">
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-500">Tous les avantages du niveau gratuit</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-500">Accès à tous les cours premium</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-500">Certificats de complétion</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-500">Suivi de progression avancé</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-500">Ressources téléchargeables</p>
</li>
</ul>
</div>
</div>
<!-- Team Tier -->
<div class="membership-tier border border-gray-200 rounded-lg shadow-sm divide-y divide-gray-200 transition duration-300 ease-in-out">
<div class="p-6">
<h3 class="text-lg leading-6 font-medium text-gray-900">Équipe</h3>
<p class="mt-4 text-sm text-gray-500">
Pour les entreprises et organisations
</p>
<p class="mt-8">
<span class="text-4xl font-extrabold text-gray-900">$99</span>
<span class="text-base font-medium text-gray-500">/mois</span>
</p>
<button class="mt-8 block w-full bg-gray-800 border border-gray-800 rounded-md py-2 text-sm font-semibold text-white text-center hover:bg-gray-900 automated-process">
<i class="fas fa-users mr-2"></i>Commencer Auto
</button>
</div>
<div class="pt-6 pb-8 px-6">
<h4 class="text-xs font-medium text-gray-900 tracking-wide uppercase">Ce qui est inclus</h4>
<ul class="mt-6 space-y-4">
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-500">Tous les avantages du niveau Pro</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-500">Jusqu'à 5 membres d'équipe</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-500">Tableau de bord de progression d'équipe</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-500">Contrôles administrateur</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-500">Support prioritaire</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Pricing Section -->
<div id="pricing" class="bg-gray-50 py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Tarification Simple et Transparente
</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">
Pas de frais cachés. Annulez à tout moment.
</p>
</div>
<div class="mt-16 bg-white rounded-lg shadow-lg overflow-hidden">
<div class="grid grid-cols-1 md:grid-cols-3">
<!-- Monthly Plan -->
<div class="p-8 border-b md:border-b-0 md:border-r">
<h3 class="text-lg font-medium text-gray-900">Mensuel</h3>
<p class="mt-2 text-sm text-gray-500">
Parfait pour essayer notre plateforme
</p>
<div class="mt-6">
<span class="text-4xl font-bold text-gray-900">$29</span>
<span class="text-base font-medium text-gray-500">/mois</span>
</div>
<ul class="mt-8 space-y-4">
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-700">Accès complet à tous les cours</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-700">Ressources téléchargeables</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-700">Certificats de complétion</p>
</li>
</ul>
<div class="mt-8">
<button class="w-full bg-indigo-600 border border-transparent rounded-md py-2 px-6 flex items-center justify-center text-base font-medium text-white hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 automated-process">
<i class="fas fa-calendar-alt mr-2"></i>S'abonner Auto
</button>
</div>
</div>
<!-- Annual Plan -->
<div class="p-8 border-b md:border-b-0 bg-indigo-50">
<div class="flex justify-between">
<h3 class="text-lg font-medium text-gray-900">Annuel</h3>
<span class="inline-flex items-center px-3 py-0.5 rounded-full text-xs font-medium bg-indigo-100 text-indigo-800">
Économisez 20%
</span>
</div>
<p class="mt-2 text-sm text-gray-500">
Meilleur rapport qualité-prix pour les apprenants engagés
</p>
<div class="mt-6">
<span class="text-4xl font-bold text-gray-900">$279</span>
<span class="text-base font-medium text-gray-500">/an</span>
</div>
<ul class="mt-8 space-y-4">
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-700">Tout ce qui est inclus dans Mensuel</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-700">Support prioritaire</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-700">Ateliers exclusifs</p>
</li>
</ul>
<div class="mt-8">
<button class="w-full bg-indigo-600 border border-transparent rounded-md py-2 px-6 flex items-center justify-center text-base font-medium text-white hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 automated-process">
<i class="fas fa-calendar-star mr-2"></i>S'abonner Auto
</button>
</div>
</div>
<!-- Lifetime Plan -->
<div class="p-8">
<h3 class="text-lg font-medium text-gray-900">À Vie</h3>
<p class="mt-2 text-sm text-gray-500">
Paiement unique pour un accès à vie
</p>
<div class="mt-6">
<span class="text-4xl font-bold text-gray-900">$999</span>
<span class="text-base font-medium text-gray-500">une fois</span>
</div>
<ul class="mt-8 space-y-4">
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-700">Tout ce qui est inclus dans Annuel</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-700">Tous les futurs cours inclus</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 h-5 w-5 text-green-500">
<i class="fas fa-check"></i>
</div>
<p class="ml-3 text-sm text-gray-700">Coaching de carrière personnel</p>
</li>
</ul>
<div class="mt-8">
<button class="w-full bg-indigo-600 border border-transparent rounded-md py-2 px-6 flex items-center justify-center text-base font-medium text-white hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 automated-process">
<i class="fas fa-infinity mr-2"></i>S'abonner Auto
</button>
</div>
</div>
</div>
</div>
<div class="mt-8 bg-white rounded-lg shadow-lg overflow-hidden">
<div class="p-8">
<h3 class="text-lg font-medium text-gray-900">Entreprise</h3>
<p class="mt-2 text-sm text-gray-500">
Solutions personnalisées pour les équipes et organisations
</p>
<div class="mt-6">
<p class="text-gray-700">Besoin d'un plan personnalisé pour votre équipe ? Nous offrons des réductions pour volume et des fonctionnalités spéciales pour les organisations.</p>
</div>
<div class="mt-8">
<button class="w-full bg-white border border-indigo-600 rounded-md py-2 px-6 flex items-center justify-center text-base font-medium text-indigo-600 hover:bg-indigo-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 automated-process">
<i class="fas fa-headset mr-2"></i>Contacter Ventes Auto
</button>
</div>
</div>
</div>
</div>
</div>
<!-- FAQ Section -->
<div class="bg-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Questions Fréquemment Posées
</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
Tout ce que vous devez savoir sur notre plateforme automatisée
</p>
</div>
<div class="mt-12">
<div class="space-y-8 divide-y divide-gray-200">
<!-- Question 1 -->
<div class="pt-6 md:grid md:grid-cols-12 md:gap-8">
<dt class="text-base font-medium text-gray-900 md:col-span-5">
Comment fonctionne l'essai gratuit ?
</dt>
<dd class="mt-2 md:mt-0 md:col-span-7">
<p class="text-base text-gray-500">
Notre essai gratuit vous donne un accès complet à notre plateforme pendant 7 jours. Vous pouvez explorer tous les cours, regarder des leçons vidéo et participer à la communauté. Aucune carte de crédit n'est requise pour commencer votre essai.
</p>
<button class="mt-4 bg-indigo-100 text-indigo-600 px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-200 automated-process">
<i class="fas fa-question-circle mr-2"></i>Plus d'infos Auto
</button>
</dd>
</div>
<!-- Question 2 -->
<div class="pt-6 md:grid md:grid-cols-12 md:gap-8">
<dt class="text-base font-medium text-gray-900 md:col-span-5">
Puis-je annuler mon abonnement à tout moment ?
</dt>
<dd class="mt-2 md:mt-0 md:col-span-7">
<p class="text-base text-gray-500">
Oui, vous pouvez annuler votre abonnement à tout moment. Votre accès continuera jusqu'à la fin de votre période de facturation en cours, et vous ne serez plus facturé.
</p>
<button class="mt-4 bg-indigo-100 text-indigo-600 px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-200 automated-process">
<i class="fas fa-question-circle mr-2"></i>Plus d'infos Auto
</button>
</dd>
</div>
<!-- Question 3 -->
<div class="pt-6 md:grid md:grid-cols-12 md:gap-8">
<dt class="text-base font-medium text-gray-900 md:col-span-5">
Les certificats sont-ils reconnus par les employeurs ?
</dt>
<dd class="mt-2 md:mt-0 md:col-span-7">
<p class="text-base text-gray-500">
Nos certificats sont largement reconnus dans l'industrie et peuvent être vérifiés sur notre site web. De nombreux étudiants les ont utilisés pour faire progresser leur carrière ou décrocher de nouveaux emplois.
</p>
<button class="mt-4 bg-indigo-100 text-indigo-600 px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-200 automated-process">
<i class="fas fa-question-circle mr-2"></i>Plus d'infos Auto
</button>
</dd>
</div>
<!-- Question 4 -->
<div class="pt-6 md:grid md:grid-cols-12 md:gap-8">
<dt class="text-base font-medium text-gray-900 md:col-span-5">
À quelle fréquence de nouveaux cours sont-ils ajoutés ?
</dt>
<dd class="mt-2 md:mt-0 md:col-span-7">
<p class="text-base text-gray-500">
Nous ajoutons de nouveaux cours chaque mois dans toutes les catégories. Nos instructeurs travaillent constamment sur de nouveaux contenus pour garder notre bibliothèque fraîche et à jour avec les dernières technologies et tendances.
</p>
<button class="mt-4 bg-indigo-100 text-indigo-600 px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-200 automated-process">
<i class="fas fa-question-circle mr-2"></i>Plus d'infos Auto
</button>
</dd>
</div>
<!-- Question 5 -->
<div class="pt-6 md:grid md:grid-cols-12 md:gap-8">
<dt class="text-base font-medium text-gray-900 md:col-span-5">
Que faire si j'ai besoin d'aide avec un cours ?
</dt>
<dd class="mt-2 md:mt-0 md:col-span-7">
<p class="text-base text-gray-500">
Chaque cours a un forum de discussion dédié où vous pouvez poser des questions et obtenir de l'aide de la part des instructeurs et d'autres étudiants. Notre équipe de support est également disponible pour aider avec tout problème technique.
</p>
<button class="mt-4 bg-indigo-100 text-indigo-600 px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-200 automated-process">
<i class="fas fa-question-circle mr-2"></i>Plus d'infos Auto
</button>
</dd>
</div>
</div>
</div>
</div>
</div>
<!-- CTA Section -->
<div class="gradient-bg">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between">
<h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl">
<span class="block">Prêt à commencer à apprendre ?</span>
<span class="block text-indigo-200">Commencez votre essai gratuit aujourd'hui.</span>
</h2>
<div class="mt-8 flex lg:mt-0 lg:flex-shrink-0">
<div class="inline-flex rounded-md shadow">
<button id="final-cta" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-white hover:bg-indigo-50 automated-process">
<i class="fas fa-robot mr-2"></i>Commencer Auto
</button>
</div>
<div class="ml-3 inline-flex rounded-md shadow">
<button class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-600 bg-opacity-60 hover:bg-opacity-70 automated-process">
<i class="fas fa-info-circle mr-2"></i>En savoir plus Auto
</button>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-800">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div>
<h3 class="text-white text-sm font-semibold tracking-wider uppercase">Produit</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white automated-link">Cours</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white automated-link">Tarifs</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white automated-link">Fonctionnalités</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white automated-link">Intégrations</a></li>
</ul>
</div>
<div>
<h3 class="text-white text-sm font-semibold tracking-wider uppercase">Entreprise</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white automated-link">À propos</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white automated-link">Blog</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white automated-link">Emplois</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white automated-link">Presse</a></li>
</ul>
</div>
<div>
<h3 class="text-white text-sm font-semibold tracking-wider uppercase">Support</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white automated-link">Centre d'aide</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white automated-link">Communauté</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white automated-link">Contactez-nous</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white automated-link">Statut</a></li>
</ul>
</div>
<div>
<h3 class="text-white text-sm font-semibold tracking-wider uppercase">Légal</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white automated-link">Conditions</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white automated-link">Confidentialité</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white automated-link">Cookies</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white automated-link">Licences</a></li>
</ul>
</div>
</div>
<div class="mt-8 border-t border-gray-700 pt-8 md:flex md:items-center md:justify-between">
<div class="flex space-x-6 md:order-2">
<a href="#" class="text-gray-400 hover:text-white automated-link">
<span class="sr-only">Facebook</span>
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white automated-link">
<span class="sr-only">Twitter</span>
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white automated-link">
<span class="sr-only">Instagram</span>
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white automated-link">
<span class="sr-only">LinkedIn</span>
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white automated-link">
<span class="sr-only">YouTube</span>
<i class="fab fa-youtube"></i>
</a>
</div>
<p class="mt-8 text-base text-gray-400 md:mt-0 md:order-1">
© 2023 LearnFlow Auto. Tous droits réservés.
</p>
</div>
</div>
</footer>
<script>
// Système de robotisation complet
document.addEventListener('DOMContentLoaded', function() {
// Variables d'état
let automationInterval;
let currentStep = 0;
const totalSteps = 15;
const automationSpeed = 1000; // 1 seconde entre chaque étape
// Éléments UI
const startBtn = document.getElementById('start-automation');
const stopBtn = document.getElementById('stop-automation');
const resetBtn = document.getElementById('reset-automation');
const progressBar = document.getElementById('automation-progress');
const statusText = document.getElementById('automation-status');
const automatedButtons = document.querySelectorAll('.automated-process');
const automatedLinks = document.querySelectorAll('.automated-link');
// Fonction pour démarrer l'automatisation
function startAutomation() {
startBtn.disabled = true;
stopBtn.disabled = false;
resetBtn.disabled = true;
currentStep = 0;
automationInterval = setInterval(function() {
currentStep++;
const progressPercent = (currentStep / totalSteps) * 100;
progressBar.style.width = `${progressPercent}%`;
// Mettre à jour le statut
statusText.textContent = getStatusMessage(currentStep);
// Simuler le clic sur les boutons en séquence
if (currentStep <= automatedButtons.length) {
const button = automatedButtons[currentStep - 1];
simulateClick(button);
}
// Arrêter quand terminé
if (currentStep >= totalSteps) {
stopAutomation();
statusText.textContent = "Processus automatisé terminé avec succès!";
}
}, automationSpeed);
}
// Fonction pour arrêter l'automatisation
function stopAutomation() {
clearInterval(automationInterval);
startBtn.disabled = false;
stopBtn.disabled = true;
resetBtn.disabled = false;
}
// Fonction pour réinitialiser
function resetAutomation() {
clearInterval(automationInterval);
progressBar.style.width = "0%";
statusText.textContent = "Prêt à démarrer le processus automatisé...";
startBtn.disabled = false;
stopBtn.disabled = true;
resetBtn.disabled = false;
currentStep = 0;
// Réinitialiser tous les boutons
automatedButtons.forEach(button => {
button.classList.remove('bg-green-500', 'text-white');
button.classList.add('bg-indigo-600', 'hover:bg-indigo-700');
});
}
// Messages de statut
function getStatusMessage(step) {
const messages = [
"Démarrage du système robotisé...",
"Connexion automatique en cours...",
"Parcours des cours disponibles...",
"Sélection du cours recommandé...",
"Inscription au cours de développement web...",
"Configuration du profil d'apprentissage...",
"Démarrage de la leçon introductive...",
"Passage au quiz d'évaluation...",
"Soumission des réponses automatisées...",
"Inscription à l'abonnement Pro...",
"Configuration du mode d'apprentissage intensif...",
"Téléchargement des ressources complémentaires...",
"Participation aux forums de discussion...",
"Demande de certificat de complétion...",
"Finalisation du processus automatisé..."
];
return step <= messages.length ? messages[step - 1] : "Étape inconnue";
}
// Simulation de clic avec feedback visuel
function simulateClick(element) {
if (!element) return;
// Feedback visuel
element.classList.remove('bg-indigo-600', 'hover:bg-indigo-700');
element.classList.add('bg-green-500', 'text-white');
// Animation
element.style.transform = 'scale(0.95)';
setTimeout(() => {
element.style.transform = 'scale(1)';
}, 200);
// Déclencher l'action réelle si nécessaire
if (element.tagName === 'BUTTON' || element.tagName === 'A') {
// Dans un vrai système, vous pourriez déclencher l'action réelle ici
console.log(`Action automatisée déclenchée sur: ${element.textContent.trim()}`);
}
}
// Gestion des clics sur les liens automatisés
automatedLinks.forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault();
simulateClick(this);
console.log(`Navigation automatisée vers: ${this.textContent.trim()}`);
});
});
// Écouteurs d'événements
startBtn.addEventListener('click', startAutomation);
stopBtn.addEventListener('click', stopAutomation);
resetBtn.addEventListener('click', resetAutomation);
// Mobile menu toggle
const mobileMenuButton = document.querySelector('[aria-controls="mobile-menu"]');
if (mobileMenuButton) {
mobileMenuButton.addEventListener('click', function() {
const expanded = this.getAttribute('aria-expanded') === 'true' || false;
this.setAttribute('aria-expanded', !expanded);
console.log('Mobile menu toggled');
});
}
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
}
});
});
});
</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=docto41/learnflow-auto" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |