44xClub commited on
Commit
14c2eb1
·
verified ·
1 Parent(s): d20f8b7

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +326 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Dashboard Example
3
- emoji: 🌍
4
- colorFrom: purple
5
  colorTo: pink
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: dashboard-example
3
+ emoji: 🐳
4
+ colorFrom: blue
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,326 @@
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 - Discipline. Growth. Fitness.</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap">
9
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
10
+ <style>
11
+ body {
12
+ font-family: 'Montserrat', sans-serif;
13
+ background-color: #0a0a0a;
14
+ color: #f5f5f5;
15
+ }
16
+ .nav-active {
17
+ color: #3b82f6;
18
+ }
19
+ .streak-glow {
20
+ box-shadow: 0 0 15px rgba(59, 130, 246, 0.7);
21
+ }
22
+ .progress-bar {
23
+ height: 6px;
24
+ border-radius: 3px;
25
+ }
26
+ .card-hover:hover {
27
+ transform: translateY(-2px);
28
+ transition: all 0.2s ease;
29
+ }
30
+ .habit-pill {
31
+ border-radius: 20px;
32
+ }
33
+ </style>
34
+ </head>
35
+ <body class="min-h-screen pb-20">
36
+ <!-- Header -->
37
+ <header class="pt-12 px-6">
38
+ <div class="flex justify-between items-center">
39
+ <div>
40
+ <h1 class="text-2xl font-bold">CLUB44</h1>
41
+ <p class="text-xs text-gray-400 mt-1">Discipline. Growth. Fitness.</p>
42
+ </div>
43
+ <div class="flex items-center space-x-4">
44
+ <button class="text-gray-400">
45
+ <i class="fas fa-bell text-xl"></i>
46
+ </button>
47
+ <div class="w-8 h-8 rounded-full bg-gray-700 flex items-center justify-center">
48
+ <i class="fas fa-user text-sm"></i>
49
+ </div>
50
+ </div>
51
+ </div>
52
+ </header>
53
+
54
+ <!-- Main Content -->
55
+ <main class="px-6 mt-8">
56
+ <!-- Greeting -->
57
+ <div class="mb-8">
58
+ <h2 class="text-xl font-bold">Welcome back,</h2>
59
+ <h1 class="text-3xl font-bold text-blue-500">Alex</h1>
60
+ </div>
61
+
62
+ <!-- Streak Widget -->
63
+ <div class="bg-gray-900 rounded-2xl p-6 mb-6 relative overflow-hidden card-hover">
64
+ <div class="absolute top-0 right-0 w-24 h-24 bg-blue-900 opacity-20 rounded-bl-full"></div>
65
+ <div class="relative z-10">
66
+ <div class="flex justify-between items-start">
67
+ <div>
68
+ <h3 class="text-gray-400 text-sm">Current Streak</h3>
69
+ <div class="flex items-center mt-2">
70
+ <div class="w-12 h-12 rounded-full bg-blue-900 flex items-center justify-center streak-glow">
71
+ <span class="text-xl font-bold">18</span>
72
+ </div>
73
+ <span class="ml-3 text-lg font-bold">days</span>
74
+ </div>
75
+ </div>
76
+ <div class="text-right">
77
+ <h3 class="text-gray-400 text-sm">Best Streak</h3>
78
+ <p class="text-lg font-bold mt-2">24 days</p>
79
+ </div>
80
+ </div>
81
+ <div class="mt-6">
82
+ <div class="flex justify-between text-xs text-gray-400 mb-1">
83
+ <span>Morning Routine</span>
84
+ <span>5/7 days</span>
85
+ </div>
86
+ <div class="w-full bg-gray-800 rounded-full h-2">
87
+ <div class="bg-blue-500 h-2 rounded-full" style="width: 71%"></div>
88
+ </div>
89
+ </div>
90
+ </div>
91
+ </div>
92
+
93
+ <!-- Goals Progress -->
94
+ <div class="bg-gray-900 rounded-2xl p-6 mb-6 card-hover">
95
+ <div class="flex justify-between items-center mb-4">
96
+ <h3 class="text-lg font-bold">Monthly Goals</h3>
97
+ <span class="text-xs text-gray-400">June 2023</span>
98
+ </div>
99
+
100
+ <div class="space-y-4">
101
+ <!-- Goal 1 -->
102
+ <div>
103
+ <div class="flex justify-between text-sm mb-1">
104
+ <span>Workouts</span>
105
+ <span>12/20</span>
106
+ </div>
107
+ <div class="w-full bg-gray-800 rounded-full h-2">
108
+ <div class="bg-blue-500 h-2 rounded-full" style="width: 60%"></div>
109
+ </div>
110
+ </div>
111
+
112
+ <!-- Goal 2 -->
113
+ <div>
114
+ <div class="flex justify-between text-sm mb-1">
115
+ <span>Read 30 min/day</span>
116
+ <span>15/30</span>
117
+ </div>
118
+ <div class="w-full bg-gray-800 rounded-full h-2">
119
+ <div class="bg-purple-500 h-2 rounded-full" style="width: 50%"></div>
120
+ </div>
121
+ </div>
122
+
123
+ <!-- Goal 3 -->
124
+ <div>
125
+ <div class="flex justify-between text-sm mb-1">
126
+ <span>Meditation</span>
127
+ <span>8/15</span>
128
+ </div>
129
+ <div class="w-full bg-gray-800 rounded-full h-2">
130
+ <div class="bg-green-500 h-2 rounded-full" style="width: 53%"></div>
131
+ </div>
132
+ </div>
133
+ </div>
134
+
135
+ <button class="w-full mt-6 py-3 bg-gray-800 rounded-xl text-blue-500 font-bold flex items-center justify-center">
136
+ <i class="fas fa-plus mr-2"></i> Add Goal
137
+ </button>
138
+ </div>
139
+
140
+ <!-- Recent Logs -->
141
+ <div class="bg-gray-900 rounded-2xl p-6 mb-6 card-hover">
142
+ <div class="flex justify-between items-center mb-4">
143
+ <h3 class="text-lg font-bold">Recent Logs</h3>
144
+ <button class="text-blue-500 text-sm">View All</button>
145
+ </div>
146
+
147
+ <div class="space-y-4">
148
+ <!-- Log 1 -->
149
+ <div class="flex items-center">
150
+ <div class="w-10 h-10 rounded-full bg-blue-900 flex items-center justify-center">
151
+ <i class="fas fa-dumbbell"></i>
152
+ </div>
153
+ <div class="ml-3 flex-1">
154
+ <h4 class="font-bold">Morning Workout</h4>
155
+ <p class="text-xs text-gray-400">Today, 6:30 AM</p>
156
+ </div>
157
+ <div class="text-right">
158
+ <p class="font-bold">45 min</p>
159
+ <p class="text-xs text-green-500">Completed</p>
160
+ </div>
161
+ </div>
162
+
163
+ <!-- Log 2 -->
164
+ <div class="flex items-center">
165
+ <div class="w-10 h-10 rounded-full bg-purple-900 flex items-center justify-center">
166
+ <i class="fas fa-book"></i>
167
+ </div>
168
+ <div class="ml-3 flex-1">
169
+ <h4 class="font-bold">Reading</h4>
170
+ <p class="text-xs text-gray-400">Yesterday, 9:15 PM</p>
171
+ </div>
172
+ <div class="text-right">
173
+ <p class="font-bold">32 min</p>
174
+ <p class="text-xs text-green-500">Completed</p>
175
+ </div>
176
+ </div>
177
+
178
+ <!-- Log 3 -->
179
+ <div class="flex items-center">
180
+ <div class="w-10 h-10 rounded-full bg-gray-700 flex items-center justify-center">
181
+ <i class="fas fa-running"></i>
182
+ </div>
183
+ <div class="ml-3 flex-1">
184
+ <h4 class="font-bold">Evening Run</h4>
185
+ <p class="text-xs text-gray-400">Yesterday, 7:45 PM</p>
186
+ </div>
187
+ <div class="text-right">
188
+ <p class="font-bold text-gray-500">Skipped</p>
189
+ </div>
190
+ </div>
191
+ </div>
192
+ </div>
193
+
194
+ <!-- Quick Actions -->
195
+ <div class="grid grid-cols-2 gap-4 mb-6">
196
+ <button class="bg-gray-900 rounded-2xl p-4 flex flex-col items-center justify-center h-32 card-hover">
197
+ <div class="w-12 h-12 rounded-full bg-blue-900 flex items-center justify-center mb-2">
198
+ <i class="fas fa-plus text-xl"></i>
199
+ </div>
200
+ <span class="font-bold">Add Log</span>
201
+ </button>
202
+
203
+ <button class="bg-gray-900 rounded-2xl p-4 flex flex-col items-center justify-center h-32 card-hover">
204
+ <div class="w-12 h-12 rounded-full bg-purple-900 flex items-center justify-center mb-2">
205
+ <i class="fas fa-book-open text-xl"></i>
206
+ </div>
207
+ <span class="font-bold">View Journal</span>
208
+ </button>
209
+
210
+ <button class="bg-gray-900 rounded-2xl p-4 flex flex-col items-center justify-center h-32 card-hover">
211
+ <div class="w-12 h-12 rounded-full bg-green-900 flex items-center justify-center mb-2">
212
+ <i class="fas fa-chart-line text-xl"></i>
213
+ </div>
214
+ <span class="font-bold">Check Progress</span>
215
+ </button>
216
+
217
+ <button class="bg-gray-900 rounded-2xl p-4 flex flex-col items-center justify-center h-32 card-hover">
218
+ <div class="w-12 h-12 rounded-full bg-yellow-900 flex items-center justify-center mb-2">
219
+ <i class="fas fa-lock text-xl"></i>
220
+ </div>
221
+ <span class="font-bold">Vault</span>
222
+ </button>
223
+ </div>
224
+
225
+ <!-- Habits -->
226
+ <div class="bg-gray-900 rounded-2xl p-6 card-hover">
227
+ <div class="flex justify-between items-center mb-4">
228
+ <h3 class="text-lg font-bold">Today's Habits</h3>
229
+ <button class="text-blue-500 text-sm">Edit</button>
230
+ </div>
231
+
232
+ <div class="space-y-3">
233
+ <!-- Habit 1 -->
234
+ <div class="flex items-center justify-between p-3 bg-gray-800 rounded-full habit-pill">
235
+ <div class="flex items-center">
236
+ <div class="w-8 h-8 rounded-full bg-blue-900 flex items-center justify-center mr-3">
237
+ <i class="fas fa-sun text-sm"></i>
238
+ </div>
239
+ <span>Morning Routine</span>
240
+ </div>
241
+ <button class="w-8 h-8 rounded-full border-2 border-blue-500 flex items-center justify-center">
242
+ <i class="fas fa-check text-blue-500"></i>
243
+ </button>
244
+ </div>
245
+
246
+ <!-- Habit 2 -->
247
+ <div class="flex items-center justify-between p-3 bg-gray-800 rounded-full habit-pill">
248
+ <div class="flex items-center">
249
+ <div class="w-8 h-8 rounded-full bg-green-900 flex items-center justify-center mr-3">
250
+ <i class="fas fa-dumbbell text-sm"></i>
251
+ </div>
252
+ <span>Workout</span>
253
+ </div>
254
+ <button class="w-8 h-8 rounded-full border-2 border-gray-600 flex items-center justify-center">
255
+ <i class="fas fa-check text-transparent"></i>
256
+ </button>
257
+ </div>
258
+
259
+ <!-- Habit 3 -->
260
+ <div class="flex items-center justify-between p-3 bg-gray-800 rounded-full habit-pill">
261
+ <div class="flex items-center">
262
+ <div class="w-8 h-8 rounded-full bg-purple-900 flex items-center justify-center mr-3">
263
+ <i class="fas fa-book text-sm"></i>
264
+ </div>
265
+ <span>Read 30 min</span>
266
+ </div>
267
+ <button class="w-8 h-8 rounded-full border-2 border-gray-600 flex items-center justify-center">
268
+ <i class="fas fa-check text-transparent"></i>
269
+ </button>
270
+ </div>
271
+ </div>
272
+ </div>
273
+ </main>
274
+
275
+ <!-- Bottom Navigation -->
276
+ <nav class="fixed bottom-0 left-0 right-0 bg-gray-900 border-t border-gray-800 flex justify-around py-3 px-6">
277
+ <a href="#" class="flex flex-col items-center text-blue-500 nav-active">
278
+ <i class="fas fa-home text-xl"></i>
279
+ <span class="text-xs mt-1">Dashboard</span>
280
+ </a>
281
+ <a href="#" class="flex flex-col items-center text-gray-400">
282
+ <i class="fas fa-clipboard-list text-xl"></i>
283
+ <span class="text-xs mt-1">Logs</span>
284
+ </a>
285
+ <a href="#" class="flex flex-col items-center text-gray-400">
286
+ <i class="fas fa-lock text-xl"></i>
287
+ <span class="text-xs mt-1">Vault</span>
288
+ </a>
289
+ <a href="#" class="flex flex-col items-center text-gray-400">
290
+ <i class="fas fa-book text-xl"></i>
291
+ <span class="text-xs mt-1">Journal</span>
292
+ </a>
293
+ <a href="#" class="flex flex-col items-center text-gray-400">
294
+ <i class="fas fa-user text-xl"></i>
295
+ <span class="text-xs mt-1">Profile</span>
296
+ </a>
297
+ </nav>
298
+
299
+ <script>
300
+ // Simple interaction for habit completion
301
+ document.querySelectorAll('.habit-pill button').forEach(button => {
302
+ button.addEventListener('click', function() {
303
+ if (this.classList.contains('border-gray-600')) {
304
+ this.classList.remove('border-gray-600');
305
+ this.classList.add('border-blue-500');
306
+ this.innerHTML = '<i class="fas fa-check text-blue-500"></i>';
307
+ } else {
308
+ this.classList.remove('border-blue-500');
309
+ this.classList.add('border-gray-600');
310
+ this.innerHTML = '<i class="fas fa-check text-transparent"></i>';
311
+ }
312
+ });
313
+ });
314
+
315
+ // Card hover effect
316
+ document.querySelectorAll('.card-hover').forEach(card => {
317
+ card.addEventListener('mouseenter', function() {
318
+ this.classList.add('shadow-lg');
319
+ });
320
+ card.addEventListener('mouseleave', function() {
321
+ this.classList.remove('shadow-lg');
322
+ });
323
+ });
324
+ </script>
325
+ <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/dashboard-example" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
326
+ </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: Dashboard Overview widgets for: Daily streaks (habits/workouts) Goals progress Quick view of recent logs Call-to-action buttons for: Add Log, View Journal, Check Progress Clean cards or pill UI with icons