File size: 19,698 Bytes
7649866
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Simple Scribbles - Notebook Upgrade</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .note-card:hover .note-actions {
            opacity: 1;
        }
        .sidebar-item:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .sidebar-item.active {
            background-color: rgba(255, 255, 255, 0.2);
            border-left: 3px solid white;
        }
        .search-input:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
        }
        .markdown-content h1 {
            font-size: 1.5rem;
            font-weight: bold;
            margin: 1rem 0;
        }
        .markdown-content h2 {
            font-size: 1.25rem;
            font-weight: bold;
            margin: 0.75rem 0;
        }
        .markdown-content p {
            margin: 0.5rem 0;
        }
        .markdown-content ul {
            list-style-type: disc;
            margin-left: 1.5rem;
        }
    </style>
</head>
<body class="bg-gray-900 text-gray-100 flex h-screen overflow-hidden">
    <!-- Sidebar -->
    <div class="w-64 bg-gray-800 flex flex-col border-r border-gray-700">
        <div class="p-4 border-b border-gray-700">
            <div class="flex items-center justify-between">
                <h1 class="text-xl font-bold flex items-center">
                    <i class="fas fa-book-open mr-2"></i> Simple Scribbles
                </h1>
                <button class="text-gray-400 hover:text-white">
                    <i class="fas fa-ellipsis-h"></i>
                </button>
            </div>
        </div>

        <div class="p-4">
            <button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-lg flex items-center justify-center">
                <i class="fas fa-plus mr-2"></i> New Note
            </button>
        </div>

        <div class="px-4 mb-4">
            <div class="relative">
                <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">
                <i class="fas fa-search absolute left-3 top-3 text-gray-400"></i>
            </div>
        </div>

        <div class="flex-1 overflow-y-auto">
            <div class="mb-6">
                <div class="px-4 py-2 text-gray-400 uppercase text-xs font-semibold">Notebooks</div>
                <div class="sidebar-item active">
                    <a href="#" class="block px-4 py-2 text-white flex items-center">
                        <i class="fas fa-book mr-2"></i> Simple Scribbles
                    </a>
                </div>
                <div class="sidebar-item">
                    <a href="#" class="block px-4 py-2 text-gray-300 hover:text-white flex items-center">
                        <i class="fas fa-book mr-2"></i> Passwords
                    </a>
                </div>
                <div class="sidebar-item">
                    <a href="#" class="block px-4 py-2 text-gray-300 hover:text-white flex items-center">
                        <i class="fas fa-book mr-2"></i> Saved Links
                    </a>
                </div>
                <div class="sidebar-item">
                    <a href="#" class="block px-4 py-2 text-gray-300 hover:text-white flex items-center">
                        <i class="fas fa-book mr-2"></i> Shannons Notes
                    </a>
                </div>
            </div>

            <div class="mb-6">
                <div class="px-4 py-2 text-gray-400 uppercase text-xs font-semibold">Tags</div>
                <div class="sidebar-item">
                    <a href="#" class="block px-4 py-2 text-gray-300 hover:text-white flex items-center">
                        <i class="fas fa-tag mr-2 text-blue-400"></i> MVP
                    </a>
                </div>
                <div class="sidebar-item">
                    <a href="#" class="block px-4 py-2 text-gray-300 hover:text-white flex items-center">
                        <i class="fas fa-tag mr-2 text-green-400"></i> Feature
                    </a>
                </div>
                <div class="sidebar-item">
                    <a href="#" class="block px-4 py-2 text-gray-300 hover:text-white flex items-center">
                        <i class="fas fa-tag mr-2 text-purple-400"></i> Documentation
                    </a>
                </div>
            </div>
        </div>

        <div class="p-4 border-t border-gray-700">
            <div class="flex items-center">
                <div class="w-8 h-8 rounded-full bg-blue-600 flex items-center justify-center text-white font-semibold">S</div>
                <div class="ml-3">
                    <div class="text-sm font-medium">Shannon</div>
                    <div class="text-xs text-gray-400">Queen Shazza</div>
                </div>
            </div>
        </div>
    </div>

    <!-- Main Content -->
    <div class="flex-1 flex flex-col overflow-hidden">
        <!-- Header -->
        <div class="bg-gray-800 border-b border-gray-700 p-4 flex items-center justify-between">
            <div class="flex items-center">
                <h2 class="text-lg font-semibold">Simple Scribbles</h2>
                <span class="ml-2 bg-gray-700 text-xs px-2 py-1 rounded">8 Notes</span>
            </div>
            <div class="flex items-center space-x-4">
                <button class="text-gray-400 hover:text-white">
                    <i class="fas fa-sort-alpha-down"></i>
                </button>
                <button class="text-gray-400 hover:text-white">
                    <i class="fas fa-filter"></i>
                </button>
                <button class="text-gray-400 hover:text-white">
                    <i class="fas fa-search"></i>
                </button>
            </div>
        </div>

        <!-- Notes List -->
        <div class="flex-1 overflow-y-auto">
            <div class="p-4">
                <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
                    <!-- Note Card 1 -->
                    <div class="note-card bg-gray-800 rounded-lg border border-gray-700 overflow-hidden hover:shadow-lg transition-shadow duration-200">
                        <div class="p-4 border-b border-gray-700">
                            <div class="flex justify-between items-start">
                                <h3 class="font-semibold text-lg mb-1">Paperlyte Landing Page</h3>
                                <div class="note-actions opacity-0 transition-opacity duration-200 flex space-x-2">
                                    <button class="text-gray-400 hover:text-blue-400">
                                        <i class="fas fa-edit"></i>
                                    </button>
                                    <button class="text-gray-400 hover:text-red-400">
                                        <i class="fas fa-trash"></i>
                                    </button>
                                </div>
                            </div>
                            <div class="text-sm text-gray-400 mb-2">Paperlyte Landing Page</div>
                            <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>
                        </div>
                        <div class="p-3 bg-gray-700 text-xs text-gray-400 flex justify-between items-center">
                            <span>Cal Jul 31</span>
                            <div class="flex space-x-1">
                                <span class="px-2 py-1 bg-gray-600 rounded">Landing</span>
                            </div>
                        </div>
                    </div>

                    <!-- Note Card 2 -->
                    <div class="note-card bg-gray-800 rounded-lg border border-gray-700 overflow-hidden hover:shadow-lg transition-shadow duration-200">
                        <div class="p-4 border-b border-gray-700">
                            <div class="flex justify-between items-start">
                                <h3 class="font-semibold text-lg mb-1">Simple Scribbles Prd</h3>
                                <div class="note-actions opacity-0 transition-opacity duration-200 flex space-x-2">
                                    <button class="text-gray-400 hover:text-blue-400">
                                        <i class="fas fa-edit"></i>
                                    </button>
                                    <button class="text-gray-400 hover:text-red-400">
                                        <i class="fas fa-trash"></i>
                                    </button>
                                </div>
                            </div>
                            <div class="text-sm text-gray-400 mb-2">Product requirement document</div>
                            <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>
                        </div>
                        <div class="p-3 bg-gray-700 text-xs text-gray-400 flex justify-between items-center">
                            <span>Jul 26</span>
                            <div class="flex space-x-1">
                                <span class="px-2 py-1 bg-purple-600 rounded">Documentation</span>
                            </div>
                        </div>
                    </div>

                    <!-- Note Card 3 -->
                    <div class="note-card bg-gray-800 rounded-lg border border-gray-700 overflow-hidden hover:shadow-lg transition-shadow duration-200">
                        <div class="p-4 border-b border-gray-700">
                            <div class="flex justify-between items-start">
                                <h3 class="font-semibold text-lg mb-1">Github Issues</h3>
                                <div class="note-actions opacity-0 transition-opacity duration-200 flex space-x-2">
                                    <button class="text-gray-400 hover:text-blue-400">
                                        <i class="fas fa-edit"></i>
                                    </button>
                                    <button class="text-gray-400 hover:text-red-400">
                                        <i class="fas fa-trash"></i>
                                    </button>
                                </div>
                            </div>
                            <div class="text-sm text-gray-400 mb-2">GitHub Issues</div>
                            <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>
                        </div>
                        <div class="p-3 bg-gray-700 text-xs text-gray-400 flex justify-between items-center">
                            <span>Jul 26</span>
                            <div class="flex space-x-1">
                                <span class="px-2 py-1 bg-green-600 rounded">Feature</span>
                                <span class="px-2 py-1 bg-blue-600 rounded">MVP</span>
                            </div>
                        </div>
                    </div>

                    <!-- Note Card 4 -->
                    <div class="note-card bg-gray-800 rounded-lg border border-gray-700 overflow-hidden hover:shadow-lg transition-shadow duration-200">
                        <div class="p-4 border-b border-gray-700">
                            <div class="flex justify-between items-start">
                                <h3 class="font-semibold text-lg mb-1">GitHub Issues for Simple Scribbles MVP</h3>
                                <div class="note-actions opacity-0 transition-opacity duration-200 flex space-x-2">
                                    <button class="text-gray-400 hover:text-blue-400">
                                        <i class="fas fa-edit"></i>
                                    </button>
                                    <button class="text-gray-400 hover:text-red-400">
                                        <i class="fas fa-trash"></i>
                                    </button>
                                </div>
                            </div>
                            <div class="text-sm text-gray-400 mb-2">GitHub Issues</div>
                            <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>
                        </div>
                        <div class="p-3 bg-gray-700 text-xs text-gray-400 flex justify-between items-center">
                            <span>Jul 26</span>
                            <div class="flex space-x-1">
                                <span class="px-2 py-1 bg-green-600 rounded">Feature</span>
                                <span class="px-2 py-1 bg-blue-600 rounded">MVP</span>
                            </div>
                        </div>
                    </div>

                    <!-- Note Card 5 -->
                    <div class="note-card bg-gray-800 rounded-lg border border-gray-700 overflow-hidden hover:shadow-lg transition-shadow duration-200">
                        <div class="p-4 border-b border-gray-700">
                            <div class="flex justify-between items-start">
                                <h3 class="font-semibold text-lg mb-1">Simple Scribbles - Waitlist & Demo</h3>
                                <div class="note-actions opacity-0 transition-opacity duration-200 flex space-x-2">
                                    <button class="text-gray-400 hover:text-blue-400">
                                        <i class="fas fa-edit"></i>
                                    </button>
                                    <button class="text-gray-400 hover:text-red-400">
                                        <i class="fas fa-trash"></i>
                                    </button>
                                </div>
                            </div>
                            <div class="text-sm text-gray-400 mb-2">readme</div>
                            <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>
                        </div>
                        <div class="p-3 bg-gray-700 text-xs text-gray-400 flex justify-between items-center">
                            <span>Jul 24</span>
                            <div class="flex space-x-1">
                                <span class="px-2 py-1 bg-purple-600 rounded">Documentation</span>
                            </div>
                        </div>
                    </div>

                    <!-- Note Card 6 -->
                    <div class="note-card bg-gray-800 rounded-lg border border-gray-700 overflow-hidden hover:shadow-lg transition-shadow duration-200">
                        <div class="p-4 border-b border-gray-700">
                            <div class="flex justify-between items-start">
                                <h3 class="font-semibold text-lg mb-1">Simple Scribbles Plan</h3>
                                <div class="note-actions opacity-0 transition-opacity duration-200 flex space-x-2">
                                    <button class="text-gray-400 hover:text-blue-400">
                                        <i class="fas fa-edit"></i>
                                    </button>
                                    <button class="text-gray-400 hover:text-red-400">
                                        <i class="fas fa-trash"></i>
                                    </button>
                                </div>
                            </div>
                            <div class="text-sm text-gray-400 mb-2">readme</div>
                            <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>
                        </div>
                        <div class="p-3 bg-gray-700 text-xs text-gray-400 flex justify-between items-center">
                            <span>Jul 23</span>
                            <div class="flex space-x-1">
                                <span class="px-2 py-1 bg-purple-600 rounded">Documentation</span>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>

        <!-- Floating Action Button -->
        <div class="absolute bottom-6 right-6">
            <button class="w-14 h-14 bg-blue-600 hover:bg-blue-700 text-white rounded-full shadow-lg flex items-center justify-center">
                <i class="fas fa-plus text-xl"></i>
            </button>
        </div>
    </div>

    <script>
        // Simple script to handle note selection
        document.addEventListener('DOMContentLoaded', function() {
            const noteCards = document.querySelectorAll('.note-card');
            
            noteCards.forEach(card => {
                card.addEventListener('click', function(e) {
                    // Don't trigger if clicking on action buttons
                    if (e.target.closest('.note-actions')) {
                        return;
                    }
                    
                    // Remove active class from all cards
                    noteCards.forEach(c => c.classList.remove('border-blue-500'));
                    
                    // Add active class to clicked card
                    this.classList.add('border-blue-500');
                });
            });
            
            // Handle sidebar item clicks
            const sidebarItems = document.querySelectorAll('.sidebar-item');
            sidebarItems.forEach(item => {
                item.addEventListener('click', function() {
                    sidebarItems.forEach(i => i.classList.remove('active'));
                    this.classList.add('active');
                });
            });
        });
    </script>
<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>
</html>