Spaces:
Runtime error
Runtime error
clementrof
commited on
Commit
•
6a20884
1
Parent(s):
0f62069
Upload folder using huggingface_hub
Browse files- README.md +2 -8
- __pycache__/gradio.cpython-312.pyc +0 -0
- app.py +34 -0
- app2.py +26 -0
- app3.py +225 -0
- chatgpt_reufit.py +26 -0
- knowledge_reufit_test.ipynb +0 -0
- output_image_sync-30fca20d-9f75-4449-ba25-64dbbc7cfc3a-e1.png +0 -0
- output_image_sync-32f26c78-d85d-4ee6-b98a-83217483c1f5-e1.png +0 -0
- output_image_sync-5038cfba-1263-4807-b53d-f9d2875fd416-e1.png +0 -0
- output_image_sync-e62a7f5c-2120-49e6-9d6f-c5a5100aad5c-e1.png +0 -0
- output_image_sync-eecce71b-5fe8-4094-8038-f04e22fc5136-e1.png +0 -0
- output_image_sync-f502964c-74fb-4d2e-bda2-117af49721f3-e1.png +0 -0
- reufit.txt +1376 -0
README.md
CHANGED
@@ -1,12 +1,6 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
|
4 |
-
colorFrom: purple
|
5 |
-
colorTo: yellow
|
6 |
sdk: gradio
|
7 |
sdk_version: 4.13.0
|
8 |
-
app_file: app.py
|
9 |
-
pinned: false
|
10 |
---
|
11 |
-
|
12 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
---
|
2 |
+
title: chat_image
|
3 |
+
app_file: app3.py
|
|
|
|
|
4 |
sdk: gradio
|
5 |
sdk_version: 4.13.0
|
|
|
|
|
6 |
---
|
|
|
|
__pycache__/gradio.cpython-312.pyc
ADDED
Binary file (1.42 kB). View file
|
|
app.py
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import openai
|
3 |
+
|
4 |
+
# Replace "YOUR_OPENAI_API_KEY" with your actual OpenAI API key
|
5 |
+
openai_api_key = "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"
|
6 |
+
|
7 |
+
|
8 |
+
def chatbot(question):
|
9 |
+
message_log = [
|
10 |
+
{"role": "user", "content": question}
|
11 |
+
]
|
12 |
+
|
13 |
+
response = openai.ChatCompletion.create(
|
14 |
+
model="gpt-3.5-turbo-16k",
|
15 |
+
messages=message_log,
|
16 |
+
max_tokens=8800,
|
17 |
+
request_timeout=35,
|
18 |
+
stop=None,
|
19 |
+
temperature=0.9
|
20 |
+
)
|
21 |
+
|
22 |
+
return response.choices[0].message.content
|
23 |
+
|
24 |
+
# Create the Gradio interface
|
25 |
+
iface = gr.Interface(
|
26 |
+
fn=chatbot,
|
27 |
+
inputs=gr.components.Textbox(lines=7, placeholder="Enter your question here"),
|
28 |
+
outputs="text",
|
29 |
+
title="Frost AI ChatBot: Your Knowledge Companion Powered-by ChatGPT",
|
30 |
+
description="Ask any question about rahasak research papers"
|
31 |
+
)
|
32 |
+
|
33 |
+
# Launch the Gradio interface
|
34 |
+
iface.launch(share=True)
|
app2.py
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import openai
|
2 |
+
import gradio as gr
|
3 |
+
|
4 |
+
openai.api_key = "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" # Replace with your key
|
5 |
+
|
6 |
+
def predict(message, history):
|
7 |
+
history_openai_format = []
|
8 |
+
for human, assistant in history:
|
9 |
+
history_openai_format.append({"role": "user", "content": human })
|
10 |
+
history_openai_format.append({"role": "assistant", "content":assistant})
|
11 |
+
history_openai_format.append({"role": "user", "content": message})
|
12 |
+
|
13 |
+
response = openai.ChatCompletion.create(
|
14 |
+
model='gpt-3.5-turbo',
|
15 |
+
messages= history_openai_format,
|
16 |
+
temperature=1.0,
|
17 |
+
stream=True
|
18 |
+
)
|
19 |
+
|
20 |
+
partial_message = ""
|
21 |
+
for chunk in response:
|
22 |
+
if len(chunk['choices'][0]['delta']) != 0:
|
23 |
+
partial_message = partial_message + chunk['choices'][0]['delta']['content']
|
24 |
+
yield partial_message
|
25 |
+
|
26 |
+
gr.ChatInterface(predict).launch()
|
app3.py
ADDED
@@ -0,0 +1,225 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import requests
|
3 |
+
import time
|
4 |
+
import requests
|
5 |
+
import base64
|
6 |
+
import time
|
7 |
+
|
8 |
+
|
9 |
+
|
10 |
+
token = '5UAYO8UWHNQKT3UUS9H8V360L76MD72DRIUY9QC2'
|
11 |
+
|
12 |
+
|
13 |
+
|
14 |
+
|
15 |
+
##############################################################
|
16 |
+
#################################################
|
17 |
+
|
18 |
+
def SD_call(image_prompt, age, color, hair_color):
|
19 |
+
|
20 |
+
serverless_api_id = '3g77weiulabzuk'
|
21 |
+
# Define the URL you want to send the request to
|
22 |
+
url = f"https://api.runpod.ai/v2/{serverless_api_id}/runsync"
|
23 |
+
|
24 |
+
# Define your custom headers
|
25 |
+
headers = {
|
26 |
+
"Authorization": f"Bearer {token}",
|
27 |
+
"Accept": "application/json",
|
28 |
+
"Content-Type": "application/json"
|
29 |
+
}
|
30 |
+
|
31 |
+
# Define your data (this could also be a JSON payload)
|
32 |
+
print("SD_processing")
|
33 |
+
data = {
|
34 |
+
"input": {
|
35 |
+
"api": {
|
36 |
+
"method": "POST",
|
37 |
+
"endpoint": "/sdapi/v1/txt2img"
|
38 |
+
},
|
39 |
+
"payload": {
|
40 |
+
"override_settings": {
|
41 |
+
"sd_model_checkpoint": "CyberRealistic",
|
42 |
+
"sd_vae": ""
|
43 |
+
},
|
44 |
+
"override_settings_restore_afterwards": True,
|
45 |
+
"refiner_checkpoint": "",
|
46 |
+
"refiner_switch_at": 0.8,
|
47 |
+
"prompt": f"masterpiece, best quality, 8k, (looking at viewer:1.1), gorgeous, hot, seductive, {age} years old american {color} woman, (eye contact:1.1), beautiful face, hyper detailed, best quality, ultra high res, {hair_color} hair,blue eyes, photorealistic, high resolution, detailed, raw photo, 1girl,{image_prompt} ",
|
48 |
+
"negative_prompt": "EasyNegative, fat, paintings, sketches, (worst quality:2), (low quality:2), (normal quality:2), lowres, ((monochrome)), ((grayscale)), bad anatomy, text, error, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, blurry, bad feet, poorly drawn face, bad proportions, gross proportions, ng_deepnegative_v1_75t, badhandsv5-neg, clothes",
|
49 |
+
"seed": -1,
|
50 |
+
"batch_size": 1,
|
51 |
+
"steps": 30,
|
52 |
+
"cfg_scale": 7,
|
53 |
+
"width": 520,
|
54 |
+
"height": 520,
|
55 |
+
"sampler_name": "DPM++ SDE Karras",
|
56 |
+
"sampler_index": "DPM++ SDE Karras",
|
57 |
+
"restore_faces": False
|
58 |
+
}
|
59 |
+
}
|
60 |
+
}
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
# Send the POST request with headers and data
|
66 |
+
response = requests.post(url, headers=headers, json=data)
|
67 |
+
|
68 |
+
# Check the response
|
69 |
+
if response.status_code == 200:
|
70 |
+
response_data = response.json()
|
71 |
+
msg_id = response_data['id']
|
72 |
+
print("Message ID:", msg_id)
|
73 |
+
|
74 |
+
# Poll the status until it's not 'IN_QUEUE'
|
75 |
+
while response_data['status'] == 'IN_QUEUE':
|
76 |
+
time.sleep(5) # Wait for 5 seconds before checking again
|
77 |
+
response = requests.get(f"{url}/{msg_id}", headers=headers)
|
78 |
+
|
79 |
+
try:
|
80 |
+
response_data = response.json()
|
81 |
+
except Exception as e:
|
82 |
+
print("Error decoding JSON:", e)
|
83 |
+
print("Response content:", response.text)
|
84 |
+
break # Exit the loop on JSON decoding error
|
85 |
+
|
86 |
+
# Check if the response contains images
|
87 |
+
if 'images' in response_data.get('output', {}):
|
88 |
+
base64_image = response_data['output']['images'][0]
|
89 |
+
image_bytes = base64.b64decode(base64_image)
|
90 |
+
|
91 |
+
# Save the image to a file
|
92 |
+
image_path = f"output_image_{msg_id}.png"
|
93 |
+
with open(image_path, "wb") as img_file:
|
94 |
+
img_file.write(image_bytes)
|
95 |
+
|
96 |
+
print(f"Image downloaded successfully: {image_path}")
|
97 |
+
|
98 |
+
return image_path
|
99 |
+
|
100 |
+
else:
|
101 |
+
return "No images found in the response."
|
102 |
+
|
103 |
+
else:
|
104 |
+
# Print error message
|
105 |
+
return f"Error: {response.status_code} - {response.text}"
|
106 |
+
|
107 |
+
|
108 |
+
|
109 |
+
|
110 |
+
##############################################################
|
111 |
+
#################################################
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
def LLM_call(message_log, temperature):
|
116 |
+
|
117 |
+
serverless_api_id = '4whzcbwuriohqh'
|
118 |
+
# Define the URL you want to send the request to
|
119 |
+
url = f"https://api.runpod.ai/v2/{serverless_api_id}/run"
|
120 |
+
|
121 |
+
# Define your custom headers
|
122 |
+
headers = {
|
123 |
+
"Authorization": f"Bearer {token}",
|
124 |
+
"Accept": "application/json",
|
125 |
+
"Content-Type": "application/json"
|
126 |
+
}
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
# Define your data (this could also be a JSON payload)
|
131 |
+
data = {
|
132 |
+
|
133 |
+
"input": {
|
134 |
+
"prompt": message_log,
|
135 |
+
"max_new_tokens": 4500,
|
136 |
+
"temperature": 0.7,
|
137 |
+
"top_k": 50,
|
138 |
+
"top_p": 0.9,
|
139 |
+
"repetition_penalty": 1.2,
|
140 |
+
"batch_size": 8,
|
141 |
+
"stop": ["</s>"]
|
142 |
+
}
|
143 |
+
}
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
# Send the POST request with headers and data
|
149 |
+
call = requests.post(url, headers=headers, json=data)
|
150 |
+
response_data = call.json()
|
151 |
+
msg_id = response_data['id']
|
152 |
+
print("Message ID:", msg_id)
|
153 |
+
output = "Output not available"
|
154 |
+
# Poll the API until the response is ready
|
155 |
+
while True:
|
156 |
+
# Get the status using the message ID
|
157 |
+
response = requests.get(f"https://api.runpod.ai/v2/{serverless_api_id}/status/{msg_id}", headers=headers)
|
158 |
+
|
159 |
+
if response.status_code == 200:
|
160 |
+
response_data = response.json()
|
161 |
+
status = response_data.get('status')
|
162 |
+
|
163 |
+
if status == 'COMPLETED':
|
164 |
+
# Access the 'output' directly from the response
|
165 |
+
output = response_data.get('output', 'Output not available')
|
166 |
+
print("Response content:", output)
|
167 |
+
break # Exit the loop once the response is ready
|
168 |
+
elif status == 'FAILED':
|
169 |
+
error_message = response_data.get('error', 'Unknown error')
|
170 |
+
print("Request failed. Reason:", error_message)
|
171 |
+
break # Exit the loop if the request failed
|
172 |
+
else:
|
173 |
+
print("Failed to get status. HTTP status code:", response.status_code)
|
174 |
+
|
175 |
+
# Wait for a short time before polling again (e.g., 2 seconds)
|
176 |
+
time.sleep(2)
|
177 |
+
|
178 |
+
return output
|
179 |
+
|
180 |
+
|
181 |
+
|
182 |
+
|
183 |
+
|
184 |
+
def Chat_call(chat,temperature):
|
185 |
+
message_log = [{"role": "assistant", "content": f"I want you to act as a woman named Julie. Use colloquial language. Julie is 25 years old, she is very hot physically, she loves watching football, she loves to talk about sex. Julie loves sex and being fucked. She never refuses anything. You'll answer to a man, call him baby. Write very short answers, 15 words."},]
|
186 |
+
new_message = {"role": "user", "content": chat}
|
187 |
+
message_log.append(new_message)
|
188 |
+
response = LLM_call(message_log, temperature)
|
189 |
+
print("From Runpod:" + response)
|
190 |
+
return response
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
|
195 |
+
########################################################
|
196 |
+
#######################################################
|
197 |
+
|
198 |
+
|
199 |
+
|
200 |
+
def greet(chat, image_prompt, temperature, age, color, hair_color):
|
201 |
+
if image_prompt.strip():
|
202 |
+
image_path = SD_call(image_prompt,age, color, hair_color)
|
203 |
+
return "Image generated successfully", image_path
|
204 |
+
|
205 |
+
if temperature > 3:
|
206 |
+
return "You are too warm please try again", None
|
207 |
+
else:
|
208 |
+
text_answer = Chat_call(chat,temperature)
|
209 |
+
return text_answer, None
|
210 |
+
|
211 |
+
demo = gr.Interface(
|
212 |
+
fn=greet,
|
213 |
+
inputs=[
|
214 |
+
"text",
|
215 |
+
gr.Textbox(label="Image", lines=3),
|
216 |
+
gr.Slider(label="Text temperature", value=1, minimum=0, maximum=2),
|
217 |
+
gr.Slider(label="Age", value=22, minimum=18, maximum=75),
|
218 |
+
gr.Dropdown(["asian", "white", "black", "latina"], label="Color", info="Will add more later!"),
|
219 |
+
gr.Dropdown(["blond", "brune", "red", "white", "pink", "black", "blue", "green"], label="Hair color", info="Blond is cool")
|
220 |
+
],
|
221 |
+
flagging_options=["blurry", "incorrect", "other"],
|
222 |
+
outputs=[gr.Textbox(label="Answer", lines=3), gr.Image(label="Generated Image", type="filepath")],
|
223 |
+
)
|
224 |
+
|
225 |
+
demo.launch(share=True)
|
chatgpt_reufit.py
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import sys
|
3 |
+
|
4 |
+
import openai
|
5 |
+
from langchain_community.chains import ConversationalRetrievalChain, RetrievalQA
|
6 |
+
from langchain_community.chat_models import ChatOpenAI
|
7 |
+
from langchain_community.document_loaders import DirectoryLoader, TextLoader
|
8 |
+
from langchain_community.embeddings import OpenAIEmbeddings
|
9 |
+
from langchain_community.indexes import VectorstoreIndexCreator
|
10 |
+
from langchain_community.indexes.vectorstore import VectorStoreIndexWrapper
|
11 |
+
from langchain_community.llms import OpenAI
|
12 |
+
from langchain_community.vectorstores import Chroma
|
13 |
+
|
14 |
+
|
15 |
+
|
16 |
+
os.environ["OPENAI_API_KEY"] = "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"
|
17 |
+
|
18 |
+
if len(sys.argv) > 1:
|
19 |
+
query = sys.argv[1]
|
20 |
+
|
21 |
+
#loader = TextLoader("data/data.txt") # Use this line if you only need data.txt
|
22 |
+
loader = DirectoryLoader(".",glob="*.txt")
|
23 |
+
index = VectorstoreIndexCreator().from_loaders([loader])
|
24 |
+
|
25 |
+
llm=ChatOpenAI(model="gpt-3.5-turbo-16k")
|
26 |
+
print(index.query(query,llm))
|
knowledge_reufit_test.ipynb
ADDED
File without changes
|
output_image_sync-30fca20d-9f75-4449-ba25-64dbbc7cfc3a-e1.png
ADDED
output_image_sync-32f26c78-d85d-4ee6-b98a-83217483c1f5-e1.png
ADDED
output_image_sync-5038cfba-1263-4807-b53d-f9d2875fd416-e1.png
ADDED
output_image_sync-e62a7f5c-2120-49e6-9d6f-c5a5100aad5c-e1.png
ADDED
output_image_sync-eecce71b-5fe8-4094-8038-f04e22fc5136-e1.png
ADDED
output_image_sync-f502964c-74fb-4d2e-bda2-117af49721f3-e1.png
ADDED
reufit.txt
ADDED
@@ -0,0 +1,1376 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<html lang="fr"><head>
|
2 |
+
<meta charset="utf-8">
|
3 |
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
4 |
+
<meta name="csrf-token" content="dtNPRWYEn03PQzZgW2Afo5R4mWuvsgOOvGt60cd5">
|
5 |
+
<title>Reu-fit</title>
|
6 |
+
<meta name="description" content="fitness program">
|
7 |
+
<meta name="robots" content="index, follow">
|
8 |
+
<link rel="canonical" href="https://reufit.frog.tech">
|
9 |
+
<meta property="og:type" content="article">
|
10 |
+
<meta property="og:title" content="Reu-fit">
|
11 |
+
<meta property="og:description" content="fitness program">
|
12 |
+
<meta property="og:url" content="https://reufit.frog.tech">
|
13 |
+
<meta property="og:site_name" content="Reu-fit">
|
14 |
+
<meta property="og:image" content="https://Frog.b-cdn.net/937/636978e0a61fc/SpigiazR8h2jYUO3M1Ppb7sKUB4Rkyn3Lov2R3KZ.png?width=1920&height=1080&quality=75">
|
15 |
+
<meta property="og:image:width" content="1920">
|
16 |
+
<meta property="og:image:height" content="1080">
|
17 |
+
<link rel="apple-touch-icon" sizes="180x180" href="https://Frog.b-cdn.net/937/636978e0a61fc/MOKqJojxFhs4xNShSSleHthxaOxrs5bTQMvONSzN.png?aspect_ratio=1%3A1&quality=75">
|
18 |
+
<link rel="icon" type="image/png" sizes="32x32" href="https://Frog.b-cdn.net/937/636978e0a61fc/MOKqJojxFhs4xNShSSleHthxaOxrs5bTQMvONSzN.png?aspect_ratio=1%3A1&quality=75">
|
19 |
+
<link rel="icon" type="image/png" sizes="16x16" href="https://Frog.b-cdn.net/937/636978e0a61fc/MOKqJojxFhs4xNShSSleHthxaOxrs5bTQMvONSzN.png?aspect_ratio=1%3A1&quality=75">
|
20 |
+
<link rel="manifest" href="https://reufit.frog.tech/favicon/site.webmanifest">
|
21 |
+
<link rel="mask-icon" href="https://reufit.frog.tech/favicon/safari-pinned-tab.svg" color="#0090ab">
|
22 |
+
<meta name="msapplication-TileColor" content="#ffffff">
|
23 |
+
<meta name="theme-color" content="#ffffff">
|
24 |
+
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
|
25 |
+
<script src="https://reufit.frog.tech/js/flipdown-master/dist/flipdown.min.js" type="text/javascript"></script>
|
26 |
+
<link rel="stylesheet" href="https://reufit.frog.tech/js/flipdown-master/dist/flipdown.min.css">
|
27 |
+
<link rel="stylesheet" href="/css/funnel.css?id=2b2e602beb44466d1466">
|
28 |
+
<style> [x-cloak]{display:none;} </style>
|
29 |
+
<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>
|
30 |
+
<script src="/js/funnel.js?id=68e26d93846c7fdeb05d" defer="" type="text/javascript"></script>
|
31 |
+
<script src="https://js.stripe.com/v3/" type="text/javascript"></script>
|
32 |
+
<style>
|
33 |
+
body{
|
34 |
+
background-color:#F7F7F7FF;
|
35 |
+
}
|
36 |
+
.bloc-text{
|
37 |
+
color:#1F2937FF;
|
38 |
+
}
|
39 |
+
.bloc-text h1, .bloc-text h2,.bloc-text h3, .bloc-text h4{
|
40 |
+
}
|
41 |
+
</style>
|
42 |
+
</head>
|
43 |
+
<body class="font-sans antialiased" data-fid="5926">
|
44 |
+
|
45 |
+
<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">
|
46 |
+
<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;">
|
47 |
+
<div class="p-4">
|
48 |
+
<div class="flex items-start">
|
49 |
+
<div class="flex-shrink-0">
|
50 |
+
<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">
|
51 |
+
<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>
|
52 |
+
</svg>
|
53 |
+
<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;">
|
54 |
+
<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>
|
55 |
+
</svg>
|
56 |
+
<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;">
|
57 |
+
<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>
|
58 |
+
</svg>
|
59 |
+
</div>
|
60 |
+
<div class="ml-3 w-0 flex-1 pt-0.5">
|
61 |
+
<p class="text-sm font-medium text-gray-900 dark:text-white" x-text="notification.title"></p>
|
62 |
+
<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>
|
63 |
+
</div>
|
64 |
+
<div class="flex flex-shrink-0 ml-4">
|
65 |
+
<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">
|
66 |
+
<span class="sr-only">Close</span>
|
67 |
+
<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">
|
68 |
+
<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>
|
69 |
+
</svg>
|
70 |
+
</button>
|
71 |
+
</div>
|
72 |
+
</div>
|
73 |
+
</div>
|
74 |
+
</div>
|
75 |
+
</div>
|
76 |
+
<div wire:id="f4VIuFxln1ksoxY5riXq" class="min-h-screen">
|
77 |
+
<div wire:id="dObOQO2Bhs1f5BGpR1Gk" x-data="{open:window.Livewire.find('dObOQO2Bhs1f5BGpR1Gk').entangle('open')}">
|
78 |
+
<div class="fixed inset-0 z-50 overflow-y-auto" x-show="open" style="display: none;">
|
79 |
+
<div class="flex items-end justify-center min-h-screen px-4 pt-4 pb-20 text-center sm:block sm:p-0">
|
80 |
+
<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;">
|
81 |
+
<div class="absolute inset-0 bg-gray-500 opacity-75 dark:bg-gray-900"></div>
|
82 |
+
</div>
|
83 |
+
<span class="hidden sm:inline-block sm:align-middle sm:h-screen"></span>​
|
84 |
+
<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;">
|
85 |
+
<div class="overflow-hidden bg-white rounded-lg shadow-xl">
|
86 |
+
</div>
|
87 |
+
</div>
|
88 |
+
</div>
|
89 |
+
</div>
|
90 |
+
</div>
|
91 |
+
|
92 |
+
<div class="flex flex-col flex-grow min-h-screen">
|
93 |
+
<div id="content" class="preview-content content-render-1704741441">
|
94 |
+
<div class="relative bloc-section-content element-anchor-1051446
|
95 |
+
|
96 |
+
none
|
97 |
+
|
98 |
+
">
|
99 |
+
<div class="absolute top-0 left-0 w-full h-full" style="clip: rect(0, auto, auto, 0);
|
100 |
+
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
101 |
+
-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
102 |
+
opacity:0.66;
|
103 |
+
">
|
104 |
+
<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,
|
105 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/bhoXRI81DVlhg0Cz7RDehwIHZ3FoAgnqhwKm9ti5.png?width=640&quality=75 640w,
|
106 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/bhoXRI81DVlhg0Cz7RDehwIHZ3FoAgnqhwKm9ti5.png?width=1024&quality=75 1024w,
|
107 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/bhoXRI81DVlhg0Cz7RDehwIHZ3FoAgnqhwKm9ti5.png?width=1600&quality=75 1600w,
|
108 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/bhoXRI81DVlhg0Cz7RDehwIHZ3FoAgnqhwKm9ti5.png?width=2048&quality=75 2048w">
|
109 |
+
</div>
|
110 |
+
<div class="absolute inset-0" style="background-color:#000000BD;z-index:2; backdrop-filter: blur(2px); "></div>
|
111 |
+
<div class="relative" style="z-index:5;max-width:100%;">
|
112 |
+
<div class="container-xl relative element-anchor-1051447">
|
113 |
+
<div class=" bloc-group-content mx-auto
|
114 |
+
shadow-none
|
115 |
+
px-4 md:px-9
|
116 |
+
pt-6
|
117 |
+
pb-3
|
118 |
+
rounded-t-none
|
119 |
+
rounded-b-none
|
120 |
+
|
121 |
+
none
|
122 |
+
" style="
|
123 |
+
background-color:#FFFFFF00;
|
124 |
+
">
|
125 |
+
<div class="relative" style="z-index:5;">
|
126 |
+
<div>
|
127 |
+
<div class="relative column">
|
128 |
+
<div class="element-anchor-1051454 none">
|
129 |
+
<div class="
|
130 |
+
pt-3
|
131 |
+
pb-9
|
132 |
+
|
133 |
+
flex justify-center
|
134 |
+
">
|
135 |
+
<div class="relative">
|
136 |
+
<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,
|
137 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/hJi3kijwC85U1mlWrvMAR56fZkCUAFr4ZMVURQ8v.png?width=640&quality=75 640w,
|
138 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/hJi3kijwC85U1mlWrvMAR56fZkCUAFr4ZMVURQ8v.png?width=1024&quality=75 1024w,
|
139 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/hJi3kijwC85U1mlWrvMAR56fZkCUAFr4ZMVURQ8v.png?width=1600&quality=75 1600w,
|
140 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/hJi3kijwC85U1mlWrvMAR56fZkCUAFr4ZMVURQ8v.png?width=2048&quality=75 2048w">
|
141 |
+
</div>
|
142 |
+
</div>
|
143 |
+
</div>
|
144 |
+
<div class="element-anchor-1051475 none">
|
145 |
+
<div class="ck-content bloc-text break-words
|
146 |
+
pt-3
|
147 |
+
pb-3
|
148 |
+
|
149 |
+
justify-center
|
150 |
+
flex
|
151 |
+
">
|
152 |
+
<div style=" width:100%; ">
|
153 |
+
<h3 style="text-align:center;"><span class="text-size-7" style="color:#FFFFFF;"><strong>Bienvenue dans le monde du sport :</strong></span></h3>
|
154 |
+
</div>
|
155 |
+
</div>
|
156 |
+
</div>
|
157 |
+
<div class="element-anchor-1051504 none">
|
158 |
+
<div class="ck-content bloc-text break-words
|
159 |
+
pt-0
|
160 |
+
pb-0
|
161 |
+
|
162 |
+
justify-center
|
163 |
+
flex
|
164 |
+
">
|
165 |
+
<div style=" width:100%; ">
|
166 |
+
<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>
|
167 |
+
</div>
|
168 |
+
</div>
|
169 |
+
</div>
|
170 |
+
</div>
|
171 |
+
</div>
|
172 |
+
</div>
|
173 |
+
</div>
|
174 |
+
</div>
|
175 |
+
</div>
|
176 |
+
</div>
|
177 |
+
<div class="relative bloc-section-content element-anchor-1556397
|
178 |
+
|
179 |
+
none
|
180 |
+
|
181 |
+
">
|
182 |
+
<div class="absolute top-0 left-0 w-full h-full" style="clip: rect(0, auto, auto, 0);
|
183 |
+
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
184 |
+
-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
185 |
+
opacity:1;
|
186 |
+
">
|
187 |
+
<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">
|
188 |
+
</div>
|
189 |
+
<div class="absolute inset-0" style="background-color:#00000061;z-index:2; "></div>
|
190 |
+
<div class="relative" style="z-index:5;max-width:100%;">
|
191 |
+
<div class="container-xl relative element-anchor-1051448">
|
192 |
+
<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="
|
193 |
+
background-color:#FFFFFF00;
|
194 |
+
">
|
195 |
+
<div class="relative" style="z-index:5;">
|
196 |
+
<div>
|
197 |
+
<div class="relative column">
|
198 |
+
<div class="element-anchor-1051517 none">
|
199 |
+
<div wire:id="dsCSHfQMYxzpwOFApA4v" class="
|
200 |
+
pt-3
|
201 |
+
pb-3
|
202 |
+
|
203 |
+
flex justify-center
|
204 |
+
">
|
205 |
+
<div>
|
206 |
+
<button onclick="if (!window.__cfRLUnblockHandlers) return false; smoothScroll('.element-anchor-1051449');" class="text-center cursor-pointer relative inline-block
|
207 |
+
px-4 md:px-9
|
208 |
+
py-2 md:py-4
|
209 |
+
rounded-full
|
210 |
+
shadow-2xl
|
211 |
+
button-effect-3d
|
212 |
+
button-effect-shiny
|
213 |
+
" style="background-color:#F76E10;color:#FFFFFFFF;">
|
214 |
+
<div class="break-words ck-content">
|
215 |
+
<p>TU ES DEBUTANT ? (CLIQUE ICI)</p>
|
216 |
+
</div>
|
217 |
+
<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">
|
218 |
+
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
|
219 |
+
<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>
|
220 |
+
</svg>
|
221 |
+
</button>
|
222 |
+
</div>
|
223 |
+
</div>
|
224 |
+
</div>
|
225 |
+
<div class="element-anchor-1051518 none">
|
226 |
+
<div wire:id="NOVHi3Y4GIYsNAhy1iu4" class="
|
227 |
+
pt-3
|
228 |
+
pb-3
|
229 |
+
|
230 |
+
flex justify-center
|
231 |
+
">
|
232 |
+
<div>
|
233 |
+
<button onclick="if (!window.__cfRLUnblockHandlers) return false; smoothScroll('.element-anchor-1085122');" class="text-center cursor-pointer relative inline-block
|
234 |
+
px-4 md:px-9
|
235 |
+
py-2 md:py-4
|
236 |
+
rounded-full
|
237 |
+
shadow-2xl
|
238 |
+
button-effect-3d
|
239 |
+
button-effect-shiny
|
240 |
+
" style="background-color:#F76E10;color:#FFFFFFFF;">
|
241 |
+
<div class="break-words ck-content">
|
242 |
+
<p>TU PRATIQUES DEPUIS PLUS DE 10 MOIS ? (CLIQUE LA)</p>
|
243 |
+
</div>
|
244 |
+
<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">
|
245 |
+
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
|
246 |
+
<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>
|
247 |
+
</svg>
|
248 |
+
</button>
|
249 |
+
</div>
|
250 |
+
</div>
|
251 |
+
</div>
|
252 |
+
<div class="element-anchor-1051520 none">
|
253 |
+
<div class="flex justify-center none">
|
254 |
+
<div class="w-full">
|
255 |
+
<div class="h-36 md:h-48"></div>
|
256 |
+
</div>
|
257 |
+
</div>
|
258 |
+
</div>
|
259 |
+
<div class="element-anchor-1051449 none">
|
260 |
+
<div class="ck-content bloc-text break-words
|
261 |
+
pt-3
|
262 |
+
pb-3
|
263 |
+
|
264 |
+
justify-center
|
265 |
+
flex
|
266 |
+
">
|
267 |
+
<div style=" width:100%; ">
|
268 |
+
<h2 style="text-align:center;"><span class="text-size-11" style="color:#000000;"><strong>OBTIENS DES RESULTATS RAPIDES</strong></span></h2>
|
269 |
+
</div>
|
270 |
+
</div>
|
271 |
+
</div>
|
272 |
+
</div>
|
273 |
+
</div>
|
274 |
+
</div>
|
275 |
+
</div>
|
276 |
+
</div>
|
277 |
+
<div class="container-lg relative element-anchor-1051477">
|
278 |
+
<div class=" bloc-group-content mx-auto
|
279 |
+
shadow-none
|
280 |
+
px-4 md:px-9
|
281 |
+
pt-3
|
282 |
+
pb-3
|
283 |
+
rounded-t-none
|
284 |
+
rounded-b-none
|
285 |
+
|
286 |
+
appear-animate animation-fade-in-from-bottom
|
287 |
+
" style="
|
288 |
+
background-color:#FFFFFF00;
|
289 |
+
">
|
290 |
+
<div class="relative" style="z-index:5;">
|
291 |
+
<div>
|
292 |
+
<div class="relative column">
|
293 |
+
<div class="element-anchor-1051450 none">
|
294 |
+
<div class="ck-content bloc-text break-words
|
295 |
+
pt-3
|
296 |
+
pb-3
|
297 |
+
|
298 |
+
justify-center
|
299 |
+
flex
|
300 |
+
">
|
301 |
+
<div style=" width:100%; ">
|
302 |
+
<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>
|
303 |
+
</div>
|
304 |
+
</div>
|
305 |
+
</div>
|
306 |
+
</div>
|
307 |
+
</div>
|
308 |
+
</div>
|
309 |
+
</div>
|
310 |
+
</div>
|
311 |
+
</div>
|
312 |
+
</div>
|
313 |
+
<div class="relative bloc-section-content element-anchor-1085122
|
314 |
+
|
315 |
+
none
|
316 |
+
|
317 |
+
">
|
318 |
+
<div class="absolute top-0 left-0 w-full h-full" style="clip: rect(0, auto, auto, 0);
|
319 |
+
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
320 |
+
-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
321 |
+
opacity:0.37;
|
322 |
+
">
|
323 |
+
<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,
|
324 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/Ur2iRGDdvAwFAbd3CfA7HzblbTA9ctaEngL2zylN.jpg?width=640&quality=75 640w,
|
325 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/Ur2iRGDdvAwFAbd3CfA7HzblbTA9ctaEngL2zylN.jpg?width=1024&quality=75 1024w,
|
326 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/Ur2iRGDdvAwFAbd3CfA7HzblbTA9ctaEngL2zylN.jpg?width=1600&quality=75 1600w,
|
327 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/Ur2iRGDdvAwFAbd3CfA7HzblbTA9ctaEngL2zylN.jpg?width=2048&quality=75 2048w">
|
328 |
+
</div>
|
329 |
+
<div class="absolute inset-0" style="background-color:#0000004A;z-index:2; backdrop-filter: blur(14px); "></div>
|
330 |
+
<div class="relative" style="z-index:5;max-width:100%;">
|
331 |
+
<div class="container-xl relative element-anchor-1085130">
|
332 |
+
<div class=" bloc-group-content mx-auto
|
333 |
+
shadow-none
|
334 |
+
px-4 md:px-9
|
335 |
+
pt-6
|
336 |
+
pb-6
|
337 |
+
rounded-t-none
|
338 |
+
rounded-b-none
|
339 |
+
|
340 |
+
none
|
341 |
+
" style="
|
342 |
+
background-color:#FFFFFF00;
|
343 |
+
">
|
344 |
+
<div class="relative" style="z-index:5;">
|
345 |
+
<div>
|
346 |
+
<div class="relative column">
|
347 |
+
<div class="element-anchor-1085133 none">
|
348 |
+
<div class="ck-content bloc-text break-words
|
349 |
+
pt-3
|
350 |
+
pb-3
|
351 |
+
|
352 |
+
justify-center
|
353 |
+
flex
|
354 |
+
">
|
355 |
+
<div style=" width:100%; ">
|
356 |
+
<h2 style="text-align:center;"><span class="text-size-11" style="color:#000000;"><strong>MARRE DE NE PAS PROGRESSER ?</strong></span></h2>
|
357 |
+
</div>
|
358 |
+
</div>
|
359 |
+
</div>
|
360 |
+
</div>
|
361 |
+
</div>
|
362 |
+
</div>
|
363 |
+
</div>
|
364 |
+
</div>
|
365 |
+
<div class="container-lg relative element-anchor-1085128">
|
366 |
+
<div class=" bloc-group-content mx-auto
|
367 |
+
shadow-none
|
368 |
+
px-4 md:px-9
|
369 |
+
pt-3
|
370 |
+
pb-3
|
371 |
+
rounded-t-none
|
372 |
+
rounded-b-none
|
373 |
+
|
374 |
+
appear-animate animation-fade-in-from-bottom
|
375 |
+
" style="
|
376 |
+
background-color:#FFFFFF00;
|
377 |
+
">
|
378 |
+
<div class="relative" style="z-index:5;">
|
379 |
+
<div>
|
380 |
+
<div class="relative column">
|
381 |
+
<div class="element-anchor-1085129 none">
|
382 |
+
<div class="ck-content bloc-text break-words
|
383 |
+
pt-3
|
384 |
+
pb-3
|
385 |
+
|
386 |
+
justify-center
|
387 |
+
flex
|
388 |
+
">
|
389 |
+
<div style=" width:100%; ">
|
390 |
+
<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>
|
391 |
+
</div>
|
392 |
+
</div>
|
393 |
+
</div>
|
394 |
+
</div>
|
395 |
+
</div>
|
396 |
+
</div>
|
397 |
+
</div>
|
398 |
+
</div>
|
399 |
+
</div>
|
400 |
+
</div>
|
401 |
+
<div class="relative bloc-section-content element-anchor-1051490
|
402 |
+
|
403 |
+
none
|
404 |
+
|
405 |
+
">
|
406 |
+
<div class="absolute top-0 left-0 w-full h-full" style="clip: rect(0, auto, auto, 0);
|
407 |
+
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
408 |
+
-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
409 |
+
opacity:1;
|
410 |
+
">
|
411 |
+
<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">
|
412 |
+
</div>
|
413 |
+
<div class="absolute inset-0" style="background-color:#0000004F;z-index:2; "></div>
|
414 |
+
<div class="relative" style="z-index:5;max-width:100%;">
|
415 |
+
<div class="container-xl relative element-anchor-1051451">
|
416 |
+
<div class=" bloc-group-content mx-auto
|
417 |
+
shadow-none
|
418 |
+
px-4 md:px-9
|
419 |
+
pt-6
|
420 |
+
pb-6
|
421 |
+
rounded-t-none
|
422 |
+
rounded-b-none
|
423 |
+
|
424 |
+
none
|
425 |
+
" style="
|
426 |
+
background-color:#FFFFFF00;
|
427 |
+
">
|
428 |
+
<div class="relative" style="z-index:5;">
|
429 |
+
<div>
|
430 |
+
<div class="relative column">
|
431 |
+
<div class="element-anchor-1051455 none">
|
432 |
+
<div class="flex justify-center none">
|
433 |
+
<div class="w-full">
|
434 |
+
<div class="h-28 md:h-32"></div>
|
435 |
+
</div>
|
436 |
+
</div>
|
437 |
+
</div>
|
438 |
+
<div class="element-anchor-1051478 appear-animate animation-fade-in-from-left">
|
439 |
+
<div class="ck-content bloc-text break-words
|
440 |
+
pt-3
|
441 |
+
pb-3
|
442 |
+
|
443 |
+
justify-center
|
444 |
+
flex
|
445 |
+
">
|
446 |
+
<div style=" width:100%; ">
|
447 |
+
<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>
|
448 |
+
</div>
|
449 |
+
</div>
|
450 |
+
</div>
|
451 |
+
</div>
|
452 |
+
</div>
|
453 |
+
</div>
|
454 |
+
</div>
|
455 |
+
</div>
|
456 |
+
<div class="container-lg relative element-anchor-1051479">
|
457 |
+
<div class=" bloc-group-content mx-auto
|
458 |
+
shadow-none
|
459 |
+
px-4 md:px-9
|
460 |
+
pt-9
|
461 |
+
pb-3
|
462 |
+
rounded-t-3xl
|
463 |
+
rounded-b-none
|
464 |
+
|
465 |
+
none
|
466 |
+
" style="
|
467 |
+
background-color:#809CDB1C;
|
468 |
+
">
|
469 |
+
<div class="relative" style="z-index:5;">
|
470 |
+
<div class="flex flex-wrap md:flex-nowrap gap-8 md:gap-16 items-start">
|
471 |
+
<div class="w-full md:w-5/12 split-column">
|
472 |
+
<div class="relative column">
|
473 |
+
<div class="element-anchor-1051452 appear-animate animation-fade-in-from-top">
|
474 |
+
<div class="ck-content bloc-text break-words
|
475 |
+
pt-3
|
476 |
+
pb-3
|
477 |
+
|
478 |
+
justify-center
|
479 |
+
flex
|
480 |
+
">
|
481 |
+
<div style=" width:100%; ">
|
482 |
+
<p style="text-align:center;"><span class="text-size-6" style="color:#FFFFFF;"><strong>QUE VAIS-JE TE REVELER :</strong></span></p>
|
483 |
+
</div>
|
484 |
+
</div>
|
485 |
+
</div>
|
486 |
+
<div class="element-anchor-1051480 appear-animate animation-fade-in-from-top">
|
487 |
+
<div class="
|
488 |
+
pt-0
|
489 |
+
pb-3
|
490 |
+
|
491 |
+
flex justify-center
|
492 |
+
">
|
493 |
+
<div class="relative">
|
494 |
+
<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,
|
495 |
+
https://Frog.b-cdn.net/22/6260d7399ac4e/OXb3V4yWVTam2lkfSEEY009Ed7wIdlSHQf3KtfIW.png?width=640&quality=75 640w,
|
496 |
+
https://Frog.b-cdn.net/22/6260d7399ac4e/OXb3V4yWVTam2lkfSEEY009Ed7wIdlSHQf3KtfIW.png?width=1024&quality=75 1024w,
|
497 |
+
https://Frog.b-cdn.net/22/6260d7399ac4e/OXb3V4yWVTam2lkfSEEY009Ed7wIdlSHQf3KtfIW.png?width=1600&quality=75 1600w,
|
498 |
+
https://Frog.b-cdn.net/22/6260d7399ac4e/OXb3V4yWVTam2lkfSEEY009Ed7wIdlSHQf3KtfIW.png?width=2048&quality=75 2048w">
|
499 |
+
</div>
|
500 |
+
</div>
|
501 |
+
</div>
|
502 |
+
<div class="element-anchor-1051499 appear-animate animation-fade-in-from-top">
|
503 |
+
<div class="ck-content bloc-text break-words
|
504 |
+
pt-3
|
505 |
+
pb-3
|
506 |
+
|
507 |
+
justify-center
|
508 |
+
flex
|
509 |
+
">
|
510 |
+
<div style=" width:100%; ">
|
511 |
+
<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>
|
512 |
+
</div>
|
513 |
+
</div>
|
514 |
+
</div>
|
515 |
+
</div>
|
516 |
+
</div>
|
517 |
+
<div class="w-full md:w-7/12 split-column">
|
518 |
+
<div class="relative column">
|
519 |
+
<div class="element-anchor-1051453 appear-animate animation-fade-in-from-right">
|
520 |
+
<div class="
|
521 |
+
pt-3
|
522 |
+
pb-3
|
523 |
+
|
524 |
+
flex justify-center
|
525 |
+
">
|
526 |
+
<div class="relative">
|
527 |
+
<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,
|
528 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/z1SHZhPQCat9hgeR6M9cW555W0nYs9xXMEBCb91m.png?width=640&quality=75 640w,
|
529 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/z1SHZhPQCat9hgeR6M9cW555W0nYs9xXMEBCb91m.png?width=1024&quality=75 1024w,
|
530 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/z1SHZhPQCat9hgeR6M9cW555W0nYs9xXMEBCb91m.png?width=1600&quality=75 1600w,
|
531 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/z1SHZhPQCat9hgeR6M9cW555W0nYs9xXMEBCb91m.png?width=2048&quality=75 2048w">
|
532 |
+
</div>
|
533 |
+
</div>
|
534 |
+
</div>
|
535 |
+
</div>
|
536 |
+
</div>
|
537 |
+
</div>
|
538 |
+
</div>
|
539 |
+
</div>
|
540 |
+
</div>
|
541 |
+
<div class="container-lg relative element-anchor-1051491">
|
542 |
+
<div class=" bloc-group-content mx-auto
|
543 |
+
shadow-2xl
|
544 |
+
px-4 md:px-9
|
545 |
+
pt-3
|
546 |
+
pb-6
|
547 |
+
rounded-t-none
|
548 |
+
rounded-b-3xl
|
549 |
+
|
550 |
+
appear-animate animation-fade-in-from-top
|
551 |
+
" style="
|
552 |
+
background-color:#809CDB1C;
|
553 |
+
">
|
554 |
+
<div class="relative" style="z-index:5;">
|
555 |
+
<div>
|
556 |
+
<div class="relative column">
|
557 |
+
<div class="element-anchor-1051457 none">
|
558 |
+
<div wire:id="N9TKDGdiF1FYRYbnbeMn" class="
|
559 |
+
pt-3
|
560 |
+
pb-3
|
561 |
+
|
562 |
+
flex justify-center
|
563 |
+
">
|
564 |
+
<div>
|
565 |
+
<button onclick="if (!window.__cfRLUnblockHandlers) return false; smoothScroll('.element-anchor-1051514');" class="text-center cursor-pointer relative inline-block
|
566 |
+
px-4 md:px-9
|
567 |
+
py-2 md:py-4
|
568 |
+
rounded-full
|
569 |
+
shadow-none
|
570 |
+
button-effect-3d
|
571 |
+
button-effect-shiny
|
572 |
+
" style="background-color:#F76E10;color:#FFFFFFFF;">
|
573 |
+
<div class="break-words ck-content">
|
574 |
+
<p><span class="text-size-8"><strong>▸▸▸</strong></span><span class="text-size-7"><strong> COMMENCE A T'ENTRAINER MAINTENANT</strong></span></p>
|
575 |
+
</div>
|
576 |
+
<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">
|
577 |
+
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
|
578 |
+
<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>
|
579 |
+
</svg>
|
580 |
+
</button>
|
581 |
+
</div>
|
582 |
+
</div>
|
583 |
+
</div>
|
584 |
+
</div>
|
585 |
+
</div>
|
586 |
+
</div>
|
587 |
+
</div>
|
588 |
+
</div>
|
589 |
+
<div class="container-lg relative element-anchor-1051500">
|
590 |
+
<div class=" bloc-group-content mx-auto
|
591 |
+
shadow-none
|
592 |
+
px-4 md:px-9
|
593 |
+
pt-3
|
594 |
+
pb-3
|
595 |
+
rounded-t-none
|
596 |
+
rounded-b-none
|
597 |
+
|
598 |
+
none
|
599 |
+
" style="
|
600 |
+
background-color:#FFFFFF00;
|
601 |
+
">
|
602 |
+
<div class="relative" style="z-index:5;">
|
603 |
+
<div>
|
604 |
+
<div class="relative column">
|
605 |
+
<div class="element-anchor-1051456 none">
|
606 |
+
<div class="flex justify-center none">
|
607 |
+
<div class="w-full">
|
608 |
+
<div class="h-16 md:h-16"></div>
|
609 |
+
</div>
|
610 |
+
</div>
|
611 |
+
</div>
|
612 |
+
</div>
|
613 |
+
</div>
|
614 |
+
</div>
|
615 |
+
</div>
|
616 |
+
</div>
|
617 |
+
</div>
|
618 |
+
</div>
|
619 |
+
<div class="relative bloc-section-content element-anchor-1051501
|
620 |
+
|
621 |
+
none
|
622 |
+
|
623 |
+
">
|
624 |
+
<div class="absolute top-0 left-0 w-full h-full" style="clip: rect(0, auto, auto, 0);
|
625 |
+
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
626 |
+
-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
627 |
+
opacity:1;
|
628 |
+
">
|
629 |
+
<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">
|
630 |
+
</div>
|
631 |
+
<div class="absolute inset-0" style="background-color:#0000005C;z-index:2; "></div>
|
632 |
+
<div class="relative" style="z-index:5;max-width:100%;">
|
633 |
+
<div class="container-lg relative element-anchor-1051458">
|
634 |
+
<div class=" bloc-group-content mx-auto
|
635 |
+
shadow-md
|
636 |
+
px-4 md:px-9
|
637 |
+
pt-3
|
638 |
+
pb-3
|
639 |
+
rounded-t-none
|
640 |
+
rounded-b-3xl
|
641 |
+
|
642 |
+
appear-animate animation-fade-in-from-top
|
643 |
+
" style="
|
644 |
+
background-color:#FFFFFF7A;
|
645 |
+
">
|
646 |
+
<div class="relative" style="z-index:5;">
|
647 |
+
<div>
|
648 |
+
<div class="relative column">
|
649 |
+
<div class="element-anchor-1051459 none">
|
650 |
+
<div class="ck-content bloc-text break-words
|
651 |
+
pt-3
|
652 |
+
pb-3
|
653 |
+
|
654 |
+
justify-center
|
655 |
+
flex
|
656 |
+
">
|
657 |
+
<div style=" width:100%; ">
|
658 |
+
<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>
|
659 |
+
</div>
|
660 |
+
</div>
|
661 |
+
</div>
|
662 |
+
</div>
|
663 |
+
</div>
|
664 |
+
</div>
|
665 |
+
</div>
|
666 |
+
</div>
|
667 |
+
<div class="container-lg relative element-anchor-1051493">
|
668 |
+
<div class=" bloc-group-content mx-auto
|
669 |
+
shadow-none
|
670 |
+
px-4 md:px-9
|
671 |
+
pt-3
|
672 |
+
pb-9
|
673 |
+
rounded-t-none
|
674 |
+
rounded-b-none
|
675 |
+
|
676 |
+
none
|
677 |
+
" style="
|
678 |
+
background-color:#FFFFFF00;
|
679 |
+
">
|
680 |
+
<div class="relative" style="z-index:5;">
|
681 |
+
<div>
|
682 |
+
<div class="relative column">
|
683 |
+
<div class="element-anchor-1051484 appear-animate animation-fade-in-from-top">
|
684 |
+
<div class="
|
685 |
+
pt-3
|
686 |
+
pb-3
|
687 |
+
|
688 |
+
flex justify-center
|
689 |
+
">
|
690 |
+
<div class="relative">
|
691 |
+
<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,
|
692 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/PKcC8OvsAMzQewc1hiTZRWR7xqgIWLpBZ3qpmGbD.png?width=640&quality=75 640w,
|
693 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/PKcC8OvsAMzQewc1hiTZRWR7xqgIWLpBZ3qpmGbD.png?width=1024&quality=75 1024w,
|
694 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/PKcC8OvsAMzQewc1hiTZRWR7xqgIWLpBZ3qpmGbD.png?width=1600&quality=75 1600w,
|
695 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/PKcC8OvsAMzQewc1hiTZRWR7xqgIWLpBZ3qpmGbD.png?width=2048&quality=75 2048w">
|
696 |
+
</div>
|
697 |
+
</div>
|
698 |
+
</div>
|
699 |
+
<div class="element-anchor-1051494 appear-animate animation-fade-in-from-top">
|
700 |
+
<div class="ck-content bloc-text break-words
|
701 |
+
pt-3
|
702 |
+
pb-3
|
703 |
+
|
704 |
+
justify-center
|
705 |
+
flex
|
706 |
+
">
|
707 |
+
<div style=" width:100%; ">
|
708 |
+
<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>
|
709 |
+
</div>
|
710 |
+
</div>
|
711 |
+
</div>
|
712 |
+
<div class="element-anchor-1051511 appear-animate animation-bounce-in">
|
713 |
+
<div wire:id="2lAwHxXVJG6hfWiaY32T" class="
|
714 |
+
pt-6
|
715 |
+
pb-12
|
716 |
+
|
717 |
+
flex justify-center
|
718 |
+
">
|
719 |
+
<div>
|
720 |
+
<button onclick="if (!window.__cfRLUnblockHandlers) return false; smoothScroll('.element-anchor-1051514');" class="text-center cursor-pointer relative inline-block
|
721 |
+
px-4 md:px-9
|
722 |
+
py-2 md:py-4
|
723 |
+
rounded-full
|
724 |
+
shadow-none
|
725 |
+
button-effect-3d
|
726 |
+
button-effect-shiny
|
727 |
+
" style="background-color:#F76E10;color:#FFFFFFFF;">
|
728 |
+
<div class="break-words ck-content">
|
729 |
+
<p><span class="text-size-8"><strong>▸▸▸</strong></span><span class="text-size-7"><strong> COMMENCE A PROGRESSER MAINTENANT</strong></span></p>
|
730 |
+
</div>
|
731 |
+
<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">
|
732 |
+
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
|
733 |
+
<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>
|
734 |
+
</svg>
|
735 |
+
</button>
|
736 |
+
</div>
|
737 |
+
</div>
|
738 |
+
</div>
|
739 |
+
</div>
|
740 |
+
</div>
|
741 |
+
</div>
|
742 |
+
</div>
|
743 |
+
</div>
|
744 |
+
</div>
|
745 |
+
</div>
|
746 |
+
<div class="relative bloc-section-content element-anchor-1051508
|
747 |
+
|
748 |
+
none
|
749 |
+
|
750 |
+
">
|
751 |
+
<div class="absolute inset-0" style="background-color:#00000057;z-index:2; "></div>
|
752 |
+
<div class="relative" style="z-index:5;max-width:100%;">
|
753 |
+
<div class="container-xl relative element-anchor-1051513">
|
754 |
+
<div class=" bloc-group-content mx-auto
|
755 |
+
shadow-none
|
756 |
+
px-4 md:px-9
|
757 |
+
pt-6
|
758 |
+
pb-6
|
759 |
+
rounded-t-none
|
760 |
+
rounded-b-3xl
|
761 |
+
|
762 |
+
none
|
763 |
+
" style="
|
764 |
+
background-color:#FFFFFF00;
|
765 |
+
">
|
766 |
+
<div class="relative" style="z-index:5;">
|
767 |
+
<div>
|
768 |
+
<div class="relative column">
|
769 |
+
<div class="element-anchor-1051467 appear-animate animation-fade-in-from-top">
|
770 |
+
<div class="ck-content bloc-text break-words
|
771 |
+
pt-3
|
772 |
+
pb-3
|
773 |
+
|
774 |
+
justify-center
|
775 |
+
flex
|
776 |
+
">
|
777 |
+
<div style=" width:100%; ">
|
778 |
+
<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>
|
779 |
+
</div>
|
780 |
+
</div>
|
781 |
+
</div>
|
782 |
+
<div class="element-anchor-1051487 appear-animate animation-fade-in-from-top">
|
783 |
+
<div class="
|
784 |
+
pt-0
|
785 |
+
pb-3
|
786 |
+
|
787 |
+
flex justify-center
|
788 |
+
">
|
789 |
+
<div class="relative">
|
790 |
+
<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,
|
791 |
+
https://Frog.b-cdn.net/22/6260d7399ac4e/Vu8eeaE3xQ0jZYHC0qvaEs9jCGmG2wOFEQiBaYKc.png?width=640&quality=75 640w,
|
792 |
+
https://Frog.b-cdn.net/22/6260d7399ac4e/Vu8eeaE3xQ0jZYHC0qvaEs9jCGmG2wOFEQiBaYKc.png?width=1024&quality=75 1024w,
|
793 |
+
https://Frog.b-cdn.net/22/6260d7399ac4e/Vu8eeaE3xQ0jZYHC0qvaEs9jCGmG2wOFEQiBaYKc.png?width=1600&quality=75 1600w,
|
794 |
+
https://Frog.b-cdn.net/22/6260d7399ac4e/Vu8eeaE3xQ0jZYHC0qvaEs9jCGmG2wOFEQiBaYKc.png?width=2048&quality=75 2048w">
|
795 |
+
</div>
|
796 |
+
</div>
|
797 |
+
</div>
|
798 |
+
</div>
|
799 |
+
</div>
|
800 |
+
</div>
|
801 |
+
</div>
|
802 |
+
</div>
|
803 |
+
</div>
|
804 |
+
</div>
|
805 |
+
<div class="relative bloc-section-content element-anchor-1051512
|
806 |
+
|
807 |
+
none
|
808 |
+
|
809 |
+
">
|
810 |
+
<div class="absolute top-0 left-0 w-full h-full" style="clip: rect(0, auto, auto, 0);
|
811 |
+
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
812 |
+
-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
813 |
+
opacity:1;
|
814 |
+
">
|
815 |
+
<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">
|
816 |
+
</div>
|
817 |
+
<div class="absolute inset-0" style="background-color:#0000004D;z-index:2; "></div>
|
818 |
+
<div class="relative" style="z-index:5;max-width:100%;">
|
819 |
+
<div class="container-lg relative element-anchor-1051468">
|
820 |
+
<div class=" bloc-group-content mx-auto
|
821 |
+
shadow-none
|
822 |
+
px-4 md:px-9
|
823 |
+
pt-0
|
824 |
+
pb-6
|
825 |
+
rounded-t-none
|
826 |
+
rounded-b-none
|
827 |
+
|
828 |
+
none
|
829 |
+
" style="
|
830 |
+
background-color:#FFFFFF00;
|
831 |
+
">
|
832 |
+
<div class="relative" style="z-index:5;">
|
833 |
+
<div class="flex flex-wrap md:flex-nowrap gap-8 md:gap-16 items-start">
|
834 |
+
<div class="w-full md:w-1/2 split-column">
|
835 |
+
<div class="relative column">
|
836 |
+
<div class="element-anchor-1555157 none">
|
837 |
+
<div class="
|
838 |
+
pt-3
|
839 |
+
pb-3
|
840 |
+
|
841 |
+
flex justify-center
|
842 |
+
">
|
843 |
+
<div class="relative">
|
844 |
+
<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,
|
845 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/YqHKs9wMZicQE8vPitxm0JAYviTEpV2QUOw78c8F.png?width=640&quality=75 640w,
|
846 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/YqHKs9wMZicQE8vPitxm0JAYviTEpV2QUOw78c8F.png?width=1024&quality=75 1024w,
|
847 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/YqHKs9wMZicQE8vPitxm0JAYviTEpV2QUOw78c8F.png?width=1600&quality=75 1600w,
|
848 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/YqHKs9wMZicQE8vPitxm0JAYviTEpV2QUOw78c8F.png?width=2048&quality=75 2048w">
|
849 |
+
</div>
|
850 |
+
</div>
|
851 |
+
</div>
|
852 |
+
<div class="element-anchor-1556376 none">
|
853 |
+
<div class="ck-content bloc-text break-words
|
854 |
+
pt-3
|
855 |
+
pb-3
|
856 |
+
|
857 |
+
justify-center
|
858 |
+
flex
|
859 |
+
">
|
860 |
+
<div style=" width:100%; ">
|
861 |
+
<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>
|
862 |
+
</div>
|
863 |
+
</div>
|
864 |
+
</div>
|
865 |
+
<div class="element-anchor-1562325 none">
|
866 |
+
<div class="flex justify-center none">
|
867 |
+
<div class="w-full">
|
868 |
+
<div class="h-20 md:h-24"></div>
|
869 |
+
</div>
|
870 |
+
</div>
|
871 |
+
</div>
|
872 |
+
<div class="element-anchor-1051488 appear-animate animation-fade-in-from-top">
|
873 |
+
<div class="
|
874 |
+
pt-3
|
875 |
+
pb-3
|
876 |
+
|
877 |
+
flex justify-center
|
878 |
+
">
|
879 |
+
<div class="relative">
|
880 |
+
<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,
|
881 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/VbwQsR0g6gIDMnfhtFF1IcYut6axo2bRCGoEtzjB.png?width=640&quality=75 640w,
|
882 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/VbwQsR0g6gIDMnfhtFF1IcYut6axo2bRCGoEtzjB.png?width=1024&quality=75 1024w,
|
883 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/VbwQsR0g6gIDMnfhtFF1IcYut6axo2bRCGoEtzjB.png?width=1600&quality=75 1600w,
|
884 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/VbwQsR0g6gIDMnfhtFF1IcYut6axo2bRCGoEtzjB.png?width=2048&quality=75 2048w">
|
885 |
+
</div>
|
886 |
+
</div>
|
887 |
+
</div>
|
888 |
+
</div>
|
889 |
+
</div>
|
890 |
+
<div class="w-full md:w-1/2 split-column">
|
891 |
+
<div class="relative column">
|
892 |
+
<div class="element-anchor-1556396 none">
|
893 |
+
<div class="flex justify-center none">
|
894 |
+
<div class="w-full">
|
895 |
+
<div class="h-20 md:h-24"></div>
|
896 |
+
</div>
|
897 |
+
</div>
|
898 |
+
</div>
|
899 |
+
<div class="element-anchor-1562295 none">
|
900 |
+
<div class="flex justify-center none">
|
901 |
+
<div class="w-full">
|
902 |
+
<div class="h-20 md:h-24"></div>
|
903 |
+
</div>
|
904 |
+
</div>
|
905 |
+
</div>
|
906 |
+
<div class="element-anchor-1556372 none">
|
907 |
+
<div class="ck-content bloc-text break-words
|
908 |
+
pt-3
|
909 |
+
pb-3
|
910 |
+
|
911 |
+
justify-center
|
912 |
+
flex
|
913 |
+
">
|
914 |
+
<div style=" width:100%; ">
|
915 |
+
<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>
|
916 |
+
</div>
|
917 |
+
</div>
|
918 |
+
</div>
|
919 |
+
<div class="element-anchor-1556375 none">
|
920 |
+
<div class="flex justify-center none">
|
921 |
+
<div class="w-full">
|
922 |
+
<div class="h-20 md:h-24"></div>
|
923 |
+
</div>
|
924 |
+
</div>
|
925 |
+
</div>
|
926 |
+
<div class="element-anchor-1555160 none">
|
927 |
+
<div class="
|
928 |
+
pt-3
|
929 |
+
pb-3
|
930 |
+
|
931 |
+
flex justify-center
|
932 |
+
">
|
933 |
+
<div class="relative">
|
934 |
+
<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,
|
935 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/R9sH7BFxEr0kvX6koQnaiEFjzp3EmmtaTrIiMnUv.png?width=640&quality=75 640w,
|
936 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/R9sH7BFxEr0kvX6koQnaiEFjzp3EmmtaTrIiMnUv.png?width=1024&quality=75 1024w,
|
937 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/R9sH7BFxEr0kvX6koQnaiEFjzp3EmmtaTrIiMnUv.png?width=1600&quality=75 1600w,
|
938 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/R9sH7BFxEr0kvX6koQnaiEFjzp3EmmtaTrIiMnUv.png?width=2048&quality=75 2048w">
|
939 |
+
</div>
|
940 |
+
</div>
|
941 |
+
</div>
|
942 |
+
<div class="element-anchor-1556395 none">
|
943 |
+
<div class="flex justify-center none">
|
944 |
+
<div class="w-full">
|
945 |
+
<div class="h-28 md:h-32"></div>
|
946 |
+
</div>
|
947 |
+
</div>
|
948 |
+
</div>
|
949 |
+
<div class="element-anchor-1556380 none">
|
950 |
+
<div class="ck-content bloc-text break-words
|
951 |
+
pt-3
|
952 |
+
pb-3
|
953 |
+
|
954 |
+
justify-center
|
955 |
+
flex
|
956 |
+
">
|
957 |
+
<div style=" width:100%; ">
|
958 |
+
<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>
|
959 |
+
</div>
|
960 |
+
</div>
|
961 |
+
</div>
|
962 |
+
</div>
|
963 |
+
</div>
|
964 |
+
</div>
|
965 |
+
</div>
|
966 |
+
</div>
|
967 |
+
</div>
|
968 |
+
<div class="container-xl relative element-anchor-1051489">
|
969 |
+
<div class=" bloc-group-content mx-auto
|
970 |
+
shadow-none
|
971 |
+
px-4 md:px-9
|
972 |
+
pt-6
|
973 |
+
pb-3
|
974 |
+
rounded-t-none
|
975 |
+
rounded-b-3xl
|
976 |
+
|
977 |
+
none
|
978 |
+
" style="
|
979 |
+
background-color:#FFFFFF00;
|
980 |
+
">
|
981 |
+
<div class="relative" style="z-index:5;">
|
982 |
+
<div>
|
983 |
+
<div class="relative column">
|
984 |
+
<div class="element-anchor-1051470 appear-animate animation-fade-in-from-top">
|
985 |
+
<div class="ck-content bloc-text break-words
|
986 |
+
pt-3
|
987 |
+
pb-3
|
988 |
+
|
989 |
+
justify-center
|
990 |
+
flex
|
991 |
+
">
|
992 |
+
<div style=" width:100%; ">
|
993 |
+
<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>
|
994 |
+
</div>
|
995 |
+
</div>
|
996 |
+
</div>
|
997 |
+
<div class="element-anchor-1051492 appear-animate animation-fade-in-from-top">
|
998 |
+
<div class="
|
999 |
+
pt-0
|
1000 |
+
pb-3
|
1001 |
+
|
1002 |
+
flex justify-center
|
1003 |
+
">
|
1004 |
+
<div class="relative">
|
1005 |
+
<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,
|
1006 |
+
https://Frog.b-cdn.net/22/6260d7399ac4e/3qZ6e5zd6o6eLTQpK61pxnWe25PPgemK1ToK0Fqk.png?width=640&quality=75 640w,
|
1007 |
+
https://Frog.b-cdn.net/22/6260d7399ac4e/3qZ6e5zd6o6eLTQpK61pxnWe25PPgemK1ToK0Fqk.png?width=1024&quality=75 1024w,
|
1008 |
+
https://Frog.b-cdn.net/22/6260d7399ac4e/3qZ6e5zd6o6eLTQpK61pxnWe25PPgemK1ToK0Fqk.png?width=1600&quality=75 1600w,
|
1009 |
+
https://Frog.b-cdn.net/22/6260d7399ac4e/3qZ6e5zd6o6eLTQpK61pxnWe25PPgemK1ToK0Fqk.png?width=2048&quality=75 2048w">
|
1010 |
+
</div>
|
1011 |
+
</div>
|
1012 |
+
</div>
|
1013 |
+
<div class="element-anchor-1051503 appear-animate animation-fade-in-from-bottom">
|
1014 |
+
<div class="
|
1015 |
+
pt-6
|
1016 |
+
pb-6
|
1017 |
+
|
1018 |
+
flex justify-center
|
1019 |
+
">
|
1020 |
+
<div class="relative">
|
1021 |
+
<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,
|
1022 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/j9YFaG41pAp2oaCnXt32W41vGzUgLK31NCp78mH3.png?width=640&quality=75 640w,
|
1023 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/j9YFaG41pAp2oaCnXt32W41vGzUgLK31NCp78mH3.png?width=1024&quality=75 1024w,
|
1024 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/j9YFaG41pAp2oaCnXt32W41vGzUgLK31NCp78mH3.png?width=1600&quality=75 1600w,
|
1025 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/j9YFaG41pAp2oaCnXt32W41vGzUgLK31NCp78mH3.png?width=2048&quality=75 2048w">
|
1026 |
+
</div>
|
1027 |
+
</div>
|
1028 |
+
</div>
|
1029 |
+
</div>
|
1030 |
+
</div>
|
1031 |
+
</div>
|
1032 |
+
</div>
|
1033 |
+
</div>
|
1034 |
+
<div class="container-md relative element-anchor-1051507">
|
1035 |
+
<div class=" bloc-group-content mx-auto
|
1036 |
+
shadow-none
|
1037 |
+
px-6 md:px-12
|
1038 |
+
pt-3
|
1039 |
+
pb-9
|
1040 |
+
rounded-t-none
|
1041 |
+
rounded-b-3xl
|
1042 |
+
|
1043 |
+
none
|
1044 |
+
" style="
|
1045 |
+
background-color:#FFFFFF00;
|
1046 |
+
">
|
1047 |
+
<div class="relative" style="z-index:5;">
|
1048 |
+
<div>
|
1049 |
+
<div class="relative column">
|
1050 |
+
<div class="element-anchor-1051471 none">
|
1051 |
+
<div class="ck-content bloc-text break-words
|
1052 |
+
pt-0
|
1053 |
+
pb-3
|
1054 |
+
|
1055 |
+
justify-center
|
1056 |
+
flex
|
1057 |
+
">
|
1058 |
+
<div style=" width:100%; ">
|
1059 |
+
<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>
|
1060 |
+
</div>
|
1061 |
+
</div>
|
1062 |
+
</div>
|
1063 |
+
</div>
|
1064 |
+
</div>
|
1065 |
+
</div>
|
1066 |
+
</div>
|
1067 |
+
</div>
|
1068 |
+
<div class="container-md relative element-anchor-1051514">
|
1069 |
+
<div class=" bloc-group-content mx-auto
|
1070 |
+
shadow-lg
|
1071 |
+
px-4 md:px-9
|
1072 |
+
pt-3
|
1073 |
+
pb-3
|
1074 |
+
rounded-t-3xl
|
1075 |
+
rounded-b-3xl
|
1076 |
+
|
1077 |
+
none
|
1078 |
+
" style="
|
1079 |
+
background-color:#F9FAFB0F;
|
1080 |
+
">
|
1081 |
+
<div class="relative" style="z-index:5;">
|
1082 |
+
<div>
|
1083 |
+
<div class="relative column">
|
1084 |
+
<div class="element-anchor-1051472 appear-animate animation-bounce-in">
|
1085 |
+
<div class="ck-content bloc-text break-words
|
1086 |
+
pt-6
|
1087 |
+
pb-3
|
1088 |
+
|
1089 |
+
justify-center
|
1090 |
+
flex
|
1091 |
+
">
|
1092 |
+
<div style=" width:100%; ">
|
1093 |
+
<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>
|
1094 |
+
</div>
|
1095 |
+
</div>
|
1096 |
+
</div>
|
1097 |
+
<div class="element-anchor-1051481 animation-pulse">
|
1098 |
+
<div wire:id="EVjv55kxTii0hGd3Llkz" class="
|
1099 |
+
pt-6
|
1100 |
+
pb-6
|
1101 |
+
|
1102 |
+
flex justify-center
|
1103 |
+
">
|
1104 |
+
<div>
|
1105 |
+
<button wire:click="pressButton(1051481)" class="text-center cursor-pointer relative inline-block
|
1106 |
+
px-4 md:px-9
|
1107 |
+
py-2 md:py-4
|
1108 |
+
rounded-full
|
1109 |
+
shadow-none
|
1110 |
+
button-effect-3d
|
1111 |
+
button-effect-shiny
|
1112 |
+
" style="background-color:#F76E10;color:#FFFFFFFF;">
|
1113 |
+
<div class="break-words ck-content">
|
1114 |
+
<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>
|
1115 |
+
</div>
|
1116 |
+
<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">
|
1117 |
+
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
|
1118 |
+
<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>
|
1119 |
+
</svg>
|
1120 |
+
</button>
|
1121 |
+
</div>
|
1122 |
+
</div>
|
1123 |
+
</div>
|
1124 |
+
<div class="element-anchor-1051495 none">
|
1125 |
+
<div class="ck-content bloc-text break-words
|
1126 |
+
pt-3
|
1127 |
+
pb-3
|
1128 |
+
|
1129 |
+
justify-center
|
1130 |
+
flex
|
1131 |
+
">
|
1132 |
+
<div style=" width:100%; ">
|
1133 |
+
<p style="text-align:center;"><span class="text-size-6" style="color:#FFFFFF;"><strong>OFFRE LIMITÉE ENCORE DISPONIBLE POUR :</strong></span></p>
|
1134 |
+
</div>
|
1135 |
+
</div>
|
1136 |
+
</div>
|
1137 |
+
<div class="element-anchor-1051502 none">
|
1138 |
+
<div class="
|
1139 |
+
pt-0
|
1140 |
+
pb-3
|
1141 |
+
|
1142 |
+
flex justify-center
|
1143 |
+
">
|
1144 |
+
<div id="timer_bloc_1051502_1704741441_container" x-data="{}" x-init="$nextTick(() => { new FlipDown(1704891441,'timer_bloc_1051502_1704741441',{theme: 'light'}).start(); })">
|
1145 |
+
<div wire:ignore="">
|
1146 |
+
<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>
|
1147 |
+
</div>
|
1148 |
+
</div>
|
1149 |
+
</div>
|
1150 |
+
</div>
|
1151 |
+
</div>
|
1152 |
+
</div>
|
1153 |
+
</div>
|
1154 |
+
</div>
|
1155 |
+
</div>
|
1156 |
+
<div class="container-md relative element-anchor-1051515">
|
1157 |
+
<div class=" bloc-group-content mx-auto
|
1158 |
+
shadow-none
|
1159 |
+
px-4 md:px-9
|
1160 |
+
pt-0
|
1161 |
+
pb-6
|
1162 |
+
rounded-t-none
|
1163 |
+
rounded-b-3xl
|
1164 |
+
|
1165 |
+
none
|
1166 |
+
" style="
|
1167 |
+
background-color:#FFFFFF00;
|
1168 |
+
">
|
1169 |
+
<div class="relative" style="z-index:5;">
|
1170 |
+
<div>
|
1171 |
+
<div class="relative column">
|
1172 |
+
<div class="element-anchor-1051460 none">
|
1173 |
+
<div class="flex justify-center none">
|
1174 |
+
<div class="w-full">
|
1175 |
+
<div class="h-16 md:h-16"></div>
|
1176 |
+
</div>
|
1177 |
+
</div>
|
1178 |
+
</div>
|
1179 |
+
</div>
|
1180 |
+
</div>
|
1181 |
+
</div>
|
1182 |
+
</div>
|
1183 |
+
</div>
|
1184 |
+
</div>
|
1185 |
+
</div>
|
1186 |
+
<div class="relative bloc-section-content element-anchor-1051516
|
1187 |
+
|
1188 |
+
none
|
1189 |
+
|
1190 |
+
">
|
1191 |
+
<div class="absolute inset-0" style="background-color:#000000;z-index:2; "></div>
|
1192 |
+
<div class="relative" style="z-index:5;max-width:100%;">
|
1193 |
+
<div class="container-xl relative element-anchor-1051473">
|
1194 |
+
<div class=" bloc-group-content mx-auto
|
1195 |
+
shadow-none
|
1196 |
+
px-4 md:px-9
|
1197 |
+
pt-6
|
1198 |
+
pb-6
|
1199 |
+
rounded-t-none
|
1200 |
+
rounded-b-none
|
1201 |
+
|
1202 |
+
none
|
1203 |
+
" style="
|
1204 |
+
background-color:#FFFFFF00;
|
1205 |
+
">
|
1206 |
+
<div class="relative" style="z-index:5;">
|
1207 |
+
<div>
|
1208 |
+
<div class="relative column">
|
1209 |
+
<div class="element-anchor-1051474 none">
|
1210 |
+
<div class="
|
1211 |
+
pt-0
|
1212 |
+
pb-3
|
1213 |
+
|
1214 |
+
flex justify-center
|
1215 |
+
">
|
1216 |
+
<div class="relative">
|
1217 |
+
<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,
|
1218 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/Qm0VVuWsBAGraaFBEgCI5dWBG6jvyrhttV19Hr7v.png?width=640&quality=75 640w,
|
1219 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/Qm0VVuWsBAGraaFBEgCI5dWBG6jvyrhttV19Hr7v.png?width=1024&quality=75 1024w,
|
1220 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/Qm0VVuWsBAGraaFBEgCI5dWBG6jvyrhttV19Hr7v.png?width=1600&quality=75 1600w,
|
1221 |
+
https://Frog.b-cdn.net/937/636978e0a61fc/Qm0VVuWsBAGraaFBEgCI5dWBG6jvyrhttV19Hr7v.png?width=2048&quality=75 2048w">
|
1222 |
+
</div>
|
1223 |
+
</div>
|
1224 |
+
</div>
|
1225 |
+
<div class="element-anchor-1051483 none">
|
1226 |
+
<div class="ck-content bloc-text break-words
|
1227 |
+
pt-0
|
1228 |
+
pb-0
|
1229 |
+
|
1230 |
+
justify-center
|
1231 |
+
flex
|
1232 |
+
">
|
1233 |
+
<div style=" width:100%; ">
|
1234 |
+
<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>
|
1235 |
+
</div>
|
1236 |
+
</div>
|
1237 |
+
</div>
|
1238 |
+
</div>
|
1239 |
+
</div>
|
1240 |
+
</div>
|
1241 |
+
</div>
|
1242 |
+
</div>
|
1243 |
+
</div>
|
1244 |
+
</div>
|
1245 |
+
</div>
|
1246 |
+
<div class="flex flex-col flex-wrap items-center justify-center gap-4 p-4 bg-white md:p-12">
|
1247 |
+
<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">
|
1248 |
+
<div class="text-sm font-semibold">
|
1249 |
+
Powered by
|
1250 |
+
</div>
|
1251 |
+
<img src="https://reufit.frog.tech/images/frog.svg" class="inline-block h-6">
|
1252 |
+
</a>
|
1253 |
+
<div>
|
1254 |
+
<div class="flex flex-wrap justify-center gap-6 text-xs text-gray-400">
|
1255 |
+
<div x-data="{open:false}">
|
1256 |
+
<div x-on:click="open = true" class="block">
|
1257 |
+
<div class="font-semibold text-gray-400 cursor-pointer hover:text-gray-800">
|
1258 |
+
Conditions générales
|
1259 |
+
</div>
|
1260 |
+
</div>
|
1261 |
+
<div class="fixed inset-0 z-50 overflow-y-auto" x-show="open" style="display: none;">
|
1262 |
+
<div class="flex items-end justify-center min-h-screen px-4 pt-4 pb-20 text-center sm:block sm:p-0">
|
1263 |
+
<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;">
|
1264 |
+
<div class="absolute inset-0 bg-gray-500 opacity-75 dark:bg-gray-900" x-on:click="open = false"></div>
|
1265 |
+
</div>
|
1266 |
+
<span class="hidden sm:inline-block sm:align-middle sm:h-screen"></span>​
|
1267 |
+
<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;">
|
1268 |
+
<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">
|
1269 |
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5">
|
1270 |
+
<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>
|
1271 |
+
</svg>
|
1272 |
+
</button>
|
1273 |
+
<div class="p-6">
|
1274 |
+
<div class="grid grid-cols-1 px-6 py-6 space-y-4 sm:p-8">
|
1275 |
+
<h3 class="text-lg font-medium leading-6 text-gray-900">
|
1276 |
+
Termes & Conditions
|
1277 |
+
</h3>
|
1278 |
+
<div class="ck-content">
|
1279 |
+
<h2>Conditions générales d'utilisation</h2>
|
1280 |
+
<h2></h2>
|
1281 |
+
<p> </p>
|
1282 |
+
<p>En vigueur au 05/11/2023</p>
|
1283 |
+
<p> </p>
|
1284 |
+
<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>
|
1285 |
+
<p> </p>
|
1286 |
+
<p>Les présentes CGU sont accessibles sur le site à la rubrique «<strong>CGU</strong>».</p>
|
1287 |
+
<h2></h2>
|
1288 |
+
<p> </p>
|
1289 |
+
<h2>Article 1 : Les mentions légales</h2>
|
1290 |
+
<h2></h2>
|
1291 |
+
<p> </p>
|
1292 |
+
<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>
|
1293 |
+
<p>Adresse e-mail [email protected].</p>
|
1294 |
+
<p> </p>
|
1295 |
+
<h2>ARTICLE 2 : Accès au site</h2>
|
1296 |
+
<h2></h2>
|
1297 |
+
<p> </p>
|
1298 |
+
<p>Le site https://reufit.frog.tech permet à l'Utilisateur un accès gratuit aux services suivants :</p>
|
1299 |
+
<p>Le site internet propose les services suivants :</p>
|
1300 |
+
<p>Programme musculation</p>
|
1301 |
+
<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>
|
1302 |
+
<h2></h2>
|
1303 |
+
<p> </p>
|
1304 |
+
<h2>ARTICLE 3 : Collecte des données</h2>
|
1305 |
+
<h2></h2>
|
1306 |
+
<p> </p>
|
1307 |
+
<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>
|
1308 |
+
<p> </p>
|
1309 |
+
<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>
|
1310 |
+
<p>· par mail à l'adresse email [email protected]</p>
|
1311 |
+
<h2></h2>
|
1312 |
+
<p> </p>
|
1313 |
+
<h2>ARTICLE 4 : Propriété intellectuelle</h2>
|
1314 |
+
<h2></h2>
|
1315 |
+
<p> </p>
|
1316 |
+
<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>
|
1317 |
+
<p> </p>
|
1318 |
+
<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>
|
1319 |
+
<p> </p>
|
1320 |
+
<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>
|
1321 |
+
<p> </p>
|
1322 |
+
<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>
|
1323 |
+
<h2>ARTICLE 5 : Responsabilité</h2>
|
1324 |
+
<h2></h2>
|
1325 |
+
<p> </p>
|
1326 |
+
<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>
|
1327 |
+
<p> </p>
|
1328 |
+
<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>
|
1329 |
+
<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>
|
1330 |
+
<p> </p>
|
1331 |
+
<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>
|
1332 |
+
<h2></h2>
|
1333 |
+
<p> </p>
|
1334 |
+
<h2>ARTICLE 6 : Liens hypertextes</h2>
|
1335 |
+
<h2></h2>
|
1336 |
+
<p> </p>
|
1337 |
+
<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>
|
1338 |
+
<h2></h2>
|
1339 |
+
<p> </p>
|
1340 |
+
<h2>ARTICLE 7 : Cookies</h2>
|
1341 |
+
<h2></h2>
|
1342 |
+
<p> </p>
|
1343 |
+
<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>
|
1344 |
+
<p> </p>
|
1345 |
+
<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>
|
1346 |
+
<p> </p>
|
1347 |
+
<p>L’information contenue dans les cookies est utilisée pour améliorer le site https://reufit.frog.tech.</p>
|
1348 |
+
<p> </p>
|
1349 |
+
<p>En naviguant sur le site, L’Utilisateur les accepte.</p>
|
1350 |
+
<p>L’Utilisateur pourra désactiver ces cookies par l’intermédiaire des paramètres figurant au sein de son logiciel de navigation.</p>
|
1351 |
+
<h2></h2>
|
1352 |
+
<p> </p>
|
1353 |
+
<h2>ARTICLE 8 : Droit applicable et juridiction compétente</h2>
|
1354 |
+
<h2></h2>
|
1355 |
+
<p> </p>
|
1356 |
+
<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>
|
1357 |
+
<p>Pour toute question relative à l’application des présentes CGU, vous pouvez joindre l’éditeur aux coordonnées inscrites à l’ARTICLE 1.</p>
|
1358 |
+
</div>
|
1359 |
+
</div>
|
1360 |
+
</div>
|
1361 |
+
</div>
|
1362 |
+
</div>
|
1363 |
+
</div>
|
1364 |
+
</div>
|
1365 |
+
</div>
|
1366 |
+
</div>
|
1367 |
+
</div>
|
1368 |
+
</div>
|
1369 |
+
</div>
|
1370 |
+
|
1371 |
+
<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>
|
1372 |
+
|
1373 |
+
<div x-data="{}" x-on:scrolltop.window="window.scrollTo({top: 0});"></div>
|
1374 |
+
|
1375 |
+
|
1376 |
+
<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>
|