WeakneeB commited on
Commit
3da1751
·
verified ·
1 Parent(s): dadefbc

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +576 -19
  3. prompts.txt +3 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Thee Space
3
- emoji: 🌍
4
- colorFrom: pink
5
- colorTo: gray
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: thee-space
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: pink
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,576 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>60-Day Bodyweight Challenge</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .exercise-card {
11
+ transition: all 0.3s ease;
12
+ transform-style: preserve-3d;
13
+ }
14
+ .exercise-card:hover {
15
+ transform: translateY(-5px) rotateX(5deg);
16
+ box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
17
+ }
18
+ .progress-bar {
19
+ height: 8px;
20
+ border-radius: 4px;
21
+ transition: width 0.5s ease;
22
+ }
23
+ .day-card {
24
+ transition: all 0.2s ease;
25
+ }
26
+ .day-card:hover {
27
+ transform: scale(1.03);
28
+ }
29
+ .day-card.completed {
30
+ background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
31
+ }
32
+ .day-card.current {
33
+ box-shadow: 0 0 0 3px #3b82f6;
34
+ }
35
+ @keyframes pulse {
36
+ 0% { transform: scale(1); }
37
+ 50% { transform: scale(1.05); }
38
+ 100% { transform: scale(1); }
39
+ }
40
+ .animate-pulse {
41
+ animation: pulse 2s infinite;
42
+ }
43
+ .floating {
44
+ animation: float 6s ease-in-out infinite;
45
+ }
46
+ @keyframes float {
47
+ 0% { transform: translateY(0px); }
48
+ 50% { transform: translateY(-10px); }
49
+ 100% { transform: translateY(0px); }
50
+ }
51
+ </style>
52
+ </head>
53
+ <body class="bg-gray-50 min-h-screen">
54
+ <div class="container mx-auto px-4 py-8 max-w-6xl">
55
+ <!-- Header -->
56
+ <div class="text-center mb-12 bg-gradient-to-r from-blue-600 to-emerald-600 text-white rounded-2xl p-8 shadow-xl">
57
+ <h1 class="text-4xl md:text-5xl font-extrabold mb-4">60-Day Bodyweight Challenge</h1>
58
+ <p class="text-xl opacity-90 mb-6">Transform your fitness with just 5 fundamental exercises</p>
59
+ <div class="flex flex-wrap justify-center gap-3">
60
+ <span class="px-4 py-2 bg-white bg-opacity-20 rounded-full flex items-center gap-2">
61
+ <i class="fas fa-fire text-yellow-300"></i> No Equipment Needed
62
+ </span>
63
+ <span class="px-4 py-2 bg-white bg-opacity-20 rounded-full flex items-center gap-2">
64
+ <i class="fas fa-calendar-check text-green-300"></i> 60 Days
65
+ </span>
66
+ <span class="px-4 py-2 bg-white bg-opacity-20 rounded-full flex items-center gap-2">
67
+ <i class="fas fa-dumbbell text-red-300"></i> 5 Exercises
68
+ </span>
69
+ </div>
70
+ </div>
71
+
72
+ <!-- Exercises Overview -->
73
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-5 gap-6 mb-12">
74
+ <!-- Push-ups Card -->
75
+ <div class="exercise-card bg-white rounded-xl p-6 shadow-lg border-l-4 border-blue-500">
76
+ <div class="text-blue-500 text-4xl mb-4 flex justify-center">
77
+ <i class="fas fa-person-digging"></i>
78
+ </div>
79
+ <h3 class="text-xl font-bold text-gray-800 mb-2 text-center">Push-ups</h3>
80
+ <p class="text-gray-600 text-sm text-center">Targets chest, shoulders & triceps</p>
81
+ <div class="mt-4 text-center">
82
+ <span class="inline-block bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-xs font-medium">Day 1: 20 reps</span>
83
+ </div>
84
+ </div>
85
+
86
+ <!-- Squats Card -->
87
+ <div class="exercise-card bg-white rounded-xl p-6 shadow-lg border-l-4 border-green-500">
88
+ <div class="text-green-500 text-4xl mb-4 flex justify-center">
89
+ <i class="fas fa-person-running"></i>
90
+ </div>
91
+ <h3 class="text-xl font-bold text-gray-800 mb-2 text-center">Squats</h3>
92
+ <p class="text-gray-600 text-sm text-center">Works legs & glutes</p>
93
+ <div class="mt-4 text-center">
94
+ <span class="inline-block bg-green-100 text-green-800 px-3 py-1 rounded-full text-xs font-medium">Day 1: 30 reps</span>
95
+ </div>
96
+ </div>
97
+
98
+ <!-- Pull-ups Card -->
99
+ <div class="exercise-card bg-white rounded-xl p-6 shadow-lg border-l-4 border-purple-500">
100
+ <div class="text-purple-500 text-4xl mb-4 flex justify-center">
101
+ <i class="fas fa-person-hiking"></i>
102
+ </div>
103
+ <h3 class="text-xl font-bold text-gray-800 mb-2 text-center">Pull-ups</h3>
104
+ <p class="text-gray-600 text-sm text-center">Strengthens back & arms</p>
105
+ <div class="mt-4 text-center">
106
+ <span class="inline-block bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-xs font-medium">Day 1: 5 reps</span>
107
+ </div>
108
+ </div>
109
+
110
+ <!-- Dips Card -->
111
+ <div class="exercise-card bg-white rounded-xl p-6 shadow-lg border-l-4 border-yellow-500">
112
+ <div class="text-yellow-500 text-4xl mb-4 flex justify-center">
113
+ <i class="fas fa-person-rays"></i>
114
+ </div>
115
+ <h3 class="text-xl font-bold text-gray-800 mb-2 text-center">Dips</h3>
116
+ <p class="text-gray-600 text-sm text-center">Focuses on triceps & chest</p>
117
+ <div class="mt-4 text-center">
118
+ <span class="inline-block bg-yellow-100 text-yellow-800 px-3 py-1 rounded-full text-xs font-medium">Day 1: 10 reps</span>
119
+ </div>
120
+ </div>
121
+
122
+ <!-- Planks Card -->
123
+ <div class="exercise-card bg-white rounded-xl p-6 shadow-lg border-l-4 border-red-500">
124
+ <div class="text-red-500 text-4xl mb-4 flex justify-center">
125
+ <i class="fas fa-clock"></i>
126
+ </div>
127
+ <h3 class="text-xl font-bold text-gray-800 mb-2 text-center">Planks</h3>
128
+ <p class="text-gray-600 text-sm text-center">Core strength & stability</p>
129
+ <div class="mt-4 text-center">
130
+ <span class="inline-block bg-red-100 text-red-800 px-3 py-1 rounded-full text-xs font-medium">Day 1: 30 sec</span>
131
+ </div>
132
+ </div>
133
+ </div>
134
+
135
+ <!-- Progress Tracker -->
136
+ <div class="bg-white rounded-xl shadow-lg p-6 mb-12">
137
+ <div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-6">
138
+ <div>
139
+ <h2 class="text-2xl font-bold text-gray-800 mb-2">Your Progress</h2>
140
+ <p class="text-gray-600">Track your 60-day journey</p>
141
+ </div>
142
+ <div class="mt-4 md:mt-0 w-full md:w-1/3">
143
+ <div class="flex justify-between text-sm text-gray-600 mb-1">
144
+ <span>Day 1 of 60</span>
145
+ <span>0%</span>
146
+ </div>
147
+ <div class="progress-bar bg-gray-200 rounded-full h-3">
148
+ <div class="bg-gradient-to-r from-blue-500 to-emerald-500 rounded-full h-full" style="width: 0%"></div>
149
+ </div>
150
+ </div>
151
+ </div>
152
+
153
+ <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 gap-3">
154
+ <!-- Days will be generated here by JavaScript -->
155
+ </div>
156
+ </div>
157
+
158
+ <!-- Challenge Routine -->
159
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden mb-12">
160
+ <div class="bg-gradient-to-r from-blue-600 to-emerald-600 p-6 text-white">
161
+ <h2 class="text-2xl font-bold flex items-center gap-3">
162
+ <i class="fas fa-calendar-alt"></i> 60-Day Challenge Routine
163
+ </h2>
164
+ </div>
165
+
166
+ <div class="p-6">
167
+ <div class="overflow-x-auto">
168
+ <table class="w-full text-left">
169
+ <thead class="bg-gray-100">
170
+ <tr>
171
+ <th class="py-3 px-4 font-semibold text-gray-700">Phase</th>
172
+ <th class="py-3 px-4 font-semibold text-gray-700">Days</th>
173
+ <th class="py-3 px-4 font-semibold text-gray-700">Push-ups</th>
174
+ <th class="py-3 px-4 font-semibold text-gray-700">Squats</th>
175
+ <th class="py-3 px-4 font-semibold text-gray-700">Pull-ups</th>
176
+ <th class="py-3 px-4 font-semibold text-gray-700">Dips</th>
177
+ <th class="py-3 px-4 font-semibold text-gray-700">Plank</th>
178
+ </tr>
179
+ </thead>
180
+ <tbody class="divide-y divide-gray-200">
181
+ <!-- Phase 1 -->
182
+ <tr>
183
+ <td class="py-3 px-4 font-medium text-blue-600">Foundation</td>
184
+ <td class="py-3 px-4">1-15</td>
185
+ <td class="py-3 px-4">20 → 40</td>
186
+ <td class="py-3 px-4">30 → 60</td>
187
+ <td class="py-3 px-4">5 → 10</td>
188
+ <td class="py-3 px-4">10 → 20</td>
189
+ <td class="py-3 px-4">30s → 60s</td>
190
+ </tr>
191
+ <!-- Phase 2 -->
192
+ <tr class="bg-gray-50">
193
+ <td class="py-3 px-4 font-medium text-emerald-600">Building</td>
194
+ <td class="py-3 px-4">16-30</td>
195
+ <td class="py-3 px-4">45 → 70</td>
196
+ <td class="py-3 px-4">65 → 100</td>
197
+ <td class="py-3 px-4">12 → 20</td>
198
+ <td class="py-3 px-4">25 → 35</td>
199
+ <td class="py-3 px-4">75s → 120s</td>
200
+ </tr>
201
+ <!-- Phase 3 -->
202
+ <tr>
203
+ <td class="py-3 px-4 font-medium text-purple-600">Advanced</td>
204
+ <td class="py-3 px-4">31-45</td>
205
+ <td class="py-3 px-4">75 → 100</td>
206
+ <td class="py-3 px-4">105 → 150</td>
207
+ <td class="py-3 px-4">22 → 30</td>
208
+ <td class="py-3 px-4">40 → 50</td>
209
+ <td class="py-3 px-4">135s → 180s</td>
210
+ </tr>
211
+ <!-- Phase 4 -->
212
+ <tr class="bg-gray-50">
213
+ <td class="py-3 px-4 font-medium text-yellow-600">Mastery</td>
214
+ <td class="py-3 px-4">46-60</td>
215
+ <td class="py-3 px-4">105 → 150</td>
216
+ <td class="py-3 px-4">155 → 200</td>
217
+ <td class="py-3 px-4">32 → 40</td>
218
+ <td class="py-3 px-4">55 → 70</td>
219
+ <td class="py-3 px-4">195s → 240s</td>
220
+ </tr>
221
+ </tbody>
222
+ </table>
223
+ </div>
224
+ </div>
225
+ </div>
226
+
227
+ <!-- Daily Workout -->
228
+ <div class="bg-white rounded-xl shadow-lg p-6 mb-12">
229
+ <div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-6">
230
+ <div>
231
+ <h2 class="text-2xl font-bold text-gray-800 mb-2 flex items-center gap-3">
232
+ <i class="fas fa-dumbbell text-blue-500"></i> Today's Workout
233
+ </h2>
234
+ <p class="text-gray-600">Day 1 of 60 - Foundation Phase</p>
235
+ </div>
236
+ <button id="completeDayBtn" class="mt-4 md:mt-0 bg-gradient-to-r from-blue-500 to-emerald-500 hover:from-blue-600 hover:to-emerald-600 text-white font-medium py-2 px-6 rounded-full shadow-md transition-all transform hover:scale-105">
237
+ Complete Day <i class="fas fa-check ml-2"></i>
238
+ </button>
239
+ </div>
240
+
241
+ <div class="space-y-4">
242
+ <!-- Push-ups -->
243
+ <div class="flex items-center justify-between bg-blue-50 p-4 rounded-lg">
244
+ <div class="flex items-center gap-4">
245
+ <div class="bg-blue-100 text-blue-800 p-3 rounded-full">
246
+ <i class="fas fa-person-digging"></i>
247
+ </div>
248
+ <div>
249
+ <h4 class="font-medium text-gray-800">Push-ups</h4>
250
+ <p class="text-sm text-gray-600">3 sets of 6-8 reps</p>
251
+ </div>
252
+ </div>
253
+ <div class="bg-white px-3 py-1 rounded-full text-blue-800 font-medium shadow-sm">20 total</div>
254
+ </div>
255
+
256
+ <!-- Squats -->
257
+ <div class="flex items-center justify-between bg-green-50 p-4 rounded-lg">
258
+ <div class="flex items-center gap-4">
259
+ <div class="bg-green-100 text-green-800 p-3 rounded-full">
260
+ <i class="fas fa-person-running"></i>
261
+ </div>
262
+ <div>
263
+ <h4 class="font-medium text-gray-800">Squats</h4>
264
+ <p class="text-sm text-gray-600">3 sets of 10 reps</p>
265
+ </div>
266
+ </div>
267
+ <div class="bg-white px-3 py-1 rounded-full text-green-800 font-medium shadow-sm">30 total</div>
268
+ </div>
269
+
270
+ <!-- Pull-ups -->
271
+ <div class="flex items-center justify-between bg-purple-50 p-4 rounded-lg">
272
+ <div class="flex items-center gap-4">
273
+ <div class="bg-purple-100 text-purple-800 p-3 rounded-full">
274
+ <i class="fas fa-person-hiking"></i>
275
+ </div>
276
+ <div>
277
+ <h4 class="font-medium text-gray-800">Pull-ups</h4>
278
+ <p class="text-sm text-gray-600">3 sets of 1-2 reps</p>
279
+ </div>
280
+ </div>
281
+ <div class="bg-white px-3 py-1 rounded-full text-purple-800 font-medium shadow-sm">5 total</div>
282
+ </div>
283
+
284
+ <!-- Dips -->
285
+ <div class="flex items-center justify-between bg-yellow-50 p-4 rounded-lg">
286
+ <div class="flex items-center gap-4">
287
+ <div class="bg-yellow-100 text-yellow-800 p-3 rounded-full">
288
+ <i class="fas fa-person-rays"></i>
289
+ </div>
290
+ <div>
291
+ <h4 class="font-medium text-gray-800">Dips</h4>
292
+ <p class="text-sm text-gray-600">2 sets of 5 reps</p>
293
+ </div>
294
+ </div>
295
+ <div class="bg-white px-3 py-1 rounded-full text-yellow-800 font-medium shadow-sm">10 total</div>
296
+ </div>
297
+
298
+ <!-- Plank -->
299
+ <div class="flex items-center justify-between bg-red-50 p-4 rounded-lg">
300
+ <div class="flex items-center gap-4">
301
+ <div class="bg-red-100 text-red-800 p-3 rounded-full">
302
+ <i class="fas fa-clock"></i>
303
+ </div>
304
+ <div>
305
+ <h4 class="font-medium text-gray-800">Plank</h4>
306
+ <p class="text-sm text-gray-600">Hold for time</p>
307
+ </div>
308
+ </div>
309
+ <div class="bg-white px-3 py-1 rounded-full text-red-800 font-medium shadow-sm">30 sec</div>
310
+ </div>
311
+ </div>
312
+ </div>
313
+
314
+ <!-- Tips & Motivation -->
315
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-12">
316
+ <div class="bg-white rounded-xl shadow-lg p-6">
317
+ <h3 class="text-xl font-bold text-gray-800 mb-4 flex items-center gap-3">
318
+ <i class="fas fa-lightbulb text-yellow-500"></i> Pro Tips
319
+ </h3>
320
+ <ul class="space-y-3">
321
+ <li class="flex items-start gap-3">
322
+ <div class="bg-blue-100 text-blue-800 p-1 rounded-full mt-1">
323
+ <i class="fas fa-check text-xs"></i>
324
+ </div>
325
+ <span class="text-gray-700">Rest 60-90 seconds between sets</span>
326
+ </li>
327
+ <li class="flex items-start gap-3">
328
+ <div class="bg-blue-100 text-blue-800 p-1 rounded-full mt-1">
329
+ <i class="fas fa-check text-xs"></i>
330
+ </div>
331
+ <span class="text-gray-700">Perform exercises with proper form</span>
332
+ </li>
333
+ <li class="flex items-start gap-3">
334
+ <div class="bg-blue-100 text-blue-800 p-1 rounded-full mt-1">
335
+ <i class="fas fa-check text-xs"></i>
336
+ </div>
337
+ <span class="text-gray-700">Do the workout at the same time each day</span>
338
+ </li>
339
+ <li class="flex items-start gap-3">
340
+ <div class="bg-blue-100 text-blue-800 p-1 rounded-full mt-1">
341
+ <i class="fas fa-check text-xs"></i>
342
+ </div>
343
+ <span class="text-gray-700">Take 1 rest day per week for recovery</span>
344
+ </li>
345
+ </ul>
346
+ </div>
347
+
348
+ <div class="bg-gradient-to-br from-blue-600 to-emerald-600 rounded-xl shadow-lg p-6 text-white">
349
+ <h3 class="text-xl font-bold mb-4 flex items-center gap-3">
350
+ <i class="fas fa-bolt"></i> Daily Motivation
351
+ </h3>
352
+ <p class="mb-4 opacity-90">"The secret of getting ahead is getting started."</p>
353
+ <div class="flex items-center gap-3">
354
+ <div class="bg-white bg-opacity-20 p-2 rounded-full">
355
+ <i class="fas fa-quote-left"></i>
356
+ </div>
357
+ <span class="text-sm opacity-80">Mark Twain</span>
358
+ </div>
359
+ <div class="mt-6 bg-white bg-opacity-10 p-3 rounded-lg">
360
+ <div class="flex items-center gap-3">
361
+ <div class="bg-white bg-opacity-20 p-2 rounded-full">
362
+ <i class="fas fa-trophy"></i>
363
+ </div>
364
+ <span class="font-medium">Today's Challenge:</span>
365
+ </div>
366
+ <p class="mt-2 text-sm opacity-90">Add 2 extra push-ups to your last set!</p>
367
+ </div>
368
+ </div>
369
+ </div>
370
+
371
+ <!-- Final CTA -->
372
+ <div class="text-center bg-white rounded-xl shadow-lg p-8 mb-12 relative overflow-hidden">
373
+ <div class="absolute -top-20 -right-20 w-40 h-40 bg-blue-500 rounded-full opacity-10"></div>
374
+ <div class="absolute -bottom-20 -left-20 w-40 h-40 bg-emerald-500 rounded-full opacity-10"></div>
375
+ <div class="relative z-10">
376
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">Ready to Transform Your Body?</h2>
377
+ <p class="text-xl text-gray-600 mb-6">Commit to 60 days of consistent bodyweight training</p>
378
+ <button class="bg-gradient-to-r from-blue-500 to-emerald-500 hover:from-blue-600 hover:to-emerald-600 text-white font-bold py-3 px-8 rounded-full shadow-lg transition-all transform hover:scale-105 animate-pulse">
379
+ Start Challenge Now <i class="fas fa-arrow-right ml-2"></i>
380
+ </button>
381
+ <div class="mt-6 flex justify-center">
382
+ <div class="flex items-center gap-2 text-gray-500">
383
+ <i class="fas fa-shield-alt"></i>
384
+ <span>No credit card required</span>
385
+ </div>
386
+ </div>
387
+ </div>
388
+ </div>
389
+ </div>
390
+
391
+ <script>
392
+ document.addEventListener('DOMContentLoaded', function() {
393
+ // Generate day cards
394
+ const daysContainer = document.querySelector('.grid.gap-3');
395
+ const progressBar = document.querySelector('.progress-bar div');
396
+ const progressText = document.querySelector('.progress-bar + div span:last-child');
397
+
398
+ let currentDay = 1;
399
+ let completedDays = 0;
400
+
401
+ // Generate 60 day cards
402
+ for (let i = 1; i <= 60; i++) {
403
+ const dayCard = document.createElement('div');
404
+ dayCard.className = `day-card bg-white rounded-lg p-3 text-center shadow-sm border border-gray-200 cursor-pointer transition-all ${i === 1 ? 'current' : ''}`;
405
+ dayCard.innerHTML = `
406
+ <div class="text-sm font-medium text-gray-500">Day</div>
407
+ <div class="text-xl font-bold text-gray-800">${i}</div>
408
+ <div class="h-1 w-full bg-gray-100 rounded-full mt-2 overflow-hidden">
409
+ <div class="h-full bg-green-500 rounded-full" style="width: ${i === 1 ? '0%' : '0%'}"></div>
410
+ </div>
411
+ `;
412
+
413
+ dayCard.addEventListener('click', function() {
414
+ // Update current day
415
+ document.querySelector('.day-card.current')?.classList.remove('current');
416
+ this.classList.add('current');
417
+ currentDay = i;
418
+
419
+ // Update daily workout display
420
+ updateDailyWorkout(currentDay);
421
+ });
422
+
423
+ daysContainer.appendChild(dayCard);
424
+ }
425
+
426
+ // Complete day button
427
+ const completeDayBtn = document.getElementById('completeDayBtn');
428
+ completeDayBtn.addEventListener('click', function() {
429
+ const currentDayCard = document.querySelector(`.day-card:nth-child(${currentDay})`);
430
+
431
+ // Mark as completed
432
+ currentDayCard.classList.add('completed');
433
+ currentDayCard.querySelector('.h-1 div').style.width = '100%';
434
+
435
+ // Update progress
436
+ completedDays++;
437
+ const progressPercent = Math.round((completedDays / 60) * 100);
438
+ progressBar.style.width = `${progressPercent}%`;
439
+ progressText.textContent = `${progressPercent}%`;
440
+
441
+ // Move to next day if not last day
442
+ if (currentDay < 60) {
443
+ currentDay++;
444
+ document.querySelector('.day-card.current')?.classList.remove('current');
445
+ document.querySelector(`.day-card:nth-child(${currentDay})`).classList.add('current');
446
+ updateDailyWorkout(currentDay);
447
+ }
448
+
449
+ // Show celebration
450
+ showCelebration();
451
+ });
452
+
453
+ // Update daily workout based on day
454
+ function updateDailyWorkout(day) {
455
+ const dailyWorkoutTitle = document.querySelector('.bg-white.rounded-xl.shadow-lg.p-6.mb-12 h2 + p');
456
+ dailyWorkoutTitle.textContent = `Day ${day} of 60 - ${getPhase(day)} Phase`;
457
+
458
+ // Update exercise reps based on day
459
+ const pushupsTotal = calculateExerciseTotal(day, 20, 150);
460
+ const squatsTotal = calculateExerciseTotal(day, 30, 200);
461
+ const pullupsTotal = calculateExerciseTotal(day, 5, 40);
462
+ const dipsTotal = calculateExerciseTotal(day, 10, 70);
463
+ const plankTotal = calculateExerciseTotal(day, 30, 240);
464
+
465
+ document.querySelector('.bg-blue-50 + div').textContent = `${pushupsTotal} total`;
466
+ document.querySelector('.bg-green-50 + div').textContent = `${squatsTotal} total`;
467
+ document.querySelector('.bg-purple-50 + div').textContent = `${pullupsTotal} total`;
468
+ document.querySelector('.bg-yellow-50 + div').textContent = `${dipsTotal} total`;
469
+ document.querySelector('.bg-red-50 + div').textContent = `${plankTotal} sec`;
470
+
471
+ // Update sets information based on phase
472
+ const setsInfo = getSetsInfo(day);
473
+ document.querySelector('.bg-blue-50 p.text-sm').textContent = setsInfo.pushups;
474
+ document.querySelector('.bg-green-50 p.text-sm').textContent = setsInfo.squats;
475
+ document.querySelector('.bg-purple-50 p.text-sm').textContent = setsInfo.pullups;
476
+ document.querySelector('.bg-yellow-50 p.text-sm').textContent = setsInfo.dips;
477
+ }
478
+
479
+ function calculateExerciseTotal(day, start, end) {
480
+ // Linear progression
481
+ return Math.round(start + ((end - start) / 59) * (day - 1));
482
+ }
483
+
484
+ function getPhase(day) {
485
+ if (day <= 15) return 'Foundation';
486
+ if (day <= 30) return 'Building';
487
+ if (day <= 45) return 'Advanced';
488
+ return 'Mastery';
489
+ }
490
+
491
+ function getSetsInfo(day) {
492
+ const phase = getPhase(day);
493
+
494
+ switch(phase) {
495
+ case 'Foundation':
496
+ return {
497
+ pushups: '3 sets of 6-8 reps',
498
+ squats: '3 sets of 10 reps',
499
+ pullups: '3 sets of 1-2 reps',
500
+ dips: '2 sets of 5 reps'
501
+ };
502
+ case 'Building':
503
+ return {
504
+ pushups: '4 sets of 8-10 reps',
505
+ squats: '4 sets of 12-15 reps',
506
+ pullups: '3 sets of 3-5 reps',
507
+ dips: '3 sets of 8 reps'
508
+ };
509
+ case 'Advanced':
510
+ return {
511
+ pushups: '5 sets of 10-12 reps',
512
+ squats: '5 sets of 15-20 reps',
513
+ pullups: '4 sets of 6-8 reps',
514
+ dips: '4 sets of 10 reps'
515
+ };
516
+ case 'Mastery':
517
+ return {
518
+ pushups: '5 sets of 12-15 reps',
519
+ squats: '5 sets of 20-25 reps',
520
+ pullups: '5 sets of 8-10 reps',
521
+ dips: '5 sets of 12 reps'
522
+ };
523
+ }
524
+ }
525
+
526
+ function showCelebration() {
527
+ // Create confetti elements
528
+ const colors = ['#3b82f6', '#10b981', '#f59e0b', '#ef4444', '#8b5cf6'];
529
+
530
+ for (let i = 0; i < 50; i++) {
531
+ const confetti = document.createElement('div');
532
+ confetti.className = 'absolute w-2 h-2 rounded-full';
533
+ confetti.style.backgroundColor = colors[Math.floor(Math.random() * colors.length)];
534
+ confetti.style.left = `${Math.random() * 100}%`;
535
+ confetti.style.top = '-10px';
536
+ confetti.style.transform = `rotate(${Math.random() * 360}deg)`;
537
+
538
+ // Animation
539
+ const animation = confetti.animate([
540
+ { top: '-10px', opacity: 1, transform: `rotate(0deg) scale(${Math.random() * 0.5 + 0.5})` },
541
+ { top: `${Math.random() * 100 + 100}%`, opacity: 0, transform: `rotate(${Math.random() * 360}deg) scale(0)` }
542
+ ], {
543
+ duration: Math.random() * 2000 + 2000,
544
+ easing: 'cubic-bezier(0.1, 0.8, 0.3, 1)'
545
+ });
546
+
547
+ document.body.appendChild(confetti);
548
+ animation.onfinish = () => confetti.remove();
549
+ }
550
+
551
+ // Show success message
552
+ const successMsg = document.createElement('div');
553
+ successMsg.className = 'fixed inset-0 flex items-center justify-center z-50 pointer-events-none';
554
+ successMsg.innerHTML = `
555
+ <div class="bg-white rounded-xl shadow-2xl p-6 max-w-sm text-center transform transition-all opacity-0 scale-90 animate-[popIn_0.5s_forwards]">
556
+ <div class="text-green-500 text-5xl mb-4">
557
+ <i class="fas fa-check-circle"></i>
558
+ </div>
559
+ <h3 class="text-2xl font-bold text-gray-800 mb-2">Great Job!</h3>
560
+ <p class="text-gray-600 mb-4">You've completed Day ${currentDay - 1}</p>
561
+ <p class="text-sm text-gray-500">${60 - completedDays} days remaining</p>
562
+ </div>
563
+ `;
564
+
565
+ document.body.appendChild(successMsg);
566
+ setTimeout(() => {
567
+ successMsg.remove();
568
+ }, 3000);
569
+ }
570
+
571
+ // Initialize
572
+ updateDailyWorkout(currentDay);
573
+ });
574
+ </script>
575
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=WeakneeB/thee-space" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
576
+ </html>
prompts.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ Create a 60 day challenge routine with the 5 most common bodyweight exercises
2
+ What is the extent of your capabilities?
3
+ create a verified or all access Hidden.com account