JayStormX8 commited on
Commit
bdbde05
·
verified ·
1 Parent(s): 0354c69

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +591 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Scale Up One
3
- emoji: 🏢
4
- colorFrom: blue
5
- colorTo: green
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: scale-up-one
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: purple
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,591 @@
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>Scaling Up Dashboard</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
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ primary: '#1E40AF',
15
+ secondary: '#1E3A8A',
16
+ accent: '#3B82F6',
17
+ dark: '#1F2937',
18
+ light: '#F9FAFB',
19
+ }
20
+ }
21
+ }
22
+ }
23
+ </script>
24
+ <style>
25
+ .progress-ring__circle {
26
+ transition: stroke-dashoffset 0.35s;
27
+ transform: rotate(-90deg);
28
+ transform-origin: 50% 50%;
29
+ }
30
+ .animate-pulse {
31
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
32
+ }
33
+ @keyframes pulse {
34
+ 0%, 100% {
35
+ opacity: 1;
36
+ }
37
+ 50% {
38
+ opacity: 0.5;
39
+ }
40
+ }
41
+ .grid-stack-item {
42
+ position: absolute;
43
+ }
44
+ .grid-stack-item-content {
45
+ background: white;
46
+ border-radius: 0.5rem;
47
+ box-shadow: 0 1px 3px rgba(0,0,0,0.1);
48
+ height: 100%;
49
+ padding: 1rem;
50
+ }
51
+ </style>
52
+ </head>
53
+ <body class="bg-gray-100 font-sans">
54
+ <div class="flex h-screen overflow-hidden">
55
+ <!-- Sidebar -->
56
+ <div class="hidden md:flex md:flex-shrink-0">
57
+ <div class="flex flex-col w-64 bg-primary text-white">
58
+ <div class="flex items-center justify-center h-16 px-4 bg-secondary">
59
+ <div class="flex items-center">
60
+ <i class="fas fa-chart-line text-2xl mr-2 text-accent"></i>
61
+ <span class="text-xl font-semibold">ScaleUp</span>
62
+ </div>
63
+ </div>
64
+ <div class="flex flex-col flex-grow pt-5 overflow-y-auto">
65
+ <div class="px-4 mb-10">
66
+ <div class="flex items-center justify-center">
67
+ <img class="h-16 w-16 rounded-full object-cover" src="https://randomuser.me/api/portraits/men/1.jpg" alt="User avatar">
68
+ <div class="ml-3">
69
+ <p class="text-sm font-medium">John Doe</p>
70
+ <p class="text-xs text-gray-300">CEO</p>
71
+ </div>
72
+ </div>
73
+ </div>
74
+ <nav class="flex-1 px-2 space-y-1">
75
+ <a href="#" class="flex items-center px-4 py-3 text-sm font-medium rounded-md bg-secondary text-white">
76
+ <i class="fas fa-home mr-3"></i>
77
+ Dashboard
78
+ </a>
79
+ <a href="#" class="flex items-center px-4 py-3 text-sm font-medium rounded-md text-gray-300 hover:bg-secondary hover:text-white">
80
+ <i class="fas fa-bullseye mr-3"></i>
81
+ Priorities
82
+ </a>
83
+ <a href="#" class="flex items-center px-4 py-3 text-sm font-medium rounded-md text-gray-300 hover:bg-secondary hover:text-white">
84
+ <i class="fas fa-chart-pie mr-3"></i>
85
+ Metrics
86
+ </a>
87
+ <a href="#" class="flex items-center px-4 py-3 text-sm font-medium rounded-md text-gray-300 hover:bg-secondary hover:text-white">
88
+ <i class="fas fa-users mr-3"></i>
89
+ People
90
+ </a>
91
+ <a href="#" class="flex items-center px-4 py-3 text-sm font-medium rounded-md text-gray-300 hover:bg-secondary hover:text-white">
92
+ <i class="fas fa-file-alt mr-3"></i>
93
+ OPSP
94
+ </a>
95
+ <a href="#" class="flex items-center px-4 py-3 text-sm font-medium rounded-md text-gray-300 hover:bg-secondary hover:text-white">
96
+ <i class="fas fa-calendar-alt mr-3"></i>
97
+ Meeting Pulse
98
+ </a>
99
+ <a href="#" class="flex items-center px-4 py-3 text-sm font-medium rounded-md text-gray-300 hover:bg-secondary hover:text-white">
100
+ <i class="fas fa-cog mr-3"></i>
101
+ Settings
102
+ </a>
103
+ </nav>
104
+ </div>
105
+ </div>
106
+ </div>
107
+
108
+ <!-- Main content -->
109
+ <div class="flex flex-col flex-1 overflow-hidden">
110
+ <!-- Top navigation -->
111
+ <header class="bg-white shadow-sm">
112
+ <div class="flex items-center justify-between px-4 py-3">
113
+ <div class="flex items-center">
114
+ <button class="md:hidden text-gray-500 focus:outline-none">
115
+ <i class="fas fa-bars text-xl"></i>
116
+ </button>
117
+ <h1 class="ml-2 text-xl font-semibold text-gray-800">Scaling Up Dashboard</h1>
118
+ </div>
119
+ <div class="flex items-center space-x-4">
120
+ <button class="text-gray-500 focus:outline-none">
121
+ <i class="fas fa-bell text-xl"></i>
122
+ </button>
123
+ <button class="text-gray-500 focus:outline-none">
124
+ <i class="fas fa-question-circle text-xl"></i>
125
+ </button>
126
+ <div class="relative">
127
+ <button class="flex items-center focus:outline-none">
128
+ <span class="hidden md:inline-block ml-2 text-sm font-medium text-gray-700">John Doe</span>
129
+ <img class="h-8 w-8 rounded-full" src="https://randomuser.me/api/portraits/men/1.jpg" alt="User avatar">
130
+ </button>
131
+ </div>
132
+ </div>
133
+ </div>
134
+ </header>
135
+
136
+ <!-- Main content area -->
137
+ <main class="flex-1 overflow-y-auto p-4">
138
+ <!-- Quick stats -->
139
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 mb-6">
140
+ <div class="bg-white rounded-lg shadow p-6">
141
+ <div class="flex items-center">
142
+ <div class="p-3 rounded-full bg-blue-100 text-blue-600">
143
+ <i class="fas fa-rocket text-xl"></i>
144
+ </div>
145
+ <div class="ml-4">
146
+ <p class="text-sm font-medium text-gray-500">Revenue</p>
147
+ <p class="text-2xl font-semibold text-gray-800">$1.2M</p>
148
+ <p class="text-xs text-green-500">+12% from last quarter</p>
149
+ </div>
150
+ </div>
151
+ </div>
152
+ <div class="bg-white rounded-lg shadow p-6">
153
+ <div class="flex items-center">
154
+ <div class="p-3 rounded-full bg-green-100 text-green-600">
155
+ <i class="fas fa-users text-xl"></i>
156
+ </div>
157
+ <div class="ml-4">
158
+ <p class="text-sm font-medium text-gray-500">Employees</p>
159
+ <p class="text-2xl font-semibold text-gray-800">84</p>
160
+ <p class="text-xs text-green-500">+5 this quarter</p>
161
+ </div>
162
+ </div>
163
+ </div>
164
+ <div class="bg-white rounded-lg shadow p-6">
165
+ <div class="flex items-center">
166
+ <div class="p-3 rounded-full bg-purple-100 text-purple-600">
167
+ <i class="fas fa-heart text-xl"></i>
168
+ </div>
169
+ <div class="ml-4">
170
+ <p class="text-sm font-medium text-gray-500">Customer NPS</p>
171
+ <p class="text-2xl font-semibold text-gray-800">72</p>
172
+ <p class="text-xs text-red-500">-3 from last quarter</p>
173
+ </div>
174
+ </div>
175
+ </div>
176
+ <div class="bg-white rounded-lg shadow p-6">
177
+ <div class="flex items-center">
178
+ <div class="p-3 rounded-full bg-yellow-100 text-yellow-600">
179
+ <i class="fas fa-bullseye text-xl"></i>
180
+ </div>
181
+ <div class="ml-4">
182
+ <p class="text-sm font-medium text-gray-500">Quarterly Goals</p>
183
+ <div class="w-full bg-gray-200 rounded-full h-2.5 mt-2">
184
+ <div class="bg-blue-600 h-2.5 rounded-full" style="width: 65%"></div>
185
+ </div>
186
+ <p class="text-xs text-gray-500 mt-1">65% complete</p>
187
+ </div>
188
+ </div>
189
+ </div>
190
+ </div>
191
+
192
+ <!-- Main dashboard sections -->
193
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-6">
194
+ <!-- Rockefeller Habits Checklist -->
195
+ <div class="lg:col-span-1 bg-white rounded-lg shadow overflow-hidden">
196
+ <div class="px-6 py-4 border-b border-gray-200">
197
+ <h2 class="text-lg font-semibold text-gray-800">Rockefeller Habits</h2>
198
+ <p class="text-sm text-gray-500">Daily/Weekly disciplines</p>
199
+ </div>
200
+ <div class="p-6">
201
+ <div class="space-y-4">
202
+ <div class="flex items-start">
203
+ <input type="checkbox" id="habit1" class="mt-1 h-4 w-4 text-blue-600 rounded focus:ring-blue-500" checked>
204
+ <label for="habit1" class="ml-3 block text-sm font-medium text-gray-700">
205
+ Executive team is healthy and aligned
206
+ </label>
207
+ </div>
208
+ <div class="flex items-start">
209
+ <input type="checkbox" id="habit2" class="mt-1 h-4 w-4 text-blue-600 rounded focus:ring-blue-500" checked>
210
+ <label for="habit2" class="ml-3 block text-sm font-medium text-gray-700">
211
+ Everyone is aligned with #1 priority
212
+ </label>
213
+ </div>
214
+ <div class="flex items-start">
215
+ <input type="checkbox" id="habit3" class="mt-1 h-4 w-4 text-blue-600 rounded focus:ring-blue-500">
216
+ <label for="habit3" class="ml-3 block text-sm font-medium text-gray-700">
217
+ Communication rhythm is established
218
+ </label>
219
+ </div>
220
+ <div class="flex items-start">
221
+ <input type="checkbox" id="habit4" class="mt-1 h-4 w-4 text-blue-600 rounded focus:ring-blue-500">
222
+ <label for="habit4" class="ml-3 block text-sm font-medium text-gray-700">
223
+ Every facet of the organization has a person assigned
224
+ </label>
225
+ </div>
226
+ <div class="flex items-start">
227
+ <input type="checkbox" id="habit5" class="mt-1 h-4 w-4 text-blue-600 rounded focus:ring-blue-500" checked>
228
+ <label for="habit5" class="ml-3 block text-sm font-medium text-gray-700">
229
+ Ongoing employee feedback
230
+ </label>
231
+ </div>
232
+ </div>
233
+ <div class="mt-6">
234
+ <button class="w-full flex items-center justify-center px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
235
+ Update Habits
236
+ </button>
237
+ </div>
238
+ </div>
239
+ </div>
240
+
241
+ <!-- One Page Strategic Plan -->
242
+ <div class="lg:col-span-2 bg-white rounded-lg shadow overflow-hidden">
243
+ <div class="px-6 py-4 border-b border-gray-200">
244
+ <h2 class="text-lg font-semibold text-gray-800">One Page Strategic Plan</h2>
245
+ <p class="text-sm text-gray-500">Company vision and priorities</p>
246
+ </div>
247
+ <div class="p-6">
248
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
249
+ <div>
250
+ <h3 class="text-md font-medium text-gray-800 mb-3">Core Values</h3>
251
+ <ul class="space-y-2">
252
+ <li class="flex items-start">
253
+ <span class="flex-shrink-0 h-6 w-6 text-green-500 flex items-center justify-center">
254
+ <i class="fas fa-check"></i>
255
+ </span>
256
+ <span class="ml-2 text-sm text-gray-700">Customer Obsession</span>
257
+ </li>
258
+ <li class="flex items-start">
259
+ <span class="flex-shrink-0 h-6 w-6 text-green-500 flex items-center justify-center">
260
+ <i class="fas fa-check"></i>
261
+ </span>
262
+ <span class="ml-2 text-sm text-gray-700">Ownership</span>
263
+ </li>
264
+ <li class="flex items-start">
265
+ <span class="flex-shrink-0 h-6 w-6 text-green-500 flex items-center justify-center">
266
+ <i class="fas fa-check"></i>
267
+ </span>
268
+ <span class="ml-2 text-sm text-gray-700">Innovate & Simplify</span>
269
+ </li>
270
+ </ul>
271
+ </div>
272
+ <div>
273
+ <h3 class="text-md font-medium text-gray-800 mb-3">BHAG (10-25 Year Goal)</h3>
274
+ <p class="text-sm text-gray-700">To become the most customer-centric company in our industry, serving 1 million customers globally by 2040.</p>
275
+ </div>
276
+ <div>
277
+ <h3 class="text-md font-medium text-gray-800 mb-3">3-5 Year Targets</h3>
278
+ <ul class="space-y-2">
279
+ <li class="flex items-start">
280
+ <span class="flex-shrink-0 h-6 w-6 text-blue-500 flex items-center justify-center">
281
+ <i class="fas fa-bullseye"></i>
282
+ </span>
283
+ <span class="ml-2 text-sm text-gray-700">$50M annual revenue</span>
284
+ </li>
285
+ <li class="flex items-start">
286
+ <span class="flex-shrink-0 h-6 w-6 text-blue-500 flex items-center justify-center">
287
+ <i class="fas fa-bullseye"></i>
288
+ </span>
289
+ <span class="ml-2 text-sm text-gray-700">Expand to 3 new markets</span>
290
+ </li>
291
+ </ul>
292
+ </div>
293
+ <div>
294
+ <h3 class="text-md font-medium text-gray-800 mb-3">1 Year Priorities</h3>
295
+ <ul class="space-y-2">
296
+ <li class="flex items-start">
297
+ <span class="flex-shrink-0 h-6 w-6 text-purple-500 flex items-center justify-center">
298
+ <i class="fas fa-flag"></i>
299
+ </span>
300
+ <span class="ml-2 text-sm text-gray-700">Launch new product line</span>
301
+ </li>
302
+ <li class="flex items-start">
303
+ <span class="flex-shrink-0 h-6 w-6 text-purple-500 flex items-center justify-center">
304
+ <i class="fas fa-flag"></i>
305
+ </span>
306
+ <span class="ml-2 text-sm text-gray-700">Improve customer retention by 15%</span>
307
+ </li>
308
+ </ul>
309
+ </div>
310
+ </div>
311
+ <div class="mt-6">
312
+ <button class="w-full flex items-center justify-center px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
313
+ Edit Strategic Plan
314
+ </button>
315
+ </div>
316
+ </div>
317
+ </div>
318
+ </div>
319
+
320
+ <!-- Quarterly Priorities and Metrics -->
321
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-6">
322
+ <!-- Quarterly Priorities -->
323
+ <div class="lg:col-span-2 bg-white rounded-lg shadow overflow-hidden">
324
+ <div class="px-6 py-4 border-b border-gray-200">
325
+ <h2 class="text-lg font-semibold text-gray-800">Quarterly Priorities</h2>
326
+ <p class="text-sm text-gray-500">Q3 2023 - Critical Few</p>
327
+ </div>
328
+ <div class="p-6">
329
+ <div class="space-y-4">
330
+ <div class="flex items-start">
331
+ <div class="flex-shrink-0 h-10 w-10 rounded-full bg-green-100 flex items-center justify-center text-green-600">
332
+ <i class="fas fa-1"></i>
333
+ </div>
334
+ <div class="ml-4">
335
+ <h3 class="text-md font-medium text-gray-800">Launch new marketing campaign</h3>
336
+ <p class="text-sm text-gray-600 mt-1">Increase brand awareness and lead generation by 30%</p>
337
+ <div class="mt-2">
338
+ <div class="w-full bg-gray-200 rounded-full h-2">
339
+ <div class="bg-green-500 h-2 rounded-full" style="width: 75%"></div>
340
+ </div>
341
+ <p class="text-xs text-gray-500 mt-1">Due in 2 weeks</p>
342
+ </div>
343
+ </div>
344
+ </div>
345
+ <div class="flex items-start">
346
+ <div class="flex-shrink-0 h-10 w-10 rounded-full bg-blue-100 flex items-center justify-center text-blue-600">
347
+ <i class="fas fa-2"></i>
348
+ </div>
349
+ <div class="ml-4">
350
+ <h3 class="text-md font-medium text-gray-800">Hire 5 new sales reps</h3>
351
+ <p class="text-sm text-gray-600 mt-1">Expand sales team to meet growing demand</p>
352
+ <div class="mt-2">
353
+ <div class="w-full bg-gray-200 rounded-full h-2">
354
+ <div class="bg-blue-500 h-2 rounded-full" style="width: 40%"></div>
355
+ </div>
356
+ <p class="text-xs text-gray-500 mt-1">2 hires completed</p>
357
+ </div>
358
+ </div>
359
+ </div>
360
+ <div class="flex items-start">
361
+ <div class="flex-shrink-0 h-10 w-10 rounded-full bg-purple-100 flex items-center justify-center text-purple-600">
362
+ <i class="fas fa-3"></i>
363
+ </div>
364
+ <div class="ml-4">
365
+ <h3 class="text-md font-medium text-gray-800">Implement new CRM system</h3>
366
+ <p class="text-sm text-gray-600 mt-1">Improve customer relationship management</p>
367
+ <div class="mt-2">
368
+ <div class="w-full bg-gray-200 rounded-full h-2">
369
+ <div class="bg-purple-500 h-2 rounded-full" style="width: 20%"></div>
370
+ </div>
371
+ <p class="text-xs text-gray-500 mt-1">In discovery phase</p>
372
+ </div>
373
+ </div>
374
+ </div>
375
+ </div>
376
+ </div>
377
+ </div>
378
+
379
+ <!-- Key Metrics -->
380
+ <div class="lg:col-span-1 bg-white rounded-lg shadow overflow-hidden">
381
+ <div class="px-6 py-4 border-b border-gray-200">
382
+ <h2 class="text-lg font-semibold text-gray-800">Key Metrics</h2>
383
+ <p class="text-sm text-gray-500">Quarterly performance</p>
384
+ </div>
385
+ <div class="p-6">
386
+ <div class="space-y-6">
387
+ <div>
388
+ <div class="flex justify-between items-center mb-1">
389
+ <span class="text-sm font-medium text-gray-700">Revenue Growth</span>
390
+ <span class="text-sm font-semibold text-green-600">+12%</span>
391
+ </div>
392
+ <div class="w-full bg-gray-200 rounded-full h-2">
393
+ <div class="bg-green-500 h-2 rounded-full" style="width: 80%"></div>
394
+ </div>
395
+ <p class="text-xs text-gray-500 mt-1">$1.2M vs $1.35M target</p>
396
+ </div>
397
+ <div>
398
+ <div class="flex justify-between items-center mb-1">
399
+ <span class="text-sm font-medium text-gray-700">Customer Acquisition</span>
400
+ <span class="text-sm font-semibold text-blue-600">245</span>
401
+ </div>
402
+ <div class="w-full bg-gray-200 rounded-full h-2">
403
+ <div class="bg-blue-500 h-2 rounded-full" style="width: 65%"></div>
404
+ </div>
405
+ <p class="text-xs text-gray-500 mt-1">245 vs 375 target</p>
406
+ </div>
407
+ <div>
408
+ <div class="flex justify-between items-center mb-1">
409
+ <span class="text-sm font-medium text-gray-700">Employee Engagement</span>
410
+ <span class="text-sm font-semibold text-yellow-600">78%</span>
411
+ </div>
412
+ <div class="w-full bg-gray-200 rounded-full h-2">
413
+ <div class="bg-yellow-500 h-2 rounded-full" style="width: 78%"></div>
414
+ </div>
415
+ <p class="text-xs text-gray-500 mt-1">+3% from last quarter</p>
416
+ </div>
417
+ <div>
418
+ <div class="flex justify-between items-center mb-1">
419
+ <span class="text-sm font-medium text-gray-700">Productivity</span>
420
+ <span class="text-sm font-semibold text-purple-600">1.2x</span>
421
+ </div>
422
+ <div class="w-full bg-gray-200 rounded-full h-2">
423
+ <div class="bg-purple-500 h-2 rounded-full" style="width: 60%"></div>
424
+ </div>
425
+ <p class="text-xs text-gray-500 mt-1">1.2x vs 2x target</p>
426
+ </div>
427
+ </div>
428
+ </div>
429
+ </div>
430
+ </div>
431
+
432
+ <!-- Meeting Pulse and To-Dos -->
433
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-6">
434
+ <!-- Meeting Pulse -->
435
+ <div class="lg:col-span-2 bg-white rounded-lg shadow overflow-hidden">
436
+ <div class="px-6 py-4 border-b border-gray-200">
437
+ <h2 class="text-lg font-semibold text-gray-800">Meeting Pulse</h2>
438
+ <p class="text-sm text-gray-500">Daily, weekly, monthly rhythm</p>
439
+ </div>
440
+ <div class="p-6">
441
+ <div class="space-y-6">
442
+ <div>
443
+ <h3 class="text-md font-medium text-gray-800 mb-3">Daily Huddle (15 min)</h3>
444
+ <div class="bg-blue-50 p-4 rounded-lg">
445
+ <div class="flex items-center justify-between">
446
+ <div>
447
+ <p class="text-sm font-medium text-gray-700">Today's Priorities</p>
448
+ <p class="text-xs text-gray-500">8:15 AM, Conference Room</p>
449
+ </div>
450
+ <button class="px-3 py-1 bg-blue-100 text-blue-700 rounded-full text-xs font-medium">
451
+ Join
452
+ </button>
453
+ </div>
454
+ </div>
455
+ </div>
456
+ <div>
457
+ <h3 class="text-md font-medium text-gray-800 mb-3">Weekly Meeting (90 min)</h3>
458
+ <div class="bg-green-50 p-4 rounded-lg">
459
+ <div class="flex items-center justify-between">
460
+ <div>
461
+ <p class="text-sm font-medium text-gray-700">Quarterly Priority Review</p>
462
+ <p class="text-xs text-gray-500">Monday, 10:00 AM</p>
463
+ </div>
464
+ <button class="px-3 py-1 bg-green-100 text-green-700 rounded-full text-xs font-medium">
465
+ Prepare
466
+ </button>
467
+ </div>
468
+ </div>
469
+ </div>
470
+ <div>
471
+ <h3 class="text-md font-medium text-gray-800 mb-3">Monthly Learning (2 hours)</h3>
472
+ <div class="bg-purple-50 p-4 rounded-lg">
473
+ <div class="flex items-center justify-between">
474
+ <div>
475
+ <p class="text-sm font-medium text-gray-700">Customer Feedback Analysis</p>
476
+ <p class="text-xs text-gray-500">First Friday, 1:00 PM</p>
477
+ </div>
478
+ <button class="px-3 py-1 bg-purple-100 text-purple-700 rounded-full text-xs font-medium">
479
+ Review Data
480
+ </button>
481
+ </div>
482
+ </div>
483
+ </div>
484
+ <div>
485
+ <h3 class="text-md font-medium text-gray-800 mb-3">Quarterly Offsite (2 days)</h3>
486
+ <div class="bg-yellow-50 p-4 rounded-lg">
487
+ <div class="flex items-center justify-between">
488
+ <div>
489
+ <p class="text-sm font-medium text-gray-700">Strategic Planning</p>
490
+ <p class="text-xs text-gray-500">Oct 15-16, Mountain View</p>
491
+ </div>
492
+ <button class="px-3 py-1 bg-yellow-100 text-yellow-700 rounded-full text-xs font-medium">
493
+ RSVP
494
+ </button>
495
+ </div>
496
+ </div>
497
+ </div>
498
+ </div>
499
+ </div>
500
+ </div>
501
+
502
+ <!-- To-Dos and Action Items -->
503
+ <div class="lg:col-span-1 bg-white rounded-lg shadow overflow-hidden">
504
+ <div class="px-6 py-4 border-b border-gray-200">
505
+ <h2 class="text-lg font-semibold text-gray-800">My Action Items</h2>
506
+ <p class="text-sm text-gray-500">Priority tasks</p>
507
+ </div>
508
+ <div class="p-6">
509
+ <div class="space-y-4">
510
+ <div class="flex items-start">
511
+ <input type="checkbox" id="task1" class="mt-1 h-4 w-4 text-blue-600 rounded focus:ring-blue-500">
512
+ <label for="task1" class="ml-3 block text-sm font-medium text-gray-700">
513
+ Review marketing campaign results
514
+ <p class="text-xs text-gray-500 mt-1">Due tomorrow</p>
515
+ </label>
516
+ </div>
517
+ <div class="flex items-start">
518
+ <input type="checkbox" id="task2" class="mt-1 h-4 w-4 text-blue-600 rounded focus:ring-blue-500" checked>
519
+ <label for="task2" class="ml-3 block text-sm font-medium text-gray-700">
520
+ Interview sales candidate
521
+ <p class="text-xs text-gray-500 mt-1">Completed today</p>
522
+ </label>
523
+ </div>
524
+ <div class="flex items-start">
525
+ <input type="checkbox" id="task3" class="mt-1 h-4 w-4 text-blue-600 rounded focus:ring-blue-500">
526
+ <label for="task3" class="ml-3 block text-sm font-medium text-gray-700">
527
+ Prepare quarterly board report
528
+ <p class="text-xs text-gray-500 mt-1">Due in 3 days</p>
529
+ </label>
530
+ </div>
531
+ <div class="flex items-start">
532
+ <input type="checkbox" id="task4" class="mt-1 h-4 w-4 text-blue-600 rounded focus:ring-blue-500">
533
+ <label for="task4" class="ml-3 block text-sm font-medium text-gray-700">
534
+ Follow up with key client
535
+ <p class="text-xs text-gray-500 mt-1">Due Friday</p>
536
+ </label>
537
+ </div>
538
+ </div>
539
+ <div class="mt-6">
540
+ <div class="flex">
541
+ <input type="text" class="flex-1 min-w-0 block w-full px-3 py-2 rounded-md border border-gray-300 shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm" placeholder="Add new action item">
542
+ <button class="ml-3 inline-flex items-center px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
543
+ Add
544
+ </button>
545
+ </div>
546
+ </div>
547
+ </div>
548
+ </div>
549
+ </div>
550
+ </main>
551
+ </div>
552
+ </div>
553
+
554
+ <script>
555
+ // Simple interactivity for the dashboard
556
+ document.addEventListener('DOMContentLoaded', function() {
557
+ // Toggle checkboxes
558
+ const checkboxes = document.querySelectorAll('input[type="checkbox"]');
559
+ checkboxes.forEach(checkbox => {
560
+ checkbox.addEventListener('change', function() {
561
+ const label = this.nextElementSibling;
562
+ if (this.checked) {
563
+ label.classList.add('line-through', 'text-gray-400');
564
+ } else {
565
+ label.classList.remove('line-through', 'text-gray-400');
566
+ }
567
+ });
568
+ });
569
+
570
+ // Simulate progress updates
571
+ setInterval(() => {
572
+ const progressBars = document.querySelectorAll('[class*="bg-"]:not(.bg-white):not(.bg-gray-200)');
573
+ progressBars.forEach(bar => {
574
+ const currentWidth = parseInt(bar.style.width) || 0;
575
+ const newWidth = Math.min(currentWidth + Math.random() * 5, 100);
576
+ bar.style.width = `${newWidth}%`;
577
+
578
+ // Update color based on progress
579
+ if (newWidth > 80) {
580
+ bar.classList.remove('bg-yellow-500', 'bg-purple-500', 'bg-blue-500');
581
+ bar.classList.add('bg-green-500');
582
+ } else if (newWidth > 50) {
583
+ bar.classList.remove('bg-green-500', 'bg-purple-500', 'bg-blue-500');
584
+ bar.classList.add('bg-yellow-500');
585
+ }
586
+ });
587
+ }, 3000);
588
+ });
589
+ </script>
590
+ <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=JayStormX8/scale-up-one" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
591
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ create a fully functional scaling up dashboard based on the book