JayStormX8 commited on
Commit
c72e1d6
·
verified ·
1 Parent(s): 40faf35

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +422 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: V2 Opsv
3
- emoji: 🏃
4
- colorFrom: gray
5
  colorTo: yellow
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: v2-opsv
3
+ emoji: 🐳
4
+ colorFrom: purple
5
  colorTo: yellow
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,422 @@
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>Value Statements Owner | Strategic Planning Tool</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
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
12
+ }
13
+ .section-card {
14
+ transition: all 0.3s ease;
15
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
16
+ }
17
+ .section-card:hover {
18
+ transform: translateY(-2px);
19
+ box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
20
+ }
21
+ .input-highlight {
22
+ border-left: 4px solid #3b82f6;
23
+ }
24
+ .print-only {
25
+ display: none;
26
+ }
27
+ @media print {
28
+ .no-print {
29
+ display: none;
30
+ }
31
+ .print-only {
32
+ display: block;
33
+ }
34
+ .section-card {
35
+ break-inside: avoid;
36
+ box-shadow: none;
37
+ border: 1px solid #e5e7eb;
38
+ }
39
+ body {
40
+ background: white !important;
41
+ color: black !important;
42
+ }
43
+ }
44
+ </style>
45
+ </head>
46
+ <body class="gradient-bg min-h-screen p-4 md:p-8 font-sans">
47
+ <div class="max-w-7xl mx-auto">
48
+ <!-- Header -->
49
+ <header class="mb-8 text-center no-print">
50
+ <h1 class="text-4xl font-bold text-gray-800 mb-2">Value Statements Owner</h1>
51
+ <p class="text-lg text-gray-600">Strategic Planning & Goal Setting Tool</p>
52
+ <div class="mt-6 flex justify-center space-x-4">
53
+ <button onclick="window.print()" class="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-lg flex items-center">
54
+ <i class="fas fa-print mr-2"></i> Print Plan
55
+ </button>
56
+ <button onclick="saveToLocalStorage()" class="bg-green-500 hover:bg-green-600 text-white px-4 py-2 rounded-lg flex items-center">
57
+ <i class="fas fa-save mr-2"></i> Save Progress
58
+ </button>
59
+ <button onclick="loadFromLocalStorage()" class="bg-purple-500 hover:bg-purple-600 text-white px-4 py-2 rounded-lg flex items-center">
60
+ <i class="fas fa-file-import mr-2"></i> Load Saved
61
+ </button>
62
+ </div>
63
+ </header>
64
+
65
+ <div class="print-only mb-8 text-center">
66
+ <h1 class="text-3xl font-bold text-gray-800 mb-1">Value Statements Owner</h1>
67
+ <p class="text-gray-600">Strategic Plan - Generated on <span id="print-date"></span></p>
68
+ <script>
69
+ document.getElementById('print-date').textContent = new Date().toLocaleDateString();
70
+ </script>
71
+ </div>
72
+
73
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
74
+ <!-- Core Purpose Section -->
75
+ <div class="section-card bg-white rounded-xl p-6">
76
+ <h2 class="text-2xl font-bold text-gray-800 mb-4 flex items-center">
77
+ <i class="fas fa-bullseye text-blue-500 mr-3"></i> CORE PURPOSE
78
+ </h2>
79
+ <textarea class="w-full h-32 p-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 input-highlight" placeholder="Enter your core purpose statement here...">ENTER TEXT HERE</textarea>
80
+ </div>
81
+
82
+ <!-- Revenue Goal Section -->
83
+ <div class="section-card bg-white rounded-xl p-6">
84
+ <h2 class="text-2xl font-bold text-gray-800 mb-4 flex items-center">
85
+ <i class="fas fa-chart-line text-green-500 mr-3"></i> 2024 Revenue Goal
86
+ </h2>
87
+ <div class="mb-4">
88
+ <label class="block text-gray-700 mb-2">Owner:</label>
89
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-green-500 input-highlight" placeholder="Enter owner name">
90
+ </div>
91
+ <div class="grid grid-cols-3 gap-4">
92
+ <div>
93
+ <label class="block text-gray-700 mb-2">Monthly</label>
94
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-green-500" placeholder="$">
95
+ </div>
96
+ <div>
97
+ <label class="block text-gray-700 mb-2">Yearly</label>
98
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-green-500" placeholder="$">
99
+ </div>
100
+ <div>
101
+ <label class="block text-gray-700 mb-2">Quarterly</label>
102
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-green-500" placeholder="$">
103
+ </div>
104
+ </div>
105
+ </div>
106
+
107
+ <!-- One Page Strategic Vision -->
108
+ <div class="section-card bg-white rounded-xl p-6">
109
+ <h2 class="text-2xl font-bold text-gray-800 mb-4 flex items-center">
110
+ <i class="fas fa-binoculars text-purple-500 mr-3"></i> ONE PAGE STRATEGIC VISION
111
+ </h2>
112
+ <div class="space-y-4">
113
+ <div>
114
+ <h3 class="font-semibold text-gray-700 mb-2">CORE VALUES</h3>
115
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500 mb-2" placeholder="VALUE 1">
116
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500 mb-2" placeholder="VALUE 2">
117
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500" placeholder="VALUE 3">
118
+ </div>
119
+ <div>
120
+ <h3 class="font-semibold text-gray-700 mb-2">10 YEAR</h3>
121
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500 mb-2 font-bold" placeholder="Sky's the Limit GOAL">
122
+ <textarea class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500" placeholder="10 YEAR GOAL DESCRIPTION" rows="2"></textarea>
123
+ </div>
124
+ </div>
125
+ </div>
126
+
127
+ <!-- Profit Goal Section -->
128
+ <div class="section-card bg-white rounded-xl p-6">
129
+ <h2 class="text-2xl font-bold text-gray-800 mb-4 flex items-center">
130
+ <i class="fas fa-money-bill-wave text-yellow-500 mr-3"></i> 2024 Profit Goal
131
+ </h2>
132
+ <div class="mb-4">
133
+ <label class="block text-gray-700 mb-2">Owner:</label>
134
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-yellow-500 input-highlight" placeholder="Enter owner name">
135
+ </div>
136
+ <div class="grid grid-cols-3 gap-4">
137
+ <div>
138
+ <label class="block text-gray-700 mb-2">Monthly</label>
139
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-yellow-500" placeholder="$">
140
+ </div>
141
+ <div>
142
+ <label class="block text-gray-700 mb-2">Yearly</label>
143
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-yellow-500" placeholder="$">
144
+ </div>
145
+ <div>
146
+ <label class="block text-gray-700 mb-2">Quarterly</label>
147
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-yellow-500" placeholder="$">
148
+ </div>
149
+ </div>
150
+ <div class="mt-4">
151
+ <h3 class="font-semibold text-gray-700 mb-2">3 YEAR GOAL</h3>
152
+ <textarea class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-yellow-500" placeholder="3 YEAR GOAL DESCRIPTION" rows="2"></textarea>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- 1 Year Goals -->
157
+ <div class="section-card bg-white rounded-xl p-6">
158
+ <h2 class="text-2xl font-bold text-gray-800 mb-4 flex items-center">
159
+ <i class="fas fa-calendar-star text-red-500 mr-3"></i> 1 Year Goals
160
+ </h2>
161
+ <div class="space-y-3">
162
+ <div>
163
+ <label class="block text-gray-700 mb-1">Owner</label>
164
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-red-500 input-highlight" placeholder="Enter owner name">
165
+ </div>
166
+ <div>
167
+ <label class="block text-gray-700 mb-1">GOAL 1</label>
168
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-red-500" placeholder="Goal description">
169
+ </div>
170
+ <div>
171
+ <label class="block text-gray-700 mb-1">GOAL 2</label>
172
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-red-500" placeholder="Goal description">
173
+ </div>
174
+ <div>
175
+ <label class="block text-gray-700 mb-1">GOAL 3</label>
176
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-red-500" placeholder="Goal description">
177
+ </div>
178
+ </div>
179
+ </div>
180
+
181
+ <!-- 90 Day Goals -->
182
+ <div class="section-card bg-white rounded-xl p-6">
183
+ <h2 class="text-2xl font-bold text-gray-800 mb-4 flex items-center">
184
+ <i class="fas fa-calendar-day text-indigo-500 mr-3"></i> 90 Day Goals
185
+ </h2>
186
+ <div class="space-y-3">
187
+ <div>
188
+ <label class="block text-gray-700 mb-1">Owner</label>
189
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 input-highlight" placeholder="Enter owner name">
190
+ </div>
191
+ <div>
192
+ <label class="block text-gray-700 mb-1">GOAL 1</label>
193
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500" placeholder="Goal description">
194
+ </div>
195
+ <div>
196
+ <label class="block text-gray-700 mb-1">GOAL 2</label>
197
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500" placeholder="Goal description">
198
+ </div>
199
+ <div>
200
+ <label class="block text-gray-700 mb-1">GOAL 3</label>
201
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500" placeholder="Goal description">
202
+ </div>
203
+ </div>
204
+ </div>
205
+
206
+ <!-- Quarterly Theme & Reward -->
207
+ <div class="section-card bg-white rounded-xl p-6">
208
+ <h2 class="text-2xl font-bold text-gray-800 mb-4 flex items-center">
209
+ <i class="fas fa-trophy text-amber-500 mr-3"></i> Quarterly Theme & Reward
210
+ </h2>
211
+ <div class="space-y-4">
212
+ <div>
213
+ <label class="block text-gray-700 mb-2">Quarterly Theme</label>
214
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-amber-500" placeholder="INSERT THEME">
215
+ </div>
216
+ <div>
217
+ <label class="block text-gray-700 mb-2">Quarterly Reward</label>
218
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-amber-500" placeholder="INSERT TEAM REWARD">
219
+ </div>
220
+ <div>
221
+ <label class="block text-gray-700 mb-2">Quarterly Critical #</label>
222
+ <textarea class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-amber-500" placeholder="DESCRIPTION" rows="2"></textarea>
223
+ </div>
224
+ </div>
225
+ </div>
226
+
227
+ <!-- Monthly Goals -->
228
+ <div class="section-card bg-white rounded-xl p-6">
229
+ <h2 class="text-2xl font-bold text-gray-800 mb-4 flex items-center">
230
+ <i class="fas fa-calendar-alt text-pink-500 mr-3"></i> Monthly Goals
231
+ </h2>
232
+ <div class="space-y-3">
233
+ <div>
234
+ <label class="block text-gray-700 mb-1">Owner</label>
235
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-pink-500 input-highlight" placeholder="Enter owner name">
236
+ </div>
237
+ <div>
238
+ <label class="block text-gray-700 mb-1">GOAL 1</label>
239
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-pink-500" placeholder="Goal description">
240
+ </div>
241
+ <div>
242
+ <label class="block text-gray-700 mb-1">GOAL 2</label>
243
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-pink-500" placeholder="Goal description">
244
+ </div>
245
+ <div>
246
+ <label class="block text-gray-700 mb-1">GOAL 3</label>
247
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-pink-500" placeholder="Goal description">
248
+ </div>
249
+ </div>
250
+ </div>
251
+
252
+ <!-- Branding Differentiating Activities -->
253
+ <div class="section-card bg-white rounded-xl p-6">
254
+ <h2 class="text-2xl font-bold text-gray-800 mb-4 flex items-center">
255
+ <i class="fas fa-star text-teal-500 mr-3"></i> Branding Differentiating Activities
256
+ </h2>
257
+ <p class="text-gray-600 mb-3">(3 - 5 Hows):</p>
258
+ <div class="space-y-3">
259
+ <div>
260
+ <label class="block text-gray-700 mb-1">X-Factor (10x - 100x Underlying Advantage):</label>
261
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-teal-500" placeholder="Insert x-factor">
262
+ </div>
263
+ <div>
264
+ <label class="block text-gray-700 mb-1">Activity 1</label>
265
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-teal-500" placeholder="Activity description">
266
+ </div>
267
+ <div>
268
+ <label class="block text-gray-700 mb-1">Activity 2</label>
269
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-teal-500" placeholder="Activity description">
270
+ </div>
271
+ <div>
272
+ <label class="block text-gray-700 mb-1">Activity 3</label>
273
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-teal-500" placeholder="Activity description">
274
+ </div>
275
+ </div>
276
+ </div>
277
+
278
+ <!-- Trends & Strengths -->
279
+ <div class="section-card bg-white rounded-xl p-6">
280
+ <h2 class="text-2xl font-bold text-gray-800 mb-4 flex items-center">
281
+ <i class="fas fa-chart-pie text-orange-500 mr-3"></i> Trends & Strengths
282
+ </h2>
283
+ <div class="space-y-4">
284
+ <div>
285
+ <label class="block text-gray-700 mb-2">Trends</label>
286
+ <textarea class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500" placeholder="List key trends..." rows="2"></textarea>
287
+ </div>
288
+ <div>
289
+ <label class="block text-gray-700 mb-2">Strengths</label>
290
+ <textarea class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500" placeholder="List your strengths..." rows="2"></textarea>
291
+ </div>
292
+ <div>
293
+ <label class="block text-gray-700 mb-2">Weaknesses</label>
294
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500" placeholder="Insert Weaknesses">
295
+ </div>
296
+ </div>
297
+ </div>
298
+
299
+ <!-- Ideal Client -->
300
+ <div class="section-card bg-white rounded-xl p-6">
301
+ <h2 class="text-2xl font-bold text-gray-800 mb-4 flex items-center">
302
+ <i class="fas fa-users text-cyan-500 mr-3"></i> Ideal Client
303
+ </h2>
304
+ <div class="space-y-4">
305
+ <div>
306
+ <label class="block text-gray-700 mb-2">Who & Where • DESCRIPTION OF IDEAL CLIENT</label>
307
+ <textarea class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-cyan-500" placeholder="Describe your ideal client..." rows="2"></textarea>
308
+ </div>
309
+ <div>
310
+ <label class="block text-gray-700 mb-2">Problem We Solve & Product Service/Offer • DESCRIPTION</label>
311
+ <textarea class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-cyan-500" placeholder="Describe the problem you solve..." rows="2"></textarea>
312
+ </div>
313
+ </div>
314
+ </div>
315
+
316
+ <!-- Brand Promise -->
317
+ <div class="section-card bg-white rounded-xl p-6">
318
+ <h2 class="text-2xl font-bold text-gray-800 mb-4 flex items-center">
319
+ <i class="fas fa-handshake text-emerald-500 mr-3"></i> Brand Promise
320
+ </h2>
321
+ <div class="space-y-3">
322
+ <div>
323
+ <label class="block text-gray-700 mb-1">INTERCO</label>
324
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-emerald-500" placeholder="">
325
+ </div>
326
+ <div>
327
+ <label class="block text-gray-700 mb-1">HOPE</label>
328
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-emerald-500" placeholder="">
329
+ </div>
330
+ <div>
331
+ <label class="block text-gray-700 mb-1">GET</label>
332
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-emerald-500" placeholder="">
333
+ </div>
334
+ <div>
335
+ <label class="block text-gray-700 mb-1">WHEN</label>
336
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-emerald-500" placeholder="">
337
+ </div>
338
+ </div>
339
+ </div>
340
+
341
+ <!-- KPIs -->
342
+ <div class="section-card bg-white rounded-xl p-6">
343
+ <h2 class="text-2xl font-bold text-gray-800 mb-4 flex items-center">
344
+ <i class="fas fa-tachometer-alt text-blue-500 mr-3"></i> KPIs
345
+ </h2>
346
+ <div class="space-y-4">
347
+ <div>
348
+ <label class="block text-gray-700 mb-2">One-PHRASE Strategy</label>
349
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500" placeholder="Your strategy phrase">
350
+ </div>
351
+ <div>
352
+ <label class="block text-gray-700 mb-2">KPI1</label>
353
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500" placeholder="Key Performance Indicator 1">
354
+ </div>
355
+ <div>
356
+ <label class="block text-gray-700 mb-2">KPI2</label>
357
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500" placeholder="Key Performance Indicator 2">
358
+ </div>
359
+ <div>
360
+ <label class="block text-gray-700 mb-2">KPI3</label>
361
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500" placeholder="Key Performance Indicator 3">
362
+ </div>
363
+ <div>
364
+ <label class="block text-gray-700 mb-2">Profit per X (Economic Engine):</label>
365
+ <input type="text" class="w-full p-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500" placeholder="Insert">
366
+ </div>
367
+ </div>
368
+ </div>
369
+ </div>
370
+
371
+ <!-- Footer -->
372
+ <footer class="mt-12 text-center text-gray-600 text-sm no-print">
373
+ <p>Value Statements Owner Tool © 2024 | Strategic Planning Framework</p>
374
+ <p class="mt-2">Save your progress using the buttons above. All data is stored locally in your browser.</p>
375
+ </footer>
376
+ </div>
377
+
378
+ <script>
379
+ // Save all form data to local storage
380
+ function saveToLocalStorage() {
381
+ const formData = {};
382
+ document.querySelectorAll('input, textarea').forEach(element => {
383
+ formData[element.placeholder || element.previousElementSibling?.textContent] = element.value;
384
+ });
385
+ localStorage.setItem('valueStatementsData', JSON.stringify(formData));
386
+
387
+ // Show success message
388
+ alert('Your data has been saved successfully!');
389
+ }
390
+
391
+ // Load saved data from local storage
392
+ function loadFromLocalStorage() {
393
+ const savedData = localStorage.getItem('valueStatementsData');
394
+ if (savedData) {
395
+ const formData = JSON.parse(savedData);
396
+ document.querySelectorAll('input, textarea').forEach(element => {
397
+ const key = element.placeholder || element.previousElementSibling?.textContent;
398
+ if (formData[key]) {
399
+ element.value = formData[key];
400
+ }
401
+ });
402
+ alert('Your saved data has been loaded successfully!');
403
+ } else {
404
+ alert('No saved data found. Please save your data first.');
405
+ }
406
+ }
407
+
408
+ // Auto-save every 30 seconds
409
+ setInterval(saveToLocalStorage, 30000);
410
+
411
+ // Check for saved data on page load
412
+ window.addEventListener('DOMContentLoaded', () => {
413
+ const savedData = localStorage.getItem('valueStatementsData');
414
+ if (savedData) {
415
+ if (confirm('We found saved data. Would you like to load it?')) {
416
+ loadFromLocalStorage();
417
+ }
418
+ }
419
+ });
420
+ </script>
421
+ <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/v2-opsv" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
422
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Create a comprehensive online usable tool: Value Statements Owner: CORE PURPOSE ENTER TEXT HERE 2024 Revenue Goal Monthly Yearly Quarterly ONE PAGE STRATEGIC VISION CORE VALUES VALUE 1 VALUE 2 VALUE 3 10 YEAR Sky's the Limit GOAL 10 YEAR GOAL DESCRIPTION 2024 Profit Goal Owner: Monthly Yearly Quarterly 3 YEAR GOAL 3 YEAR GOAL DESCRIPTION 1 Year Goals Owner GOAL 1 Owner GOAL 2 Owner GOAL 3 90 Day Goals Owner GOAL 1 Owner GOAL 2 Owner GOAL 3 Quarterly Theme INSERT THEME Quarterly Reward INSERT TEAM REWARD Quarterly Critical # DESCRIPTION Monthly Goals Owner GOAL 1 Owner GOAL 2 Owner GOAL 3 Branding Differentiating Activities (3 - 5 Hows): X-Factor (10x - 100x Underlying Advantage): Activity 1 Insert x-factor Activity 2 Activity 3 Trends Strengths Ideal Client (Who & Where • DESCRIPTION OF IDEAL CLIENT Problem We Solve & Product Service/Offer • DESCRIPTION Brand Promise: INTERCO HOPE GET WHEN Brand Promises KPIS KPI 3 One-PHRASE Strategy KPI1 KPI2 KPI 3 Profit per X (Economic Engine): Insert Weaknesses