Spaces:
Runtime error
Runtime error
File size: 75,631 Bytes
6a20884 |
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 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 |
<html lang="fr"><head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="csrf-token" content="dtNPRWYEn03PQzZgW2Afo5R4mWuvsgOOvGt60cd5"> <title>Reu-fit</title> <meta name="description" content="fitness program"> <meta name="robots" content="index, follow"> <link rel="canonical" href="https://reufit.frog.tech"> <meta property="og:type" content="article"> <meta property="og:title" content="Reu-fit"> <meta property="og:description" content="fitness program"> <meta property="og:url" content="https://reufit.frog.tech"> <meta property="og:site_name" content="Reu-fit"> <meta property="og:image" content="https://Frog.b-cdn.net/937/636978e0a61fc/SpigiazR8h2jYUO3M1Ppb7sKUB4Rkyn3Lov2R3KZ.png?width=1920&height=1080&quality=75"> <meta property="og:image:width" content="1920"> <meta property="og:image:height" content="1080"> <link rel="apple-touch-icon" sizes="180x180" href="https://Frog.b-cdn.net/937/636978e0a61fc/MOKqJojxFhs4xNShSSleHthxaOxrs5bTQMvONSzN.png?aspect_ratio=1%3A1&quality=75"> <link rel="icon" type="image/png" sizes="32x32" href="https://Frog.b-cdn.net/937/636978e0a61fc/MOKqJojxFhs4xNShSSleHthxaOxrs5bTQMvONSzN.png?aspect_ratio=1%3A1&quality=75"> <link rel="icon" type="image/png" sizes="16x16" href="https://Frog.b-cdn.net/937/636978e0a61fc/MOKqJojxFhs4xNShSSleHthxaOxrs5bTQMvONSzN.png?aspect_ratio=1%3A1&quality=75"> <link rel="manifest" href="https://reufit.frog.tech/favicon/site.webmanifest"> <link rel="mask-icon" href="https://reufit.frog.tech/favicon/safari-pinned-tab.svg" color="#0090ab"> <meta name="msapplication-TileColor" content="#ffffff"> <meta name="theme-color" content="#ffffff"> <link rel="stylesheet" href="https://rsms.me/inter/inter.css"> <script src="https://reufit.frog.tech/js/flipdown-master/dist/flipdown.min.js" type="text/javascript"></script> <link rel="stylesheet" href="https://reufit.frog.tech/js/flipdown-master/dist/flipdown.min.css"> <link rel="stylesheet" href="/css/funnel.css?id=2b2e602beb44466d1466"> <style> [x-cloak]{display:none;} </style> <style>[wire\:loading], [wire\:loading\.delay], [wire\:loading\.inline-block], [wire\:loading\.inline], [wire\:loading\.block], [wire\:loading\.flex], [wire\:loading\.table], [wire\:loading\.grid], [wire\:loading\.inline-flex] {display: none;}[wire\:loading\.delay\.shortest], [wire\:loading\.delay\.shorter], [wire\:loading\.delay\.short], [wire\:loading\.delay\.long], [wire\:loading\.delay\.longer], [wire\:loading\.delay\.longest] {display:none;}[wire\:offline] {display: none;}[wire\:dirty]:not(textarea):not(input):not(select) {display: none;}input:-webkit-autofill, select:-webkit-autofill, textarea:-webkit-autofill {animation-duration: 50000s;animation-name: livewireautofill;}@keyframes livewireautofill { from {} }</style> <script src="/js/funnel.js?id=68e26d93846c7fdeb05d" defer="" type="text/javascript"></script> <script src="https://js.stripe.com/v3/" type="text/javascript"></script> <style> body{ background-color:#F7F7F7FF; } .bloc-text{ color:#1F2937FF; } .bloc-text h1, .bloc-text h2,.bloc-text h3, .bloc-text h4{ } </style> </head> <body class="font-sans antialiased" data-fid="5926"> <div class="fixed inset-0 z-40 flex items-end justify-center px-4 py-6 pointer-events-none sm:p-6 sm:items-start sm:justify-end"> <div x-data="{ show: false, notification : {} }" x-show="show" @notify.window="show = true; notification = $event.detail; setTimeout(()=>{show = false}, 2500)" x-description="Notification panel, show/hide based on alert state." x-transition:enter="transform ease-out duration-300 transition" x-transition:enter-start="translate-y-2 opacity-0 sm:translate-y-0 sm:translate-x-2" x-transition:enter-end="translate-y-0 opacity-100 sm:translate-x-0" x-transition:leave="transition ease-in duration-100" x-transition:leave-start="opacity-100" x-transition:leave-end="opacity-0" class="w-full max-w-sm overflow-hidden bg-white rounded-lg shadow-lg pointer-events-auto dark:bg-gray-700 ring-1 ring-black ring-opacity-5" style="display: none;"> <div class="p-4"> <div class="flex items-start"> <div class="flex-shrink-0"> <svg x-show="notification.icon === undefined" class="w-6 h-6 text-green-400" x-description="Heroicon name: check-circle" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path> </svg> <svg x-show="notification.icon === 'trash'" class="w-6 h-6 text-red-400" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" style="display: none;"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"></path> </svg> <svg x-show="notification.icon === 'warn'" xmlns="http://www.w3.org/2000/svg" class="w-6 h-6 text-orange-400" fill="none" viewBox="0 0 24 24" stroke="currentColor" style="display: none;"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"></path> </svg> </div> <div class="ml-3 w-0 flex-1 pt-0.5"> <p class="text-sm font-medium text-gray-900 dark:text-white" x-text="notification.title"></p> <p class="mt-1 text-sm text-gray-500 truncate dark:text-gray-400" x-text="notification.text" x-show="notification.text" style="display: none;"></p> </div> <div class="flex flex-shrink-0 ml-4"> <button @click="show = false" class="inline-flex text-gray-400 bg-white rounded-md dark:bg-transparent dark:text-gray-500 dark:hover:text-gray-300 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> <span class="sr-only">Close</span> <svg class="w-5 h-5" x-description="Heroicon name: x" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> <path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd"></path> </svg> </button> </div> </div> </div> </div> </div> <div wire:id="f4VIuFxln1ksoxY5riXq" class="min-h-screen"> <div wire:id="dObOQO2Bhs1f5BGpR1Gk" x-data="{open:window.Livewire.find('dObOQO2Bhs1f5BGpR1Gk').entangle('open')}"> <div class="fixed inset-0 z-50 overflow-y-auto" x-show="open" style="display: none;"> <div class="flex items-end justify-center min-h-screen px-4 pt-4 pb-20 text-center sm:block sm:p-0"> <div class="fixed inset-0 transition-opacity" x-show="open" x-transition:enter="ease-out duration-300" x-transition:enter-start="opacity-0" x-transition:enter-end="opacity-100" x-transition:leave="ease-in duration-200" x-transition:leave-start="opacity-100" x-transition:leave-end="opacity-0" style="display: none;"> <div class="absolute inset-0 bg-gray-500 opacity-75 dark:bg-gray-900"></div> </div> <span class="hidden sm:inline-block sm:align-middle sm:h-screen"></span>​ <div x-show="open" x-transition:enter="ease-out duration-300" x-transition:enter-start="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95" x-transition:enter-end="opacity-100 translate-y-0 sm:scale-100" x-transition:leave="ease-in duration-200" x-transition:leave-start="opacity-100 translate-y-0 sm:scale-100" x-transition:leave-end="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95" class="inline-block overflow-hidden text-left align-bottom transition-all transform sm:my-8 sm:align-middle sm:max-w-lg sm:w-full" role="dialog" aria-modal="true" aria-labelledby="modal-headline" style="display: none;"> <div class="overflow-hidden bg-white rounded-lg shadow-xl"> </div> </div> </div> </div> </div> <div class="flex flex-col flex-grow min-h-screen"> <div id="content" class="preview-content content-render-1704741441"> <div class="relative bloc-section-content element-anchor-1051446 none "> <div class="absolute top-0 left-0 w-full h-full" style="clip: rect(0, auto, auto, 0); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity:0.66; "> <img class="absolute top-0 left-0 object-bottom object-cover w-full h-full" style="z-index: 1;" src="https://Frog.b-cdn.net/937/636978e0a61fc/bhoXRI81DVlhg0Cz7RDehwIHZ3FoAgnqhwKm9ti5.png?width=1920&height=1080&quality=75" srcset="https://Frog.b-cdn.net/937/636978e0a61fc/bhoXRI81DVlhg0Cz7RDehwIHZ3FoAgnqhwKm9ti5.png?width=320&quality=75 320w, https://Frog.b-cdn.net/937/636978e0a61fc/bhoXRI81DVlhg0Cz7RDehwIHZ3FoAgnqhwKm9ti5.png?width=640&quality=75 640w, https://Frog.b-cdn.net/937/636978e0a61fc/bhoXRI81DVlhg0Cz7RDehwIHZ3FoAgnqhwKm9ti5.png?width=1024&quality=75 1024w, https://Frog.b-cdn.net/937/636978e0a61fc/bhoXRI81DVlhg0Cz7RDehwIHZ3FoAgnqhwKm9ti5.png?width=1600&quality=75 1600w, https://Frog.b-cdn.net/937/636978e0a61fc/bhoXRI81DVlhg0Cz7RDehwIHZ3FoAgnqhwKm9ti5.png?width=2048&quality=75 2048w"> </div> <div class="absolute inset-0" style="background-color:#000000BD;z-index:2; backdrop-filter: blur(2px); "></div> <div class="relative" style="z-index:5;max-width:100%;"> <div class="container-xl relative element-anchor-1051447"> <div class=" bloc-group-content mx-auto shadow-none px-4 md:px-9 pt-6 pb-3 rounded-t-none rounded-b-none none " style=" background-color:#FFFFFF00; "> <div class="relative" style="z-index:5;"> <div> <div class="relative column"> <div class="element-anchor-1051454 none"> <div class=" pt-3 pb-9 flex justify-center "> <div class="relative"> <img alt="" class="max-w-full shadow-none rounded-none " style="width:170px" src="https://Frog.b-cdn.net/937/636978e0a61fc/hJi3kijwC85U1mlWrvMAR56fZkCUAFr4ZMVURQ8v.png?width=1920&height=1080&quality=75" srcset="https://Frog.b-cdn.net/937/636978e0a61fc/hJi3kijwC85U1mlWrvMAR56fZkCUAFr4ZMVURQ8v.png?width=320&quality=75 320w, https://Frog.b-cdn.net/937/636978e0a61fc/hJi3kijwC85U1mlWrvMAR56fZkCUAFr4ZMVURQ8v.png?width=640&quality=75 640w, https://Frog.b-cdn.net/937/636978e0a61fc/hJi3kijwC85U1mlWrvMAR56fZkCUAFr4ZMVURQ8v.png?width=1024&quality=75 1024w, https://Frog.b-cdn.net/937/636978e0a61fc/hJi3kijwC85U1mlWrvMAR56fZkCUAFr4ZMVURQ8v.png?width=1600&quality=75 1600w, https://Frog.b-cdn.net/937/636978e0a61fc/hJi3kijwC85U1mlWrvMAR56fZkCUAFr4ZMVURQ8v.png?width=2048&quality=75 2048w"> </div> </div> </div> <div class="element-anchor-1051475 none"> <div class="ck-content bloc-text break-words pt-3 pb-3 justify-center flex "> <div style=" width:100%; "> <h3 style="text-align:center;"><span class="text-size-7" style="color:#FFFFFF;"><strong>Bienvenue dans le monde du sport :</strong></span></h3> </div> </div> </div> <div class="element-anchor-1051504 none"> <div class="ck-content bloc-text break-words pt-0 pb-0 justify-center flex "> <div style=" width:100%; "> <p style="text-align:center;"><span class="text-size-10" style="color:#FFFFFF;"><strong>OBTIENS DES RÉSULTATS </strong></span><span class="text-size-12" style="color:#f76e10;"><strong>INCROYABLES </strong></span><span class="text-size-10" style="color:#FFFFFF;"><strong>EN UN </strong></span><span class="text-size-12" style="color:#f76e10;"><strong>TEMPS RECORD</strong></span><span class="text-size-10" style="color:#FFFFFF;"><strong> AVEC MON PROGRAMME </strong></span><span class="text-size-10" style="color:#f76e10;"><strong>SIMPLE</strong></span><span class="text-size-10" style="color:#FFFFFF;"><strong>, </strong></span><span class="text-size-10" style="color:#f76e10;"><strong>EFFICACE</strong></span><span class="text-size-10" style="color:#FFFFFF;"><strong> ET ADAPTÉ À </strong></span><span class="text-size-10" style="color:#f76e10;"><strong>TON</strong></span><span class="text-size-10" style="color:#FFFFFF;"><strong> NIVEAU !</strong></span></p> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="relative bloc-section-content element-anchor-1556397 none "> <div class="absolute top-0 left-0 w-full h-full" style="clip: rect(0, auto, auto, 0); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity:1; "> <img class="absolute top-0 left-0 object-bottom object-cover w-full h-full" style="z-index: 1;" src="https://Frog.b-cdn.net/22/60fe64b90c69f/Tz4ilwJkTkCIqRr32wdY6R1uo2PRlYkHkY55xG4B.svg"> </div> <div class="absolute inset-0" style="background-color:#00000061;z-index:2; "></div> <div class="relative" style="z-index:5;max-width:100%;"> <div class="container-xl relative element-anchor-1051448"> <div class="bloc-group-content mx-auto shadow-none px-4 md:px-9 pt-3 pb-3 rounded-t-none rounded-b-none appear-animate animation-fade-in-from-left appeared" style=" background-color:#FFFFFF00; "> <div class="relative" style="z-index:5;"> <div> <div class="relative column"> <div class="element-anchor-1051517 none"> <div wire:id="dsCSHfQMYxzpwOFApA4v" class=" pt-3 pb-3 flex justify-center "> <div> <button onclick="if (!window.__cfRLUnblockHandlers) return false; smoothScroll('.element-anchor-1051449');" class="text-center cursor-pointer relative inline-block px-4 md:px-9 py-2 md:py-4 rounded-full shadow-2xl button-effect-3d button-effect-shiny " style="background-color:#F76E10;color:#FFFFFFFF;"> <div class="break-words ck-content"> <p>TU ES DEBUTANT ? (CLIQUE ICI)</p> </div> <svg wire:loading="" class="absolute w-5 h-5 text-white top-2 right-2 animate-spin" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"> <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle> <path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path> </svg> </button> </div> </div> </div> <div class="element-anchor-1051518 none"> <div wire:id="NOVHi3Y4GIYsNAhy1iu4" class=" pt-3 pb-3 flex justify-center "> <div> <button onclick="if (!window.__cfRLUnblockHandlers) return false; smoothScroll('.element-anchor-1085122');" class="text-center cursor-pointer relative inline-block px-4 md:px-9 py-2 md:py-4 rounded-full shadow-2xl button-effect-3d button-effect-shiny " style="background-color:#F76E10;color:#FFFFFFFF;"> <div class="break-words ck-content"> <p>TU PRATIQUES DEPUIS PLUS DE 10 MOIS ? (CLIQUE LA)</p> </div> <svg wire:loading="" class="absolute w-5 h-5 text-white top-2 right-2 animate-spin" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"> <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle> <path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path> </svg> </button> </div> </div> </div> <div class="element-anchor-1051520 none"> <div class="flex justify-center none"> <div class="w-full"> <div class="h-36 md:h-48"></div> </div> </div> </div> <div class="element-anchor-1051449 none"> <div class="ck-content bloc-text break-words pt-3 pb-3 justify-center flex "> <div style=" width:100%; "> <h2 style="text-align:center;"><span class="text-size-11" style="color:#000000;"><strong>OBTIENS DES RESULTATS RAPIDES</strong></span></h2> </div> </div> </div> </div> </div> </div> </div> </div> <div class="container-lg relative element-anchor-1051477"> <div class=" bloc-group-content mx-auto shadow-none px-4 md:px-9 pt-3 pb-3 rounded-t-none rounded-b-none appear-animate animation-fade-in-from-bottom " style=" background-color:#FFFFFF00; "> <div class="relative" style="z-index:5;"> <div> <div class="relative column"> <div class="element-anchor-1051450 none"> <div class="ck-content bloc-text break-words pt-3 pb-3 justify-center flex "> <div style=" width:100%; "> <p><span class="text-size-5"><strong>Tu veux savoir le secret des transformations incroyables que tu vois sur les réseaux sociaux ?</strong></span></p><p><span class="text-size-5">Tu rêves de pouvoir obtenir des résultats <strong>rapidement </strong>sans avoir à investir des <strong>heures</strong> de ton temps à rechercher les <strong>meilleures techniques d'entraînement</strong>. Tu as l'impression que tu n'as pas assez de matériel pour faire des exercices efficaces. Tu voudrais un programme <strong>simple </strong>et <strong>facile</strong> à utiliser qui t'apporterai toutes les informations dont tu as besoin pour atteindre tes objectifs de remise en forme sans prendre le risque de te blesser.</span></p><p> </p><p> </p><p><span class="text-size-5">Eh bien, ne cherche plus ! J'ai le <strong>guide d'entraînement</strong> parfait pour toi !</span></p><p><span class="text-size-5">Ce dernier est conçu pour te permettre d'obtenir des résultats <strong>rapidement</strong>, sans avoir besoin d'un équipement coûteux ou compliqué. Grâce à lui, tu pourras travailler ton corps de manière <strong>efficace</strong>, avec des exercices ciblés et <strong>adaptés à ton niveau</strong> de condition physique. Et surtout, tu pourras atteindre tes objectifs de remise en forme sans avoir à passer des heures à la salle de sport !</span></p><p> </p><p> </p><p> </p> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="relative bloc-section-content element-anchor-1085122 none "> <div class="absolute top-0 left-0 w-full h-full" style="clip: rect(0, auto, auto, 0); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity:0.37; "> <img class="absolute top-0 left-0 object-center object-cover w-full h-full" style="z-index: 1;" src="https://Frog.b-cdn.net/937/636978e0a61fc/Ur2iRGDdvAwFAbd3CfA7HzblbTA9ctaEngL2zylN.jpg?width=1920&height=1080&quality=75" srcset="https://Frog.b-cdn.net/937/636978e0a61fc/Ur2iRGDdvAwFAbd3CfA7HzblbTA9ctaEngL2zylN.jpg?width=320&quality=75 320w, https://Frog.b-cdn.net/937/636978e0a61fc/Ur2iRGDdvAwFAbd3CfA7HzblbTA9ctaEngL2zylN.jpg?width=640&quality=75 640w, https://Frog.b-cdn.net/937/636978e0a61fc/Ur2iRGDdvAwFAbd3CfA7HzblbTA9ctaEngL2zylN.jpg?width=1024&quality=75 1024w, https://Frog.b-cdn.net/937/636978e0a61fc/Ur2iRGDdvAwFAbd3CfA7HzblbTA9ctaEngL2zylN.jpg?width=1600&quality=75 1600w, https://Frog.b-cdn.net/937/636978e0a61fc/Ur2iRGDdvAwFAbd3CfA7HzblbTA9ctaEngL2zylN.jpg?width=2048&quality=75 2048w"> </div> <div class="absolute inset-0" style="background-color:#0000004A;z-index:2; backdrop-filter: blur(14px); "></div> <div class="relative" style="z-index:5;max-width:100%;"> <div class="container-xl relative element-anchor-1085130"> <div class=" bloc-group-content mx-auto shadow-none px-4 md:px-9 pt-6 pb-6 rounded-t-none rounded-b-none none " style=" background-color:#FFFFFF00; "> <div class="relative" style="z-index:5;"> <div> <div class="relative column"> <div class="element-anchor-1085133 none"> <div class="ck-content bloc-text break-words pt-3 pb-3 justify-center flex "> <div style=" width:100%; "> <h2 style="text-align:center;"><span class="text-size-11" style="color:#000000;"><strong>MARRE DE NE PAS PROGRESSER ?</strong></span></h2> </div> </div> </div> </div> </div> </div> </div> </div> <div class="container-lg relative element-anchor-1085128"> <div class=" bloc-group-content mx-auto shadow-none px-4 md:px-9 pt-3 pb-3 rounded-t-none rounded-b-none appear-animate animation-fade-in-from-bottom " style=" background-color:#FFFFFF00; "> <div class="relative" style="z-index:5;"> <div> <div class="relative column"> <div class="element-anchor-1085129 none"> <div class="ck-content bloc-text break-words pt-3 pb-3 justify-center flex "> <div style=" width:100%; "> <p><span class="text-size-5"><strong>Tu as l'impression d'avoir tout essayé et rien ne marche ?</strong></span></p><p style="margin-left:0px;"><span class="text-size-5">Tu te sens <strong>coincé</strong>, chaque séance de musculation te semble être un <strong>combat perdu d'avance</strong>. C'est normal, je suis passé par là et j'ai réussi à trouver des solutions <strong>simples</strong> et <strong>inédites </strong>pour sortir de cette impasse. Mon programme adaptatif est conçu pour briser ces plateaux frustrants et propulser tes progrès à des niveaux que tu n'aurais jamais imaginés. </span></p><p style="margin-left:0px;"> </p><p style="margin-left:0px;"><span class="text-size-5">Imagine un monde où <strong>chaque séance</strong> d'entraînement te <strong>rapproche </strong>de tes objectifs, où chaque goutte de sueur compte réellement. J'ai créé <strong>la méthode</strong> qui te permettra de rester motiver à travers les saisons. La <strong>stagnation </strong>ne sera plus une option. Prends le contrôle de ta progression et découvre enfin le potentiel de ton corps.</span></p><p style="margin-left:0px;"> </p><p style="margin-left:0px;"><span class="text-size-5"><strong>Rejoins </strong>l'aventure comme l'on fait des milliers d'adeptes de la musculation qui ont <strong>révolutionné </strong>leur approche, dépassé leurs limites et atteint des sommets inégalés. <strong>N'attends plus !</strong> C'est le moment de changer de jeu et de voir tes <strong>efforts </strong>se traduire en <strong>résultats tangibles</strong>. Ose briser tes peurs et atteins enfin tes objectifs de musculation.</span></p><p> </p><p> </p><p> </p> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="relative bloc-section-content element-anchor-1051490 none "> <div class="absolute top-0 left-0 w-full h-full" style="clip: rect(0, auto, auto, 0); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity:1; "> <img class="absolute top-0 left-0 object-top object-cover w-full h-full" style="z-index: 1;" src="https://Frog.b-cdn.net/4/60f6b8867409b/CJXVWMDlsQTMXXAw8Uyz97mfRLi6hEliNSrhGNwL.svg"> </div> <div class="absolute inset-0" style="background-color:#0000004F;z-index:2; "></div> <div class="relative" style="z-index:5;max-width:100%;"> <div class="container-xl relative element-anchor-1051451"> <div class=" bloc-group-content mx-auto shadow-none px-4 md:px-9 pt-6 pb-6 rounded-t-none rounded-b-none none " style=" background-color:#FFFFFF00; "> <div class="relative" style="z-index:5;"> <div> <div class="relative column"> <div class="element-anchor-1051455 none"> <div class="flex justify-center none"> <div class="w-full"> <div class="h-28 md:h-32"></div> </div> </div> </div> <div class="element-anchor-1051478 appear-animate animation-fade-in-from-left"> <div class="ck-content bloc-text break-words pt-3 pb-3 justify-center flex "> <div style=" width:100%; "> <h2 style="text-align:center;"><span class="text-size-12" style="color:#FFFFFF;"><strong>PLAN REU'FIT</strong></span><span class="text-size-8" style="color:#FFFFFF;">™</span></h2><h2 style="text-align:center;"><span class="text-size-10" style="color:#f76e10;"><strong>PASSE AU NIVEAU SUPERIEUR</strong></span></h2> </div> </div> </div> </div> </div> </div> </div> </div> <div class="container-lg relative element-anchor-1051479"> <div class=" bloc-group-content mx-auto shadow-none px-4 md:px-9 pt-9 pb-3 rounded-t-3xl rounded-b-none none " style=" background-color:#809CDB1C; "> <div class="relative" style="z-index:5;"> <div class="flex flex-wrap md:flex-nowrap gap-8 md:gap-16 items-start"> <div class="w-full md:w-5/12 split-column"> <div class="relative column"> <div class="element-anchor-1051452 appear-animate animation-fade-in-from-top"> <div class="ck-content bloc-text break-words pt-3 pb-3 justify-center flex "> <div style=" width:100%; "> <p style="text-align:center;"><span class="text-size-6" style="color:#FFFFFF;"><strong>QUE VAIS-JE TE REVELER :</strong></span></p> </div> </div> </div> <div class="element-anchor-1051480 appear-animate animation-fade-in-from-top"> <div class=" pt-0 pb-3 flex justify-center "> <div class="relative"> <img alt="" class="max-w-full shadow-none rounded-none " style="width:30px" src="https://Frog.b-cdn.net/22/6260d7399ac4e/OXb3V4yWVTam2lkfSEEY009Ed7wIdlSHQf3KtfIW.png?width=1920&height=1080&quality=75" srcset="https://Frog.b-cdn.net/22/6260d7399ac4e/OXb3V4yWVTam2lkfSEEY009Ed7wIdlSHQf3KtfIW.png?width=320&quality=75 320w, https://Frog.b-cdn.net/22/6260d7399ac4e/OXb3V4yWVTam2lkfSEEY009Ed7wIdlSHQf3KtfIW.png?width=640&quality=75 640w, https://Frog.b-cdn.net/22/6260d7399ac4e/OXb3V4yWVTam2lkfSEEY009Ed7wIdlSHQf3KtfIW.png?width=1024&quality=75 1024w, https://Frog.b-cdn.net/22/6260d7399ac4e/OXb3V4yWVTam2lkfSEEY009Ed7wIdlSHQf3KtfIW.png?width=1600&quality=75 1600w, https://Frog.b-cdn.net/22/6260d7399ac4e/OXb3V4yWVTam2lkfSEEY009Ed7wIdlSHQf3KtfIW.png?width=2048&quality=75 2048w"> </div> </div> </div> <div class="element-anchor-1051499 appear-animate animation-fade-in-from-top"> <div class="ck-content bloc-text break-words pt-3 pb-3 justify-center flex "> <div style=" width:100%; "> <p><span style="color:#f76e10;">❫❫❫ </span><span style="color:#F9FAFB;">Comment organiser sa semaine pour avoir <strong>toujours</strong> le <strong>temps </strong>et <strong>l'envie </strong>de s'entraîner.</span></p><p> </p><p><span style="color:#f76e10;">❫❫❫ </span><span style="color:#F9FAFB;">Mes connaissances en</span><span style="color:#FFFFFF;font-family:Verdana, Geneva, sans-serif;"> nutrition et micronutrition pour <strong>progresser plus vite</strong>.</span></p><p> </p><p><span style="color:#f76e10;">❫❫❫ </span><span style="color:#FFFFFF;font-family:Verdana, Geneva, sans-serif;">L'importance de la récupération et du sommeil pour une<strong> progression rapide</strong> et en <strong>bonne santé</strong>.</span></p><p> </p><p><span style="color:#f76e10;">❫❫❫ </span><span style="color:#FFFFFF;font-family:Verdana, Geneva, sans-serif;">L'éxécution des <strong>meilleurs </strong>exercices en se focalisant bien sur la protection du corps pour <strong>éviter les blessures</strong>.</span></p><p> </p><p><span style="color:#f76e10;">❫❫❫</span><span style="color:#EF4444;"> </span><span style="color:#FFFFFF;font-family:Verdana, Geneva, sans-serif;">Le programme qui te permettra d'obtenir ton <strong>corps de rêve</strong> et une <strong>santé de fer</strong>.</span></p> </div> </div> </div> </div> </div> <div class="w-full md:w-7/12 split-column"> <div class="relative column"> <div class="element-anchor-1051453 appear-animate animation-fade-in-from-right"> <div class=" pt-3 pb-3 flex justify-center "> <div class="relative"> <img alt="" class="max-w-full shadow-none rounded-none " src="https://Frog.b-cdn.net/937/636978e0a61fc/z1SHZhPQCat9hgeR6M9cW555W0nYs9xXMEBCb91m.png?width=1920&height=1080&quality=75" srcset="https://Frog.b-cdn.net/937/636978e0a61fc/z1SHZhPQCat9hgeR6M9cW555W0nYs9xXMEBCb91m.png?width=320&quality=75 320w, https://Frog.b-cdn.net/937/636978e0a61fc/z1SHZhPQCat9hgeR6M9cW555W0nYs9xXMEBCb91m.png?width=640&quality=75 640w, https://Frog.b-cdn.net/937/636978e0a61fc/z1SHZhPQCat9hgeR6M9cW555W0nYs9xXMEBCb91m.png?width=1024&quality=75 1024w, https://Frog.b-cdn.net/937/636978e0a61fc/z1SHZhPQCat9hgeR6M9cW555W0nYs9xXMEBCb91m.png?width=1600&quality=75 1600w, https://Frog.b-cdn.net/937/636978e0a61fc/z1SHZhPQCat9hgeR6M9cW555W0nYs9xXMEBCb91m.png?width=2048&quality=75 2048w"> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="container-lg relative element-anchor-1051491"> <div class=" bloc-group-content mx-auto shadow-2xl px-4 md:px-9 pt-3 pb-6 rounded-t-none rounded-b-3xl appear-animate animation-fade-in-from-top " style=" background-color:#809CDB1C; "> <div class="relative" style="z-index:5;"> <div> <div class="relative column"> <div class="element-anchor-1051457 none"> <div wire:id="N9TKDGdiF1FYRYbnbeMn" class=" pt-3 pb-3 flex justify-center "> <div> <button onclick="if (!window.__cfRLUnblockHandlers) return false; smoothScroll('.element-anchor-1051514');" class="text-center cursor-pointer relative inline-block px-4 md:px-9 py-2 md:py-4 rounded-full shadow-none button-effect-3d button-effect-shiny " style="background-color:#F76E10;color:#FFFFFFFF;"> <div class="break-words ck-content"> <p><span class="text-size-8"><strong>▸▸▸</strong></span><span class="text-size-7"><strong> COMMENCE A T'ENTRAINER MAINTENANT</strong></span></p> </div> <svg wire:loading="" class="absolute w-5 h-5 text-white top-2 right-2 animate-spin" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"> <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle> <path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path> </svg> </button> </div> </div> </div> </div> </div> </div> </div> </div> <div class="container-lg relative element-anchor-1051500"> <div class=" bloc-group-content mx-auto shadow-none px-4 md:px-9 pt-3 pb-3 rounded-t-none rounded-b-none none " style=" background-color:#FFFFFF00; "> <div class="relative" style="z-index:5;"> <div> <div class="relative column"> <div class="element-anchor-1051456 none"> <div class="flex justify-center none"> <div class="w-full"> <div class="h-16 md:h-16"></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="relative bloc-section-content element-anchor-1051501 none "> <div class="absolute top-0 left-0 w-full h-full" style="clip: rect(0, auto, auto, 0); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity:1; "> <img class="absolute top-0 left-0 object-bottom object-cover w-full h-full" style="z-index: 1;" src="https://Frog.b-cdn.net/22/60fe64b90c69f/Tz4ilwJkTkCIqRr32wdY6R1uo2PRlYkHkY55xG4B.svg"> </div> <div class="absolute inset-0" style="background-color:#0000005C;z-index:2; "></div> <div class="relative" style="z-index:5;max-width:100%;"> <div class="container-lg relative element-anchor-1051458"> <div class=" bloc-group-content mx-auto shadow-md px-4 md:px-9 pt-3 pb-3 rounded-t-none rounded-b-3xl appear-animate animation-fade-in-from-top " style=" background-color:#FFFFFF7A; "> <div class="relative" style="z-index:5;"> <div> <div class="relative column"> <div class="element-anchor-1051459 none"> <div class="ck-content bloc-text break-words pt-3 pb-3 justify-center flex "> <div style=" width:100%; "> <h2 style="text-align:center;"><span class="text-size-11" style="color:#141e34;"><strong>QUI SUIS-JE ?</strong></span></h2><h2 style="text-align:center;"><span class="text-size-8" style="color:#f76e10;"><strong>MONSIEUR TOUT LE MONDE</strong></span></h2> </div> </div> </div> </div> </div> </div> </div> </div> <div class="container-lg relative element-anchor-1051493"> <div class=" bloc-group-content mx-auto shadow-none px-4 md:px-9 pt-3 pb-9 rounded-t-none rounded-b-none none " style=" background-color:#FFFFFF00; "> <div class="relative" style="z-index:5;"> <div> <div class="relative column"> <div class="element-anchor-1051484 appear-animate animation-fade-in-from-top"> <div class=" pt-3 pb-3 flex justify-center "> <div class="relative"> <img alt="" class="max-w-full shadow-none rounded-none " style="width:400px" src="https://Frog.b-cdn.net/937/636978e0a61fc/PKcC8OvsAMzQewc1hiTZRWR7xqgIWLpBZ3qpmGbD.png?width=1920&height=1080&quality=75" srcset="https://Frog.b-cdn.net/937/636978e0a61fc/PKcC8OvsAMzQewc1hiTZRWR7xqgIWLpBZ3qpmGbD.png?width=320&quality=75 320w, https://Frog.b-cdn.net/937/636978e0a61fc/PKcC8OvsAMzQewc1hiTZRWR7xqgIWLpBZ3qpmGbD.png?width=640&quality=75 640w, https://Frog.b-cdn.net/937/636978e0a61fc/PKcC8OvsAMzQewc1hiTZRWR7xqgIWLpBZ3qpmGbD.png?width=1024&quality=75 1024w, https://Frog.b-cdn.net/937/636978e0a61fc/PKcC8OvsAMzQewc1hiTZRWR7xqgIWLpBZ3qpmGbD.png?width=1600&quality=75 1600w, https://Frog.b-cdn.net/937/636978e0a61fc/PKcC8OvsAMzQewc1hiTZRWR7xqgIWLpBZ3qpmGbD.png?width=2048&quality=75 2048w"> </div> </div> </div> <div class="element-anchor-1051494 appear-animate animation-fade-in-from-top"> <div class="ck-content bloc-text break-words pt-3 pb-3 justify-center flex "> <div style=" width:100%; "> <p><span style="color:#000000;font-family:Verdana, Geneva, sans-serif;">Je m'appelle Clément et comme toi, j'ai longtemps recherché la <strong>meilleure méthode</strong> d'entraînement.</span></p><p> </p><p><span style="color:#000000;font-family:Verdana, Geneva, sans-serif;">Entre Youtube, Tiktok et Instagram, les conseils ne manquent pas, mais impossible de démêler le bon du mauvais.</span></p><p> </p><p><span style="color:#000000;font-family:Verdana, Geneva, sans-serif;">Je me suis donc résolu à faire mes propres recherches et expériences. J'ai lu des dizaines de <strong>livres</strong>, écouté des <strong>professionnels</strong> dans chaque domaine que je t'enseigne (nutrition, entraînement, repos, sommeil, exécution des mouvements,…).</span></p><p> </p><p><span style="color:#000000;font-family:Verdana, Geneva, sans-serif;">Après <strong>2 ans</strong> de recherches et plus de <strong>5 ans</strong> de tests, je te transmets dans ce programme tout ce qui <strong>fonctionne</strong> <strong>vraiment</strong>.</span></p><p> </p><p><span style="color:#000000;font-family:Verdana, Geneva, sans-serif;">Mon objectif: te faire obtenir le savoir nécessaire pour obtenir ton corps de rêve et une santé de fer.</span></p><p> </p><p><span style="color:#000000;font-family:Verdana, Geneva, sans-serif;"><strong><u>Mon expérience dans le monde merveilleux de la musculation</u></strong><u> </u></span></p><p> </p><p><span style="color:#000000;font-family:Verdana, Geneva, sans-serif;">J’ai commencé la musculation au poids de corps en <strong>2016</strong>. Au début, mes entraînements étaient composés de <strong>pompes</strong>, de <strong>squat </strong>et lorsque j’avais accès à une barre, je réalisais des <strong>tractions</strong>.</span></p><p><br><span style="color:#000000;font-family:Verdana, Geneva, sans-serif;">Cela fait donc plus de <strong>5 ans</strong> que je m'entraîne. Comme tous les débutants, je n’ai pas été constant, j’ai fait des erreurs, j’ai pris de grandes pauses. Pourtant, j’ai énormément progressé que ce soit sur le plan physique ou mental. </span></p><p> </p><p><span style="color:#000000;font-family:Verdana, Geneva, sans-serif;">Désormais, finis le désir d’avoir les plus gros muscles, d’être le plus fort, d’être le plus strict dans l’alimentation ou l’entraînement. Je pratique la musculation pour la <strong>santé</strong>, aussi bien <strong>physique</strong> que <strong>mentale</strong>, la <strong>longévité</strong> et bien évidemment la <strong>discipline</strong>. </span></p><p> </p><p><span style="color:#000000;font-family:Verdana, Geneva, sans-serif;">Naturellement, mon <strong>développement musculaire et ma prise de force</strong> continuent d'évoluer <strong>sans y penser</strong>.</span></p><p> </p> </div> </div> </div> <div class="element-anchor-1051511 appear-animate animation-bounce-in"> <div wire:id="2lAwHxXVJG6hfWiaY32T" class=" pt-6 pb-12 flex justify-center "> <div> <button onclick="if (!window.__cfRLUnblockHandlers) return false; smoothScroll('.element-anchor-1051514');" class="text-center cursor-pointer relative inline-block px-4 md:px-9 py-2 md:py-4 rounded-full shadow-none button-effect-3d button-effect-shiny " style="background-color:#F76E10;color:#FFFFFFFF;"> <div class="break-words ck-content"> <p><span class="text-size-8"><strong>▸▸▸</strong></span><span class="text-size-7"><strong> COMMENCE A PROGRESSER MAINTENANT</strong></span></p> </div> <svg wire:loading="" class="absolute w-5 h-5 text-white top-2 right-2 animate-spin" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"> <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle> <path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path> </svg> </button> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="relative bloc-section-content element-anchor-1051508 none "> <div class="absolute inset-0" style="background-color:#00000057;z-index:2; "></div> <div class="relative" style="z-index:5;max-width:100%;"> <div class="container-xl relative element-anchor-1051513"> <div class=" bloc-group-content mx-auto shadow-none px-4 md:px-9 pt-6 pb-6 rounded-t-none rounded-b-3xl none " style=" background-color:#FFFFFF00; "> <div class="relative" style="z-index:5;"> <div> <div class="relative column"> <div class="element-anchor-1051467 appear-animate animation-fade-in-from-top"> <div class="ck-content bloc-text break-words pt-3 pb-3 justify-center flex "> <div style=" width:100%; "> <h2 style="text-align:center;"><span class="text-size-11" style="color:#141e34;"><strong>COMMANDE MAINTEANT ET GAGNE </strong></span></h2><h2 style="text-align:center;"><span class="text-size-10" style="color:#141e34;"><strong> CES </strong></span><span class="text-size-10" style="color:#f76e10;"><strong>3 PRODUITS INDISPENSABLES</strong></span></h2> </div> </div> </div> <div class="element-anchor-1051487 appear-animate animation-fade-in-from-top"> <div class=" pt-0 pb-3 flex justify-center "> <div class="relative"> <img alt="" class="max-w-full shadow-none rounded-none " style="width:40px" src="https://Frog.b-cdn.net/22/6260d7399ac4e/Vu8eeaE3xQ0jZYHC0qvaEs9jCGmG2wOFEQiBaYKc.png?width=1920&height=1080&quality=75" srcset="https://Frog.b-cdn.net/22/6260d7399ac4e/Vu8eeaE3xQ0jZYHC0qvaEs9jCGmG2wOFEQiBaYKc.png?width=320&quality=75 320w, https://Frog.b-cdn.net/22/6260d7399ac4e/Vu8eeaE3xQ0jZYHC0qvaEs9jCGmG2wOFEQiBaYKc.png?width=640&quality=75 640w, https://Frog.b-cdn.net/22/6260d7399ac4e/Vu8eeaE3xQ0jZYHC0qvaEs9jCGmG2wOFEQiBaYKc.png?width=1024&quality=75 1024w, https://Frog.b-cdn.net/22/6260d7399ac4e/Vu8eeaE3xQ0jZYHC0qvaEs9jCGmG2wOFEQiBaYKc.png?width=1600&quality=75 1600w, https://Frog.b-cdn.net/22/6260d7399ac4e/Vu8eeaE3xQ0jZYHC0qvaEs9jCGmG2wOFEQiBaYKc.png?width=2048&quality=75 2048w"> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="relative bloc-section-content element-anchor-1051512 none "> <div class="absolute top-0 left-0 w-full h-full" style="clip: rect(0, auto, auto, 0); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity:1; "> <img class="absolute top-0 left-0 object-top object-cover w-full h-full" style="z-index: 1;" src="https://Frog.b-cdn.net/22/60fe64b90c69f/2ot4HxVSoDh38xAPE5x0xKT7Ae3uRLp40mhZHNdS.svg"> </div> <div class="absolute inset-0" style="background-color:#0000004D;z-index:2; "></div> <div class="relative" style="z-index:5;max-width:100%;"> <div class="container-lg relative element-anchor-1051468"> <div class=" bloc-group-content mx-auto shadow-none px-4 md:px-9 pt-0 pb-6 rounded-t-none rounded-b-none none " style=" background-color:#FFFFFF00; "> <div class="relative" style="z-index:5;"> <div class="flex flex-wrap md:flex-nowrap gap-8 md:gap-16 items-start"> <div class="w-full md:w-1/2 split-column"> <div class="relative column"> <div class="element-anchor-1555157 none"> <div class=" pt-3 pb-3 flex justify-center "> <div class="relative"> <img alt="" class="max-w-full shadow-none rounded-none " src="https://Frog.b-cdn.net/937/636978e0a61fc/YqHKs9wMZicQE8vPitxm0JAYviTEpV2QUOw78c8F.png?width=1920&height=1080&quality=75" srcset="https://Frog.b-cdn.net/937/636978e0a61fc/YqHKs9wMZicQE8vPitxm0JAYviTEpV2QUOw78c8F.png?width=320&quality=75 320w, https://Frog.b-cdn.net/937/636978e0a61fc/YqHKs9wMZicQE8vPitxm0JAYviTEpV2QUOw78c8F.png?width=640&quality=75 640w, https://Frog.b-cdn.net/937/636978e0a61fc/YqHKs9wMZicQE8vPitxm0JAYviTEpV2QUOw78c8F.png?width=1024&quality=75 1024w, https://Frog.b-cdn.net/937/636978e0a61fc/YqHKs9wMZicQE8vPitxm0JAYviTEpV2QUOw78c8F.png?width=1600&quality=75 1600w, https://Frog.b-cdn.net/937/636978e0a61fc/YqHKs9wMZicQE8vPitxm0JAYviTEpV2QUOw78c8F.png?width=2048&quality=75 2048w"> </div> </div> </div> <div class="element-anchor-1556376 none"> <div class="ck-content bloc-text break-words pt-3 pb-3 justify-center flex "> <div style=" width:100%; "> <p><span class="text-size-7" style="color:#F9FAFB;"><strong><u>TELEGRAM Réu-FIT:</u></strong></span></p><p><span style="color:#F9FAFB;">groupe permettant d'obtenir les dernières nouvelles sur l'évolution du programme. Il permet aussi de pouvoir répondre aux questions des nouveaux pratiquants.</span></p> </div> </div> </div> <div class="element-anchor-1562325 none"> <div class="flex justify-center none"> <div class="w-full"> <div class="h-20 md:h-24"></div> </div> </div> </div> <div class="element-anchor-1051488 appear-animate animation-fade-in-from-top"> <div class=" pt-3 pb-3 flex justify-center "> <div class="relative"> <img alt="" class="max-w-full shadow-none rounded-none " style="width:600px" src="https://Frog.b-cdn.net/937/636978e0a61fc/VbwQsR0g6gIDMnfhtFF1IcYut6axo2bRCGoEtzjB.png?width=1920&height=1080&quality=75" srcset="https://Frog.b-cdn.net/937/636978e0a61fc/VbwQsR0g6gIDMnfhtFF1IcYut6axo2bRCGoEtzjB.png?width=320&quality=75 320w, https://Frog.b-cdn.net/937/636978e0a61fc/VbwQsR0g6gIDMnfhtFF1IcYut6axo2bRCGoEtzjB.png?width=640&quality=75 640w, https://Frog.b-cdn.net/937/636978e0a61fc/VbwQsR0g6gIDMnfhtFF1IcYut6axo2bRCGoEtzjB.png?width=1024&quality=75 1024w, https://Frog.b-cdn.net/937/636978e0a61fc/VbwQsR0g6gIDMnfhtFF1IcYut6axo2bRCGoEtzjB.png?width=1600&quality=75 1600w, https://Frog.b-cdn.net/937/636978e0a61fc/VbwQsR0g6gIDMnfhtFF1IcYut6axo2bRCGoEtzjB.png?width=2048&quality=75 2048w"> </div> </div> </div> </div> </div> <div class="w-full md:w-1/2 split-column"> <div class="relative column"> <div class="element-anchor-1556396 none"> <div class="flex justify-center none"> <div class="w-full"> <div class="h-20 md:h-24"></div> </div> </div> </div> <div class="element-anchor-1562295 none"> <div class="flex justify-center none"> <div class="w-full"> <div class="h-20 md:h-24"></div> </div> </div> </div> <div class="element-anchor-1556372 none"> <div class="ck-content bloc-text break-words pt-3 pb-3 justify-center flex "> <div style=" width:100%; "> <p><span class="text-size-7" style="color:#F9FAFB;"><strong><u>LE PROGRAMME Réu-FIT+:</u></strong></span></p><p><span style="color:#F9FAFB;">programme couvrant tous les aspects essentiels à un bon développement musculaire et une bonne santé. Tu découvriras les meilleures techniques d'entraînement, de récupération et de nutrition.</span></p> </div> </div> </div> <div class="element-anchor-1556375 none"> <div class="flex justify-center none"> <div class="w-full"> <div class="h-20 md:h-24"></div> </div> </div> </div> <div class="element-anchor-1555160 none"> <div class=" pt-3 pb-3 flex justify-center "> <div class="relative"> <img alt="" class="max-w-full shadow-none rounded-none " style="width:200px" src="https://Frog.b-cdn.net/937/636978e0a61fc/R9sH7BFxEr0kvX6koQnaiEFjzp3EmmtaTrIiMnUv.png?width=1920&height=1080&quality=75" srcset="https://Frog.b-cdn.net/937/636978e0a61fc/R9sH7BFxEr0kvX6koQnaiEFjzp3EmmtaTrIiMnUv.png?width=320&quality=75 320w, https://Frog.b-cdn.net/937/636978e0a61fc/R9sH7BFxEr0kvX6koQnaiEFjzp3EmmtaTrIiMnUv.png?width=640&quality=75 640w, https://Frog.b-cdn.net/937/636978e0a61fc/R9sH7BFxEr0kvX6koQnaiEFjzp3EmmtaTrIiMnUv.png?width=1024&quality=75 1024w, https://Frog.b-cdn.net/937/636978e0a61fc/R9sH7BFxEr0kvX6koQnaiEFjzp3EmmtaTrIiMnUv.png?width=1600&quality=75 1600w, https://Frog.b-cdn.net/937/636978e0a61fc/R9sH7BFxEr0kvX6koQnaiEFjzp3EmmtaTrIiMnUv.png?width=2048&quality=75 2048w"> </div> </div> </div> <div class="element-anchor-1556395 none"> <div class="flex justify-center none"> <div class="w-full"> <div class="h-28 md:h-32"></div> </div> </div> </div> <div class="element-anchor-1556380 none"> <div class="ck-content bloc-text break-words pt-3 pb-3 justify-center flex "> <div style=" width:100%; "> <p><span class="text-size-7" style="color:#F9FAFB;"><strong><u>ESSAI Prémium Réu-FIT:</u></strong></span></p><p><span style="color:#F9FAFB;">tu auras accès à 1 h de consultation avec moi pour me poser les questions que tu veux. Tu pourras me partager ton carnet d'entraînement 3 fois pour que je l'étudie et que je te donne les meilleurs conseils pour réaliser des séances parfaites. Résultats garanties ! </span></p> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="container-xl relative element-anchor-1051489"> <div class=" bloc-group-content mx-auto shadow-none px-4 md:px-9 pt-6 pb-3 rounded-t-none rounded-b-3xl none " style=" background-color:#FFFFFF00; "> <div class="relative" style="z-index:5;"> <div> <div class="relative column"> <div class="element-anchor-1051470 appear-animate animation-fade-in-from-top"> <div class="ck-content bloc-text break-words pt-3 pb-3 justify-center flex "> <div style=" width:100%; "> <h2 style="text-align:center;"><span class="text-size-10" style="color:#FFFFFF;"><strong>DEMARRE TON ENTRAINEMENT </strong></span></h2><h2 style="text-align:center;"><span class="text-size-11" style="color:#f76e10;"><strong>MAINTENANT !</strong></span></h2> </div> </div> </div> <div class="element-anchor-1051492 appear-animate animation-fade-in-from-top"> <div class=" pt-0 pb-3 flex justify-center "> <div class="relative"> <img alt="" class="max-w-full shadow-none rounded-none " style="width:40px" src="https://Frog.b-cdn.net/22/6260d7399ac4e/3qZ6e5zd6o6eLTQpK61pxnWe25PPgemK1ToK0Fqk.png?width=1920&height=1080&quality=75" srcset="https://Frog.b-cdn.net/22/6260d7399ac4e/3qZ6e5zd6o6eLTQpK61pxnWe25PPgemK1ToK0Fqk.png?width=320&quality=75 320w, https://Frog.b-cdn.net/22/6260d7399ac4e/3qZ6e5zd6o6eLTQpK61pxnWe25PPgemK1ToK0Fqk.png?width=640&quality=75 640w, https://Frog.b-cdn.net/22/6260d7399ac4e/3qZ6e5zd6o6eLTQpK61pxnWe25PPgemK1ToK0Fqk.png?width=1024&quality=75 1024w, https://Frog.b-cdn.net/22/6260d7399ac4e/3qZ6e5zd6o6eLTQpK61pxnWe25PPgemK1ToK0Fqk.png?width=1600&quality=75 1600w, https://Frog.b-cdn.net/22/6260d7399ac4e/3qZ6e5zd6o6eLTQpK61pxnWe25PPgemK1ToK0Fqk.png?width=2048&quality=75 2048w"> </div> </div> </div> <div class="element-anchor-1051503 appear-animate animation-fade-in-from-bottom"> <div class=" pt-6 pb-6 flex justify-center "> <div class="relative"> <img alt="" class="max-w-full shadow-none rounded-none " style="width:700px" src="https://Frog.b-cdn.net/937/636978e0a61fc/j9YFaG41pAp2oaCnXt32W41vGzUgLK31NCp78mH3.png?width=1920&height=1080&quality=75" srcset="https://Frog.b-cdn.net/937/636978e0a61fc/j9YFaG41pAp2oaCnXt32W41vGzUgLK31NCp78mH3.png?width=320&quality=75 320w, https://Frog.b-cdn.net/937/636978e0a61fc/j9YFaG41pAp2oaCnXt32W41vGzUgLK31NCp78mH3.png?width=640&quality=75 640w, https://Frog.b-cdn.net/937/636978e0a61fc/j9YFaG41pAp2oaCnXt32W41vGzUgLK31NCp78mH3.png?width=1024&quality=75 1024w, https://Frog.b-cdn.net/937/636978e0a61fc/j9YFaG41pAp2oaCnXt32W41vGzUgLK31NCp78mH3.png?width=1600&quality=75 1600w, https://Frog.b-cdn.net/937/636978e0a61fc/j9YFaG41pAp2oaCnXt32W41vGzUgLK31NCp78mH3.png?width=2048&quality=75 2048w"> </div> </div> </div> </div> </div> </div> </div> </div> <div class="container-md relative element-anchor-1051507"> <div class=" bloc-group-content mx-auto shadow-none px-6 md:px-12 pt-3 pb-9 rounded-t-none rounded-b-3xl none " style=" background-color:#FFFFFF00; "> <div class="relative" style="z-index:5;"> <div> <div class="relative column"> <div class="element-anchor-1051471 none"> <div class="ck-content bloc-text break-words pt-0 pb-3 justify-center flex "> <div style=" width:100%; "> <p style="text-align:center;"><span class="text-size-6" style="color:#f76e10;"><strong>✓</strong></span><span class="text-size-6"> </span><span class="text-size-6" style="color:#FFFFFF;"><strong>Réu-FIT programme </strong></span><span class="text-size-6"><strong> </strong></span><span class="text-size-6" style="color:#f76e10;"><strong>(valeur : 60€)</strong></span></p><p style="text-align:center;"><span class="text-size-6" style="color:#f76e10;"><strong>✓</strong></span><span class="text-size-6"> </span><span class="text-size-6" style="color:#FFFFFF;"><strong>Accès à mon canal Télégram privé </strong></span><span class="text-size-6"><strong> </strong></span><span class="text-size-6" style="color:#f76e10;"><strong>(valeur : 36€)</strong></span></p><p style="text-align:center;"><span class="text-size-6" style="color:#f76e10;"><strong>✓</strong></span><span class="text-size-6" style="color:#2cb146;"> </span><span class="text-size-6" style="color:#FFFFFF;"><strong>1h de consultation avec moi</strong></span><span class="text-size-6"><strong> </strong></span><span class="text-size-6" style="color:#f76e10;"><strong>(valeur : 96€)</strong></span></p><p style="text-align:center;"><span class="text-size-6" style="color:#f76e10;"><strong>✓</strong></span><span class="text-size-6"> </span><span class="text-size-6" style="color:#FFFFFF;"><strong>3 revues de ton carnet d'entraînement </strong></span><span class="text-size-6"><strong> </strong></span><span class="text-size-6" style="color:#f76e10;"><strong>(valeur : 85€)</strong></span></p> </div> </div> </div> </div> </div> </div> </div> </div> <div class="container-md relative element-anchor-1051514"> <div class=" bloc-group-content mx-auto shadow-lg px-4 md:px-9 pt-3 pb-3 rounded-t-3xl rounded-b-3xl none " style=" background-color:#F9FAFB0F; "> <div class="relative" style="z-index:5;"> <div> <div class="relative column"> <div class="element-anchor-1051472 appear-animate animation-bounce-in"> <div class="ck-content bloc-text break-words pt-6 pb-3 justify-center flex "> <div style=" width:100%; "> <h2 style="text-align:center;"><span class="text-size-9" style="color:#FFFFFF;"><strong>VALEUR TOTAL : </strong></span><span class="text-size-9" style="color:#EF4444;"><s><strong>277€</strong></s></span></h2><h2 style="text-align:center;"><span class="text-size-9" style="color:#FFFFFF;"><strong>AUJOURD'HUI SEULEMENT</strong></span><span class="text-size-10" style="color:#FFFFFF;"><strong> : </strong></span><span class="text-size-11" style="color:#2cb146;"><strong>60</strong></span><span class="text-size-10" style="color:#2cb146;"><strong>€</strong></span></h2> </div> </div> </div> <div class="element-anchor-1051481 animation-pulse"> <div wire:id="EVjv55kxTii0hGd3Llkz" class=" pt-6 pb-6 flex justify-center "> <div> <button wire:click="pressButton(1051481)" class="text-center cursor-pointer relative inline-block px-4 md:px-9 py-2 md:py-4 rounded-full shadow-none button-effect-3d button-effect-shiny " style="background-color:#F76E10;color:#FFFFFFFF;"> <div class="break-words ck-content"> <p><span class="text-size-8"><strong>▸▸▸</strong></span><span class="text-size-7"><strong> OBTIENS LE AUJOURD'HUI </strong></span><span class="text-size-8"><strong>!</strong></span></p> </div> <svg wire:loading="" class="absolute w-5 h-5 text-white top-2 right-2 animate-spin" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"> <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle> <path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path> </svg> </button> </div> </div> </div> <div class="element-anchor-1051495 none"> <div class="ck-content bloc-text break-words pt-3 pb-3 justify-center flex "> <div style=" width:100%; "> <p style="text-align:center;"><span class="text-size-6" style="color:#FFFFFF;"><strong>OFFRE LIMITÉE ENCORE DISPONIBLE POUR :</strong></span></p> </div> </div> </div> <div class="element-anchor-1051502 none"> <div class=" pt-0 pb-3 flex justify-center "> <div id="timer_bloc_1051502_1704741441_container" x-data="{}" x-init="$nextTick(() => { new FlipDown(1704891441,'timer_bloc_1051502_1704741441',{theme: 'light'}).start(); })"> <div wire:ignore=""> <div id="timer_bloc_1051502_1704741441" class="flipdown flipdown__theme-light"><div class="rotor-group"><div class="rotor-group-heading" data-before="Days"></div><div class="rotor"><div class="rotor-leaf"><figure class="rotor-leaf-rear">0</figure><figure class="rotor-leaf-front">0</figure></div><div class="rotor-top">0</div><div class="rotor-bottom">0</div></div><div class="rotor"><div class="rotor-leaf"><figure class="rotor-leaf-rear">1</figure><figure class="rotor-leaf-front">1</figure></div><div class="rotor-top">1</div><div class="rotor-bottom">1</div></div></div><div class="rotor-group"><div class="rotor-group-heading" data-before="Hours"></div><div class="rotor"><div class="rotor-leaf"><figure class="rotor-leaf-rear">1</figure><figure class="rotor-leaf-front">1</figure></div><div class="rotor-top">1</div><div class="rotor-bottom">1</div></div><div class="rotor"><div class="rotor-leaf"><figure class="rotor-leaf-rear">7</figure><figure class="rotor-leaf-front">7</figure></div><div class="rotor-top">7</div><div class="rotor-bottom">7</div></div></div><div class="rotor-group"><div class="rotor-group-heading" data-before="Minutes"></div><div class="rotor"><div class="rotor-leaf"><figure class="rotor-leaf-rear">3</figure><figure class="rotor-leaf-front">3</figure></div><div class="rotor-top">3</div><div class="rotor-bottom">3</div></div><div class="rotor"><div class="rotor-leaf"><figure class="rotor-leaf-rear">6</figure><figure class="rotor-leaf-front">6</figure></div><div class="rotor-top">6</div><div class="rotor-bottom">6</div></div></div><div class="rotor-group"><div class="rotor-group-heading" data-before="Seconds"></div><div class="rotor"><div class="rotor-leaf"><figure class="rotor-leaf-rear">2</figure><figure class="rotor-leaf-front">2</figure></div><div class="rotor-top">2</div><div class="rotor-bottom">2</div></div><div class="rotor"><div class="rotor-leaf"><figure class="rotor-leaf-rear">7</figure><figure class="rotor-leaf-front">7</figure></div><div class="rotor-top">7</div><div class="rotor-bottom">7</div></div></div></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="container-md relative element-anchor-1051515"> <div class=" bloc-group-content mx-auto shadow-none px-4 md:px-9 pt-0 pb-6 rounded-t-none rounded-b-3xl none " style=" background-color:#FFFFFF00; "> <div class="relative" style="z-index:5;"> <div> <div class="relative column"> <div class="element-anchor-1051460 none"> <div class="flex justify-center none"> <div class="w-full"> <div class="h-16 md:h-16"></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="relative bloc-section-content element-anchor-1051516 none "> <div class="absolute inset-0" style="background-color:#000000;z-index:2; "></div> <div class="relative" style="z-index:5;max-width:100%;"> <div class="container-xl relative element-anchor-1051473"> <div class=" bloc-group-content mx-auto shadow-none px-4 md:px-9 pt-6 pb-6 rounded-t-none rounded-b-none none " style=" background-color:#FFFFFF00; "> <div class="relative" style="z-index:5;"> <div> <div class="relative column"> <div class="element-anchor-1051474 none"> <div class=" pt-0 pb-3 flex justify-center "> <div class="relative"> <img alt="" class="max-w-full shadow-none rounded-none " style="width:150px" src="https://Frog.b-cdn.net/937/636978e0a61fc/Qm0VVuWsBAGraaFBEgCI5dWBG6jvyrhttV19Hr7v.png?width=1920&height=1080&quality=75" srcset="https://Frog.b-cdn.net/937/636978e0a61fc/Qm0VVuWsBAGraaFBEgCI5dWBG6jvyrhttV19Hr7v.png?width=320&quality=75 320w, https://Frog.b-cdn.net/937/636978e0a61fc/Qm0VVuWsBAGraaFBEgCI5dWBG6jvyrhttV19Hr7v.png?width=640&quality=75 640w, https://Frog.b-cdn.net/937/636978e0a61fc/Qm0VVuWsBAGraaFBEgCI5dWBG6jvyrhttV19Hr7v.png?width=1024&quality=75 1024w, https://Frog.b-cdn.net/937/636978e0a61fc/Qm0VVuWsBAGraaFBEgCI5dWBG6jvyrhttV19Hr7v.png?width=1600&quality=75 1600w, https://Frog.b-cdn.net/937/636978e0a61fc/Qm0VVuWsBAGraaFBEgCI5dWBG6jvyrhttV19Hr7v.png?width=2048&quality=75 2048w"> </div> </div> </div> <div class="element-anchor-1051483 none"> <div class="ck-content bloc-text break-words pt-0 pb-0 justify-center flex "> <div style=" width:100%; "> <p style="text-align:center;"><span style="color:#FFFFFF;font-family:Barlow, 'Inter var', sans-serif;">Customer service contact | Return/refund policies</span><br><span style="color:#FFFFFF;font-family:Barlow, 'Inter var', sans-serif;">Consumer data privacy policy | Terms and condition</span></p><p style="text-align:center;"> </p><p style="text-align:center;"><span style="color:#FFFFFF;font-family:Barlow, 'Inter var', sans-serif;"><strong>© Copyright 2021 - Frog.tech</strong></span></p> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="flex flex-col flex-wrap items-center justify-center gap-4 p-4 bg-white md:p-12"> <a href="https://www.frog.tech/" target="_blank" class="flex items-center gap-2 px-6 py-3 text-sm text-gray-400 transition rounded-full hover:shadow-lg hover:opacity-100"> <div class="text-sm font-semibold"> Powered by </div> <img src="https://reufit.frog.tech/images/frog.svg" class="inline-block h-6"> </a> <div> <div class="flex flex-wrap justify-center gap-6 text-xs text-gray-400"> <div x-data="{open:false}"> <div x-on:click="open = true" class="block"> <div class="font-semibold text-gray-400 cursor-pointer hover:text-gray-800"> Conditions générales </div> </div> <div class="fixed inset-0 z-50 overflow-y-auto" x-show="open" style="display: none;"> <div class="flex items-end justify-center min-h-screen px-4 pt-4 pb-20 text-center sm:block sm:p-0"> <div class="fixed inset-0 transition-opacity" x-show="open" x-transition:enter="ease-out duration-300" x-transition:enter-start="opacity-0" x-transition:enter-end="opacity-100" x-transition:leave="ease-in duration-200" x-transition:leave-start="opacity-100" x-transition:leave-end="opacity-0" @closemodal.window="open = false" style="display: none;"> <div class="absolute inset-0 bg-gray-500 opacity-75 dark:bg-gray-900" x-on:click="open = false"></div> </div> <span class="hidden sm:inline-block sm:align-middle sm:h-screen"></span>​ <div x-show="open" x-transition:enter="ease-out duration-300" x-transition:enter-start="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95" x-transition:enter-end="opacity-100 translate-y-0 sm:scale-100" x-transition:leave="ease-in duration-200" x-transition:leave-start="opacity-100 translate-y-0 sm:scale-100" x-transition:leave-end="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95" class="relative inline-block align-bottom bg-white dark:bg-gray-800 rounded-lg text-left shadow-xl transform transition-all sm:my-8 sm:align-middle sm:max-w-2xl sm:w-full" role="dialog" aria-modal="true" aria-labelledby="modal-headline" style="display: none;"> <button x-on:click="open = !open" class="absolute flex items-center justify-center w-8 h-8 text-white transition rounded-full bg-frog -top-4 -right-4 hover:bg-gray-700 dark:text-gray-200"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5"> <path d="M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z"></path> </svg> </button> <div class="p-6"> <div class="grid grid-cols-1 px-6 py-6 space-y-4 sm:p-8"> <h3 class="text-lg font-medium leading-6 text-gray-900"> Termes & Conditions </h3> <div class="ck-content"> <h2>Conditions générales d'utilisation</h2> <h2></h2> <p> </p> <p>En vigueur au 05/11/2023</p> <p> </p> <p>Les présentes conditions générales d'utilisation (dites « <strong>CGU</strong> ») ont pour objet l'encadrement juridique des modalités de mise à disposition du site et des services par Réu-FIT et de définir les conditions d’accès et d’utilisation des services par « <strong>l'Utilisateur</strong> ».</p> <p> </p> <p>Les présentes CGU sont accessibles sur le site à la rubrique «<strong>CGU</strong>».</p> <h2></h2> <p> </p> <h2>Article 1 : Les mentions légales</h2> <h2></h2> <p> </p> <p>L’édition et la direction de la publication du site https://reufit.frog.tech est assurée par Clément Réu-FIT.</p> <p>Adresse e-mail clem.reufit@gmail.com.</p> <p> </p> <h2>ARTICLE 2 : Accès au site</h2> <h2></h2> <p> </p> <p>Le site https://reufit.frog.tech permet à l'Utilisateur un accès gratuit aux services suivants :</p> <p>Le site internet propose les services suivants :</p> <p>Programme musculation</p> <p>Le site est accessible gratuitement en tout lieu à tout Utilisateur ayant un accès à Internet. Tous les frais supportés par l'Utilisateur pour accéder au service (matériel informatique, logiciels, connexion Internet, etc.) sont à sa charge.</p> <h2></h2> <p> </p> <h2>ARTICLE 3 : Collecte des données</h2> <h2></h2> <p> </p> <p>Le site assure à l'Utilisateur une collecte et un traitement d'informations personnelles dans le respect de la vie privée conformément à la loi n°78-17 du 6 janvier 1978 relative à l'informatique, aux fichiers et aux libertés.</p> <p> </p> <p>En vertu de la loi Informatique et Libertés, en date du 6 janvier 1978, l'Utilisateur dispose d'un droit d'accès, de rectification, de suppression et d'opposition de ses données personnelles. L'Utilisateur exerce ce droit :</p> <p>· par mail à l'adresse email clem.reufit@gmail.com</p> <h2></h2> <p> </p> <h2>ARTICLE 4 : Propriété intellectuelle</h2> <h2></h2> <p> </p> <p>Les marques, logos, signes ainsi que tous les contenus du site (textes, images, son…) font l'objet d'une protection par le Code de la propriété intellectuelle et plus particulièrement par le droit d'auteur.</p> <p> </p> <p>L'Utilisateur doit solliciter l'autorisation préalable du site pour toute reproduction, publication, copie des différents contenus. Il s'engage à une utilisation des contenus du site dans un cadre strictement privé, toute utilisation à des fins commerciales et publicitaires est strictement interdite.</p> <p> </p> <p>Toute représentation totale ou partielle de ce site par quelque procédé que ce soit, sans l’autorisation expresse de l’exploitant du site Internet constituerait une contrefaçon sanctionnée par l’article L 335-2 et suivants du Code de la propriété intellectuelle.</p> <p> </p> <p>Il est rappelé conformément à l’article L122-5 du Code de propriété intellectuelle que l’Utilisateur qui reproduit, copie ou publie le contenu protégé doit citer l’auteur et sa source.</p> <h2>ARTICLE 5 : Responsabilité</h2> <h2></h2> <p> </p> <p>Les sources des informations diffusées sur le site https://reufit.frog.tech sont réputées fiables mais le site ne garantit pas qu’il soit exempt de défauts, d’erreurs ou d’omissions.</p> <p> </p> <p>Les informations communiquées sont présentées à titre indicatif et général sans valeur contractuelle. Malgré des mises à jour régulières, le site https://reufit.frog.tech ne peut être tenu responsable de la modification des dispositions administratives et juridiques survenant après la publication. De même, le site ne peut être tenue responsable de l’utilisation et de l’interprétation de l’information contenue dans ce site.</p> <p>Le site https://reufit.frog.tech ne peut être tenu pour responsable d’éventuels virus qui pourraient infecter l’ordinateur ou tout matériel informatique de l’Internaute, suite à une utilisation, à l’accès, ou au téléchargement provenant de ce site.</p> <p> </p> <p>La responsabilité du site ne peut être engagée en cas de force majeure ou du fait imprévisible et insurmontable d'un tiers.</p> <h2></h2> <p> </p> <h2>ARTICLE 6 : Liens hypertextes</h2> <h2></h2> <p> </p> <p>Des liens hypertextes peuvent être présents sur le site. L’Utilisateur est informé qu’en cliquant sur ces liens, il sortira du site https://reufit.frog.tech. Ce dernier n’a pas de contrôle sur les pages web sur lesquelles aboutissent ces liens et ne saurait, en aucun cas, être responsable de leur contenu.</p> <h2></h2> <p> </p> <h2>ARTICLE 7 : Cookies</h2> <h2></h2> <p> </p> <p>L’Utilisateur est informé que lors de ses visites sur le site, un cookie peut s’installer automatiquement sur son logiciel de navigation.</p> <p> </p> <p>Les cookies sont de petits fichiers stockés temporairement sur le disque dur de l’ordinateur de l’Utilisateur par votre navigateur et qui sont nécessaires à l’utilisation du site https://reufit.frog.tech. Les cookies ne contiennent pas d’information personnelle et ne peuvent pas être utilisés pour identifier quelqu’un. Un cookie contient un identifiant unique, généré aléatoirement et donc anonyme. Certains cookies expirent à la fin de la visite de l’Utilisateur, d’autres restent.</p> <p> </p> <p>L’information contenue dans les cookies est utilisée pour améliorer le site https://reufit.frog.tech.</p> <p> </p> <p>En naviguant sur le site, L’Utilisateur les accepte.</p> <p>L’Utilisateur pourra désactiver ces cookies par l’intermédiaire des paramètres figurant au sein de son logiciel de navigation.</p> <h2></h2> <p> </p> <h2>ARTICLE 8 : Droit applicable et juridiction compétente</h2> <h2></h2> <p> </p> <p>La législation française s'applique au présent contrat. En cas d'absence de résolution amiable d'un litige né entre les parties, les tribunaux français seront seuls compétents pour en connaître.</p> <p>Pour toute question relative à l’application des présentes CGU, vous pouvez joindre l’éditeur aux coordonnées inscrites à l’ARTICLE 1.</p> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <script src="/livewire/livewire.js?id=9a36ebbddb8dd0aa91b1" data-turbo-eval="false" data-turbolinks-eval="false" type="text/javascript"></script><script data-turbo-eval="false" data-turbolinks-eval="false" type="text/javascript">window.livewire = new Livewire();window.Livewire = window.livewire;window.livewire_app_url = '';window.livewire_token = 'dtNPRWYEn03PQzZgW2Afo5R4mWuvsgOOvGt60cd5';window.deferLoadingAlpine = function (callback) {window.addEventListener('livewire:load', function () {callback();});};let started = false;window.addEventListener('alpine:initializing', function () {if (! started) {window.livewire.start();started = true;}});document.addEventListener("DOMContentLoaded", function () {if (! started) {window.livewire.start();started = true;}});</script> <div x-data="{}" x-on:scrolltop.window="window.scrollTo({top: 0});"></div> <iframe name="__privateStripeMetricsController7370" frameborder="0" allowtransparency="true" scrolling="no" role="presentation" allow="payment *" src="https://js.stripe.com/v3/m-outer-3437aaddcdf6922d623e172c2d6f9278.html#url=https%3A%2F%2Freufit.frog.tech%2F63faf08998c5a&title=Reu-fit&referrer=https%3A%2F%2Fapp.frog.tech%2F&muid=59b3bc9c-2671-48c2-bffb-832850e105cc7ce737&sid=NA&version=6&preview=false" aria-hidden="true" tabindex="-1" style="border: none !important; margin: 0px !important; padding: 0px !important; width: 1px !important; min-width: 100% !important; overflow: hidden !important; display: block !important; visibility: hidden !important; position: fixed !important; height: 1px !important; pointer-events: none !important; user-select: none !important;"></iframe></body></html> |