44xClub commited on
Commit
c1308ab
·
verified ·
1 Parent(s): 42627b6

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +202 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Educational Page Examples
3
- emoji: 👀
4
- colorFrom: purple
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: educational-page-examples
3
+ emoji: 🐳
4
+ colorFrom: red
5
  colorTo: gray
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,202 @@
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>CLUB44 - Recovery Blueprint</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap" rel="stylesheet">
9
+ <style>
10
+ body {
11
+ font-family: 'Montserrat', sans-serif;
12
+ background-color: #0A0A0A;
13
+ color: #FFFFFF;
14
+ -webkit-touch-callout: none;
15
+ -webkit-user-select: none;
16
+ -khtml-user-select: none;
17
+ -moz-user-select: none;
18
+ -ms-user-select: none;
19
+ user-select: none;
20
+ }
21
+ .content-card {
22
+ background: linear-gradient(145deg, #1A1A1A, #121212);
23
+ box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
24
+ }
25
+ .progress-bar {
26
+ background: linear-gradient(90deg, #FF5F6D, #FFC371);
27
+ }
28
+ .locked-content {
29
+ background: repeating-linear-gradient(
30
+ 45deg,
31
+ #1A1A1A,
32
+ #1A1A1A 10px,
33
+ #222222 10px,
34
+ #222222 20px
35
+ );
36
+ }
37
+ .nav-icon {
38
+ filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
39
+ }
40
+ .nav-icon.active {
41
+ filter: invert(76%) sepia(29%) saturate(659%) hue-rotate(314deg) brightness(101%) contrast(101%);
42
+ }
43
+ </style>
44
+ </head>
45
+ <body class="min-h-screen flex flex-col">
46
+ <!-- Header -->
47
+ <header class="pt-12 pb-4 px-6">
48
+ <div class="flex justify-between items-center">
49
+ <button class="p-2 rounded-full bg-gray-900">
50
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
51
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7" />
52
+ </svg>
53
+ </button>
54
+ <div class="text-center">
55
+ <h1 class="text-xl font-bold">Recovery Blueprint</h1>
56
+ <p class="text-xs text-gray-400 mt-1">Chapter 3 of 12</p>
57
+ </div>
58
+ <button class="p-2 rounded-full bg-gray-900">
59
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
60
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 12h.01M12 12h.01M19 12h.01M6 12a1 1 0 11-2 0 1 1 0 012 0zm7 0a1 1 0 11-2 0 1 1 0 012 0zm7 0a1 1 0 11-2 0 1 1 0 012 0z" />
61
+ </svg>
62
+ </button>
63
+ </div>
64
+
65
+ <!-- Progress bar -->
66
+ <div class="mt-4">
67
+ <div class="w-full bg-gray-800 rounded-full h-1.5">
68
+ <div class="progress-bar h-1.5 rounded-full" style="width: 25%"></div>
69
+ </div>
70
+ <div class="flex justify-between text-xs text-gray-400 mt-1">
71
+ <span>25% completed</span>
72
+ <span>12 min read</span>
73
+ </div>
74
+ </div>
75
+ </header>
76
+
77
+ <!-- Main Content -->
78
+ <main class="flex-1 overflow-y-auto px-6 py-4">
79
+ <div class="content-card rounded-2xl p-6 mb-6">
80
+ <h2 class="text-lg font-bold mb-4">The Science of Muscle Recovery</h2>
81
+ <p class="text-sm text-gray-300 mb-4 leading-relaxed">
82
+ Recovery is where the magic happens. When you train, you're breaking down muscle tissue. It's during recovery that your body repairs these microtears, making your muscles stronger than before.
83
+ </p>
84
+ <p class="text-sm text-gray-300 mb-4 leading-relaxed">
85
+ The process involves three key phases:
86
+ </p>
87
+ <ol class="list-decimal list-inside text-sm text-gray-300 mb-4 space-y-2">
88
+ <li class="leading-relaxed"><span class="font-bold">Inflammation Phase</span> (0-6 hours post-workout): Your body sends nutrients to damaged areas</li>
89
+ <li class="leading-relaxed"><span class="font-bold">Repair Phase</span> (6-48 hours): Muscle fibers rebuild with protein synthesis</li>
90
+ <li class="leading-relaxed"><span class="font-bold">Remodeling Phase</span> (48-72 hours): Muscles adapt to handle future stress</li>
91
+ </ol>
92
+ <div class="my-6 p-4 bg-gray-900 rounded-lg">
93
+ <h3 class="text-sm font-bold mb-2 text-yellow-400">CLUB44 Insight</h3>
94
+ <p class="text-xs text-gray-300 leading-relaxed">
95
+ Elite athletes spend as much time optimizing recovery as they do training. Your 1% gains compound when you master both.
96
+ </p>
97
+ </div>
98
+ <p class="text-sm text-gray-300 mb-4 leading-relaxed">
99
+ Sleep is the ultimate recovery tool. During deep sleep, your body releases growth hormone which stimulates muscle growth and repair. Aim for 7-9 hours of quality sleep, especially on training days.
100
+ </p>
101
+ </div>
102
+
103
+ <!-- Locked Content Section -->
104
+ <div class="content-card rounded-2xl p-6 mb-6 locked-content relative">
105
+ <div class="absolute inset-0 bg-black bg-opacity-70 flex flex-col items-center justify-center rounded-2xl">
106
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-10 w-10 text-yellow-400 mb-2" fill="none" viewBox="0 0 24 24" stroke="currentColor">
107
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z" />
108
+ </svg>
109
+ <h3 class="font-bold text-center">Premium Content Locked</h3>
110
+ <p class="text-xs text-gray-300 text-center mt-1 px-6">Complete previous chapters to unlock this content</p>
111
+ </div>
112
+ <h2 class="text-lg font-bold mb-4">Advanced Recovery Protocols</h2>
113
+ <p class="text-sm text-gray-300 mb-4 leading-relaxed">
114
+ For those looking to optimize every aspect of recovery, these advanced techniques can help you bounce back faster and perform at your peak.
115
+ </p>
116
+ <ul class="list-disc list-inside text-sm text-gray-300 mb-4 space-y-2">
117
+ <li class="leading-relaxed">Cold water immersion (15°C for 11-15 minutes)</li>
118
+ <li class="leading-relaxed">Pneumatic compression therapy</li>
119
+ <li class="leading-relaxed">Targeted photobiomodulation</li>
120
+ <li class="leading-relaxed">Nutrient timing strategies</li>
121
+ </ul>
122
+ </div>
123
+
124
+ <!-- Action Buttons -->
125
+ <div class="flex space-x-4 mb-16">
126
+ <button class="flex-1 bg-gray-900 hover:bg-gray-800 text-white font-bold py-3 px-4 rounded-xl flex items-center justify-center">
127
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 mr-2" fill="none" viewBox="0 0 24 24" stroke="currentColor">
128
+ <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" />
129
+ </svg>
130
+ Mark as Read
131
+ </button>
132
+ <button class="flex-1 bg-yellow-500 hover:bg-yellow-600 text-black font-bold py-3 px-4 rounded-xl flex items-center justify-center">
133
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 mr-2" fill="none" viewBox="0 0 24 24" stroke="currentColor">
134
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z" />
135
+ </svg>
136
+ Reflect
137
+ </button>
138
+ </div>
139
+ </main>
140
+
141
+ <!-- Bottom Navigation -->
142
+ <nav class="bg-gray-900 border-t border-gray-800 px-6 py-3 flex justify-around">
143
+ <a href="#" class="flex flex-col items-center">
144
+ <img src="https://cdn-icons-png.flaticon.com/512/3652/3652191.png" class="h-6 w-6 nav-icon" alt="Dashboard">
145
+ <span class="text-xs mt-1">Dashboard</span>
146
+ </a>
147
+ <a href="#" class="flex flex-col items-center">
148
+ <img src="https://cdn-icons-png.flaticon.com/512/3652/3652151.png" class="h-6 w-6 nav-icon" alt="Logs">
149
+ <span class="text-xs mt-1">Logs</span>
150
+ </a>
151
+ <a href="#" class="flex flex-col items-center">
152
+ <img src="https://cdn-icons-png.flaticon.com/512/3652/3652124.png" class="h-6 w-6 nav-icon active" alt="Vault">
153
+ <span class="text-xs mt-1 text-yellow-400">Vault</span>
154
+ </a>
155
+ <a href="#" class="flex flex-col items-center">
156
+ <img src="https://cdn-icons-png.flaticon.com/512/3652/3652169.png" class="h-6 w-6 nav-icon" alt="Journal">
157
+ <span class="text-xs mt-1">Journal</span>
158
+ </a>
159
+ <a href="#" class="flex flex-col items-center">
160
+ <img src="https://cdn-icons-png.flaticon.com/512/3652/3652139.png" class="h-6 w-6 nav-icon" alt="Profile">
161
+ <span class="text-xs mt-1">Profile</span>
162
+ </a>
163
+ </nav>
164
+
165
+ <script>
166
+ // Prevent text selection
167
+ document.addEventListener('selectstart', function(e) {
168
+ e.preventDefault();
169
+ return false;
170
+ });
171
+
172
+ // Simulate button interactions
173
+ const buttons = document.querySelectorAll('button');
174
+ buttons.forEach(button => {
175
+ button.addEventListener('mousedown', () => {
176
+ button.classList.add('scale-95');
177
+ button.classList.add('opacity-90');
178
+ });
179
+ button.addEventListener('mouseup', () => {
180
+ button.classList.remove('scale-95');
181
+ button.classList.remove('opacity-90');
182
+ });
183
+ button.addEventListener('mouseleave', () => {
184
+ button.classList.remove('scale-95');
185
+ button.classList.remove('opacity-90');
186
+ });
187
+ });
188
+
189
+ // Mark as read functionality
190
+ const markAsRead = document.querySelectorAll('button')[2];
191
+ markAsRead.addEventListener('click', () => {
192
+ alert('Chapter marked as read. Progress updated!');
193
+ });
194
+
195
+ // Reflect button functionality
196
+ const reflectBtn = document.querySelectorAll('button')[3];
197
+ reflectBtn.addEventListener('click', () => {
198
+ alert('Opening journal to reflect on this chapter...');
199
+ });
200
+ </script>
201
+ <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=44xClub/educational-page-examples" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
202
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Design a sleek, modern mobile app interface for a fitness and lifestyle brand called CLUB44, targeting 18–30-year-old men focused on self-discipline, growth, fitness, and routine. The app should use a dark color theme with Montserrat Bold font, and have a clean, minimal Apple-like design aesthetic. ⚙️ App Platform: iOS and Android 🎨 Theme: Dark mode, minimalist, sharp UI 📱 Screen Size: Standard mobile screens (iPhone 14 / Pixel 7) 🧭 Navigation: Bottom nav bar with icons for: Dashboard, Logs, Vault, Journal, Profile Design the following key screens with interactive elements and modern UX: Educational Resources Pages Title at top (e.g., Recovery Blueprint) Scrollable page with text content Styled like an e-book chapter Lock content from downloads or copy CTA buttons to “Mark as Read” or “Reflect in Journal”