shazzar00ni commited on
Commit
7649866
·
verified ·
1 Parent(s): bdb70df

Notebook Upgrade Move All Notes Notebooks Noteboards Shared Notebooks 4 Books Simple Scribbles passwords Saved Links Shannons Notes Simple Scribbles 8 Notes Paperlyte Landing Page Paperlyte Landing PageHero Section Headline: “Note-taking, Lighter Than Ever” Subtext: Capture your thoughts instantly in a space that’s lightning-fast, beautifully clean, and utterly distraction-free. Cal Jul 31 Simple Scribbles Prd Jul 26 Simple Scribbles Prd Jul 26 Github Issues ✅ Main GitHub Issues: Each corresponds to a section of the product from planning to polish: [x] Project Initialization [x] UI/UX Design Jul 26 GitHub Issues 📌 GitHub Issues for Simple Scribbles MVP ✅ Create/Edit Notes Title: Create & Edit Notes Functionality Labels: feature, mvp, editor Description: Implement a text editor component that allows users to write Jul 26 readme # Simple Scribbles - Waitlist & Demo Application A comprehensive waitlist system and product demo for Simple Scribbles, an intuitive, simple and minimal note-taking application for busy professionals a Jul 24 Product requirement document 📝 Product Requirements Document (PRD) Project Name: Simple Scribbles Author: Shannon (Queen Shazza) Date: July 21, 2025 Version: 1.0 MVP Status: In development 1. 🌟 Purpose & Goals Objective: Build a clean, Jul 24 Simple Scribbles Plan 📝 Phase 1: Discovery & Planning (2 weeks) Task Deliverable Owner • Define vision & goals Project Vision Doc You / PM • User research & personas 3 User Personas + Pain Points You • Feature backlog & user storie Jul 23 readme New Jarvis logo ⌃J - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +345 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Note App Example
3
- emoji: 🐨
4
- colorFrom: purple
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: note-app-example
3
+ emoji: 🐳
4
+ colorFrom: red
5
+ colorTo: blue
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,345 @@
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>Simple Scribbles - Notebook Upgrade</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
+ .note-card:hover .note-actions {
11
+ opacity: 1;
12
+ }
13
+ .sidebar-item:hover {
14
+ background-color: rgba(255, 255, 255, 0.1);
15
+ }
16
+ .sidebar-item.active {
17
+ background-color: rgba(255, 255, 255, 0.2);
18
+ border-left: 3px solid white;
19
+ }
20
+ .search-input:focus {
21
+ outline: none;
22
+ box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
23
+ }
24
+ .markdown-content h1 {
25
+ font-size: 1.5rem;
26
+ font-weight: bold;
27
+ margin: 1rem 0;
28
+ }
29
+ .markdown-content h2 {
30
+ font-size: 1.25rem;
31
+ font-weight: bold;
32
+ margin: 0.75rem 0;
33
+ }
34
+ .markdown-content p {
35
+ margin: 0.5rem 0;
36
+ }
37
+ .markdown-content ul {
38
+ list-style-type: disc;
39
+ margin-left: 1.5rem;
40
+ }
41
+ </style>
42
+ </head>
43
+ <body class="bg-gray-900 text-gray-100 flex h-screen overflow-hidden">
44
+ <!-- Sidebar -->
45
+ <div class="w-64 bg-gray-800 flex flex-col border-r border-gray-700">
46
+ <div class="p-4 border-b border-gray-700">
47
+ <div class="flex items-center justify-between">
48
+ <h1 class="text-xl font-bold flex items-center">
49
+ <i class="fas fa-book-open mr-2"></i> Simple Scribbles
50
+ </h1>
51
+ <button class="text-gray-400 hover:text-white">
52
+ <i class="fas fa-ellipsis-h"></i>
53
+ </button>
54
+ </div>
55
+ </div>
56
+
57
+ <div class="p-4">
58
+ <button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-lg flex items-center justify-center">
59
+ <i class="fas fa-plus mr-2"></i> New Note
60
+ </button>
61
+ </div>
62
+
63
+ <div class="px-4 mb-4">
64
+ <div class="relative">
65
+ <input type="text" placeholder="Search notes..." class="search-input w-full bg-gray-700 text-white px-4 py-2 rounded-lg pl-10 focus:ring-2 focus:ring-blue-500">
66
+ <i class="fas fa-search absolute left-3 top-3 text-gray-400"></i>
67
+ </div>
68
+ </div>
69
+
70
+ <div class="flex-1 overflow-y-auto">
71
+ <div class="mb-6">
72
+ <div class="px-4 py-2 text-gray-400 uppercase text-xs font-semibold">Notebooks</div>
73
+ <div class="sidebar-item active">
74
+ <a href="#" class="block px-4 py-2 text-white flex items-center">
75
+ <i class="fas fa-book mr-2"></i> Simple Scribbles
76
+ </a>
77
+ </div>
78
+ <div class="sidebar-item">
79
+ <a href="#" class="block px-4 py-2 text-gray-300 hover:text-white flex items-center">
80
+ <i class="fas fa-book mr-2"></i> Passwords
81
+ </a>
82
+ </div>
83
+ <div class="sidebar-item">
84
+ <a href="#" class="block px-4 py-2 text-gray-300 hover:text-white flex items-center">
85
+ <i class="fas fa-book mr-2"></i> Saved Links
86
+ </a>
87
+ </div>
88
+ <div class="sidebar-item">
89
+ <a href="#" class="block px-4 py-2 text-gray-300 hover:text-white flex items-center">
90
+ <i class="fas fa-book mr-2"></i> Shannons Notes
91
+ </a>
92
+ </div>
93
+ </div>
94
+
95
+ <div class="mb-6">
96
+ <div class="px-4 py-2 text-gray-400 uppercase text-xs font-semibold">Tags</div>
97
+ <div class="sidebar-item">
98
+ <a href="#" class="block px-4 py-2 text-gray-300 hover:text-white flex items-center">
99
+ <i class="fas fa-tag mr-2 text-blue-400"></i> MVP
100
+ </a>
101
+ </div>
102
+ <div class="sidebar-item">
103
+ <a href="#" class="block px-4 py-2 text-gray-300 hover:text-white flex items-center">
104
+ <i class="fas fa-tag mr-2 text-green-400"></i> Feature
105
+ </a>
106
+ </div>
107
+ <div class="sidebar-item">
108
+ <a href="#" class="block px-4 py-2 text-gray-300 hover:text-white flex items-center">
109
+ <i class="fas fa-tag mr-2 text-purple-400"></i> Documentation
110
+ </a>
111
+ </div>
112
+ </div>
113
+ </div>
114
+
115
+ <div class="p-4 border-t border-gray-700">
116
+ <div class="flex items-center">
117
+ <div class="w-8 h-8 rounded-full bg-blue-600 flex items-center justify-center text-white font-semibold">S</div>
118
+ <div class="ml-3">
119
+ <div class="text-sm font-medium">Shannon</div>
120
+ <div class="text-xs text-gray-400">Queen Shazza</div>
121
+ </div>
122
+ </div>
123
+ </div>
124
+ </div>
125
+
126
+ <!-- Main Content -->
127
+ <div class="flex-1 flex flex-col overflow-hidden">
128
+ <!-- Header -->
129
+ <div class="bg-gray-800 border-b border-gray-700 p-4 flex items-center justify-between">
130
+ <div class="flex items-center">
131
+ <h2 class="text-lg font-semibold">Simple Scribbles</h2>
132
+ <span class="ml-2 bg-gray-700 text-xs px-2 py-1 rounded">8 Notes</span>
133
+ </div>
134
+ <div class="flex items-center space-x-4">
135
+ <button class="text-gray-400 hover:text-white">
136
+ <i class="fas fa-sort-alpha-down"></i>
137
+ </button>
138
+ <button class="text-gray-400 hover:text-white">
139
+ <i class="fas fa-filter"></i>
140
+ </button>
141
+ <button class="text-gray-400 hover:text-white">
142
+ <i class="fas fa-search"></i>
143
+ </button>
144
+ </div>
145
+ </div>
146
+
147
+ <!-- Notes List -->
148
+ <div class="flex-1 overflow-y-auto">
149
+ <div class="p-4">
150
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
151
+ <!-- Note Card 1 -->
152
+ <div class="note-card bg-gray-800 rounded-lg border border-gray-700 overflow-hidden hover:shadow-lg transition-shadow duration-200">
153
+ <div class="p-4 border-b border-gray-700">
154
+ <div class="flex justify-between items-start">
155
+ <h3 class="font-semibold text-lg mb-1">Paperlyte Landing Page</h3>
156
+ <div class="note-actions opacity-0 transition-opacity duration-200 flex space-x-2">
157
+ <button class="text-gray-400 hover:text-blue-400">
158
+ <i class="fas fa-edit"></i>
159
+ </button>
160
+ <button class="text-gray-400 hover:text-red-400">
161
+ <i class="fas fa-trash"></i>
162
+ </button>
163
+ </div>
164
+ </div>
165
+ <div class="text-sm text-gray-400 mb-2">Paperlyte Landing Page</div>
166
+ <div class="text-xs text-gray-500">Hero Section Headline: "Note-taking, Lighter Than Ever" Subtext: Capture your thoughts instantly in a space that's lightning-fast, beautifully clean, and utterly distraction-free.</div>
167
+ </div>
168
+ <div class="p-3 bg-gray-700 text-xs text-gray-400 flex justify-between items-center">
169
+ <span>Cal Jul 31</span>
170
+ <div class="flex space-x-1">
171
+ <span class="px-2 py-1 bg-gray-600 rounded">Landing</span>
172
+ </div>
173
+ </div>
174
+ </div>
175
+
176
+ <!-- Note Card 2 -->
177
+ <div class="note-card bg-gray-800 rounded-lg border border-gray-700 overflow-hidden hover:shadow-lg transition-shadow duration-200">
178
+ <div class="p-4 border-b border-gray-700">
179
+ <div class="flex justify-between items-start">
180
+ <h3 class="font-semibold text-lg mb-1">Simple Scribbles Prd</h3>
181
+ <div class="note-actions opacity-0 transition-opacity duration-200 flex space-x-2">
182
+ <button class="text-gray-400 hover:text-blue-400">
183
+ <i class="fas fa-edit"></i>
184
+ </button>
185
+ <button class="text-gray-400 hover:text-red-400">
186
+ <i class="fas fa-trash"></i>
187
+ </button>
188
+ </div>
189
+ </div>
190
+ <div class="text-sm text-gray-400 mb-2">Product requirement document</div>
191
+ <div class="text-xs text-gray-500">📝 Product Requirements Document (PRD) Project Name: Simple Scribbles Author: Shannon (Queen Shazza) Date: July 21, 2025 Version: 1.0 MVP Status: In development 1. 🌟 Purpose & Goals Objective: Build a clean,...</div>
192
+ </div>
193
+ <div class="p-3 bg-gray-700 text-xs text-gray-400 flex justify-between items-center">
194
+ <span>Jul 26</span>
195
+ <div class="flex space-x-1">
196
+ <span class="px-2 py-1 bg-purple-600 rounded">Documentation</span>
197
+ </div>
198
+ </div>
199
+ </div>
200
+
201
+ <!-- Note Card 3 -->
202
+ <div class="note-card bg-gray-800 rounded-lg border border-gray-700 overflow-hidden hover:shadow-lg transition-shadow duration-200">
203
+ <div class="p-4 border-b border-gray-700">
204
+ <div class="flex justify-between items-start">
205
+ <h3 class="font-semibold text-lg mb-1">Github Issues</h3>
206
+ <div class="note-actions opacity-0 transition-opacity duration-200 flex space-x-2">
207
+ <button class="text-gray-400 hover:text-blue-400">
208
+ <i class="fas fa-edit"></i>
209
+ </button>
210
+ <button class="text-gray-400 hover:text-red-400">
211
+ <i class="fas fa-trash"></i>
212
+ </button>
213
+ </div>
214
+ </div>
215
+ <div class="text-sm text-gray-400 mb-2">GitHub Issues</div>
216
+ <div class="text-xs text-gray-500">✅ Main GitHub Issues: Each corresponds to a section of the product from planning to polish: [x] Project Initialization [x] UI/UX Design</div>
217
+ </div>
218
+ <div class="p-3 bg-gray-700 text-xs text-gray-400 flex justify-between items-center">
219
+ <span>Jul 26</span>
220
+ <div class="flex space-x-1">
221
+ <span class="px-2 py-1 bg-green-600 rounded">Feature</span>
222
+ <span class="px-2 py-1 bg-blue-600 rounded">MVP</span>
223
+ </div>
224
+ </div>
225
+ </div>
226
+
227
+ <!-- Note Card 4 -->
228
+ <div class="note-card bg-gray-800 rounded-lg border border-gray-700 overflow-hidden hover:shadow-lg transition-shadow duration-200">
229
+ <div class="p-4 border-b border-gray-700">
230
+ <div class="flex justify-between items-start">
231
+ <h3 class="font-semibold text-lg mb-1">GitHub Issues for Simple Scribbles MVP</h3>
232
+ <div class="note-actions opacity-0 transition-opacity duration-200 flex space-x-2">
233
+ <button class="text-gray-400 hover:text-blue-400">
234
+ <i class="fas fa-edit"></i>
235
+ </button>
236
+ <button class="text-gray-400 hover:text-red-400">
237
+ <i class="fas fa-trash"></i>
238
+ </button>
239
+ </div>
240
+ </div>
241
+ <div class="text-sm text-gray-400 mb-2">GitHub Issues</div>
242
+ <div class="text-xs text-gray-500">✅ Create/Edit Notes Title: Create & Edit Notes Functionality Labels: feature, mvp, editor Description: Implement a text editor component that allows users to write</div>
243
+ </div>
244
+ <div class="p-3 bg-gray-700 text-xs text-gray-400 flex justify-between items-center">
245
+ <span>Jul 26</span>
246
+ <div class="flex space-x-1">
247
+ <span class="px-2 py-1 bg-green-600 rounded">Feature</span>
248
+ <span class="px-2 py-1 bg-blue-600 rounded">MVP</span>
249
+ </div>
250
+ </div>
251
+ </div>
252
+
253
+ <!-- Note Card 5 -->
254
+ <div class="note-card bg-gray-800 rounded-lg border border-gray-700 overflow-hidden hover:shadow-lg transition-shadow duration-200">
255
+ <div class="p-4 border-b border-gray-700">
256
+ <div class="flex justify-between items-start">
257
+ <h3 class="font-semibold text-lg mb-1">Simple Scribbles - Waitlist & Demo</h3>
258
+ <div class="note-actions opacity-0 transition-opacity duration-200 flex space-x-2">
259
+ <button class="text-gray-400 hover:text-blue-400">
260
+ <i class="fas fa-edit"></i>
261
+ </button>
262
+ <button class="text-gray-400 hover:text-red-400">
263
+ <i class="fas fa-trash"></i>
264
+ </button>
265
+ </div>
266
+ </div>
267
+ <div class="text-sm text-gray-400 mb-2">readme</div>
268
+ <div class="text-xs text-gray-500">A comprehensive waitlist system and product demo for Simple Scribbles, an intuitive, simple and minimal note-taking application for busy professionals</div>
269
+ </div>
270
+ <div class="p-3 bg-gray-700 text-xs text-gray-400 flex justify-between items-center">
271
+ <span>Jul 24</span>
272
+ <div class="flex space-x-1">
273
+ <span class="px-2 py-1 bg-purple-600 rounded">Documentation</span>
274
+ </div>
275
+ </div>
276
+ </div>
277
+
278
+ <!-- Note Card 6 -->
279
+ <div class="note-card bg-gray-800 rounded-lg border border-gray-700 overflow-hidden hover:shadow-lg transition-shadow duration-200">
280
+ <div class="p-4 border-b border-gray-700">
281
+ <div class="flex justify-between items-start">
282
+ <h3 class="font-semibold text-lg mb-1">Simple Scribbles Plan</h3>
283
+ <div class="note-actions opacity-0 transition-opacity duration-200 flex space-x-2">
284
+ <button class="text-gray-400 hover:text-blue-400">
285
+ <i class="fas fa-edit"></i>
286
+ </button>
287
+ <button class="text-gray-400 hover:text-red-400">
288
+ <i class="fas fa-trash"></i>
289
+ </button>
290
+ </div>
291
+ </div>
292
+ <div class="text-sm text-gray-400 mb-2">readme</div>
293
+ <div class="text-xs text-gray-500">📝 Phase 1: Discovery & Planning (2 weeks) Task Deliverable Owner • Define vision & goals Project Vision Doc You / PM • User research & personas 3 User Personas + Pain Points You • Feature backlog & user stories</div>
294
+ </div>
295
+ <div class="p-3 bg-gray-700 text-xs text-gray-400 flex justify-between items-center">
296
+ <span>Jul 23</span>
297
+ <div class="flex space-x-1">
298
+ <span class="px-2 py-1 bg-purple-600 rounded">Documentation</span>
299
+ </div>
300
+ </div>
301
+ </div>
302
+ </div>
303
+ </div>
304
+ </div>
305
+
306
+ <!-- Floating Action Button -->
307
+ <div class="absolute bottom-6 right-6">
308
+ <button class="w-14 h-14 bg-blue-600 hover:bg-blue-700 text-white rounded-full shadow-lg flex items-center justify-center">
309
+ <i class="fas fa-plus text-xl"></i>
310
+ </button>
311
+ </div>
312
+ </div>
313
+
314
+ <script>
315
+ // Simple script to handle note selection
316
+ document.addEventListener('DOMContentLoaded', function() {
317
+ const noteCards = document.querySelectorAll('.note-card');
318
+
319
+ noteCards.forEach(card => {
320
+ card.addEventListener('click', function(e) {
321
+ // Don't trigger if clicking on action buttons
322
+ if (e.target.closest('.note-actions')) {
323
+ return;
324
+ }
325
+
326
+ // Remove active class from all cards
327
+ noteCards.forEach(c => c.classList.remove('border-blue-500'));
328
+
329
+ // Add active class to clicked card
330
+ this.classList.add('border-blue-500');
331
+ });
332
+ });
333
+
334
+ // Handle sidebar item clicks
335
+ const sidebarItems = document.querySelectorAll('.sidebar-item');
336
+ sidebarItems.forEach(item => {
337
+ item.addEventListener('click', function() {
338
+ sidebarItems.forEach(i => i.classList.remove('active'));
339
+ this.classList.add('active');
340
+ });
341
+ });
342
+ });
343
+ </script>
344
+ <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=shazzar00ni/note-app-example" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
345
+ </html>