commit 10def9c51d08abb652c164f604b40cf10095236f
Author: root <root@hub.scroll.pub>
Date: 2024-12-28 14:00:05 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..2fbead4
--- /dev/null
+++ b/body.html
@@ -0,0 +1,21 @@
+<header>
+ <h1>RetroNotes</h1>
+ <p>Your advanced, interactive note-taking dashboard</p>
+</header>
+
+<main>
+ <section class="dashboard">
+ <div class="controls">
+ <button id="newNote" class="retro-btn">+ New Note</button>
+ <input type="text" id="search" placeholder="Search notes..." class="retro-input">
+ </div>
+
+ <div class="notes-grid">
+ <!-- Notes will be dynamically inserted here -->
+ </div>
+ </section>
+</main>
+
+<footer>
+ <p>Keep your thoughts organized in style</p>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..66782f1
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://retronotes.scroll.pub
+metaTags
+editButton /edit.html
+title RetroNotes - Advanced Note Taking Dashboard
+style.css
+body.html
+script.js
\ No newline at end of file
diff --git a/prompt.json b/prompt.json
new file mode 100644
index 0000000..b048687
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "ce7cca14-3cb0-4912-a7ed-d18ad2b9ef50",
+ "object": "chat.completion",
+ "created": 1735394389,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nretronotes.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://retronotes.scroll.pub\nmetaTags\neditButton /edit.html\ntitle RetroNotes - Advanced Note Taking Dashboard\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>RetroNotes</h1>\n <p>Your advanced, interactive note-taking dashboard</p>\n</header>\n\n<main>\n <section class=\"dashboard\">\n <div class=\"controls\">\n <button id=\"newNote\" class=\"retro-btn\">+ New Note</button>\n <input type=\"text\" id=\"search\" placeholder=\"Search notes...\" class=\"retro-input\">\n </div>\n \n <div class=\"notes-grid\">\n <!-- Notes will be dynamically inserted here -->\n </div>\n </section>\n</main>\n\n<footer>\n <p>Keep your thoughts organized in style</p>\n</footer>\n---style.css---\n:root {\n --retro-primary: #ff6f61;\n --retro-secondary: #6b5b95;\n --retro-bg: #f4f4f4;\n --retro-text: #333;\n --retro-border: #ddd;\n}\n\nbody {\n font-family: 'Courier New', monospace;\n background: var(--retro-bg);\n color: var(--retro-text);\n margin: 0;\n padding: 20px;\n line-height: 1.6;\n}\n\nheader {\n text-align: center;\n padding: 2rem 0;\n border-bottom: 3px solid var(--retro-primary);\n}\n\nh1 {\n color: var(--retro-secondary);\n font-size: 2.5rem;\n margin: 0;\n}\n\n.dashboard {\n max-width: 1200px;\n margin: 2rem auto;\n padding: 1rem;\n}\n\n.controls {\n display: flex;\n gap: 1rem;\n margin-bottom: 2rem;\n}\n\n.retro-btn {\n background: var(--retro-primary);\n color: white;\n border: none;\n padding: 0.5rem 1rem;\n font-size: 1rem;\n cursor: pointer;\n transition: background 0.3s ease;\n}\n\n.retro-btn:hover {\n background: var(--retro-secondary);\n}\n\n.retro-input {\n flex-grow: 1;\n padding: 0.5rem;\n border: 2px solid var(--retro-border);\n font-family: inherit;\n}\n\n.notes-grid {\n display: grid;\n grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));\n gap: 1rem;\n}\n\n.note-card {\n background: white;\n padding: 1rem;\n border: 2px solid var(--retro-border);\n box-shadow: 3px 3px 0 var(--retro-primary);\n transition: transform 0.2s ease;\n}\n\n.note-card:hover {\n transform: translate(-2px, -2px);\n}\n\nfooter {\n text-align: center;\n padding: 2rem 0;\n margin-top: 2rem;\n border-top: 3px solid var(--retro-secondary);\n}\n\n@media (max-width: 768px) {\n .controls {\n flex-direction: column;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', function() {\n const notesGrid = document.querySelector('.notes-grid');\n const newNoteBtn = document.getElementById('newNote');\n const searchInput = document.getElementById('search');\n\n // Sample notes data\n let notes = [\n { id: 1, title: 'Meeting Notes', content: 'Discussed project timeline...' },\n { id: 2, title: 'Shopping List', content: 'Milk, Eggs, Bread...' }\n ];\n\n // Render notes\n function renderNotes(filter = '') {\n notesGrid.innerHTML = '';\n const filteredNotes = notes.filter(note => \n note.title.toLowerCase().includes(filter.toLowerCase()) ||\n note.content.toLowerCase().includes(filter.toLowerCase())\n );\n\n filteredNotes.forEach(note => {\n const noteCard = document.createElement('div');\n noteCard.className = 'note-card';\n noteCard.innerHTML = `\n <h3>${note.title}</h3>\n <p>${note.content}</p>\n `;\n notesGrid.appendChild(noteCard);\n });\n }\n\n // Add new note\n newNoteBtn.addEventListener('click', () => {\n const newNote = {\n id: Date.now(),\n title: 'New Note',\n content: 'Start typing your note here...'\n };\n notes.unshift(newNote);\n renderNotes();\n });\n\n // Search notes\n searchInput.addEventListener('input', (e) => {\n renderNotes(e.target.value);\n });\n\n // Initial render\n renderNotes();\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 242,
+ "completion_tokens": 1069,
+ "total_tokens": 1311,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 242
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..70df049
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# retronotes.scroll.pub
+Website generated by DeepSeek from prompt: an interactive retro dashboard for advanced note taking
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..fbd24bb
--- /dev/null
+++ b/script.js
@@ -0,0 +1,49 @@
+document.addEventListener('DOMContentLoaded', function() {
+ const notesGrid = document.querySelector('.notes-grid');
+ const newNoteBtn = document.getElementById('newNote');
+ const searchInput = document.getElementById('search');
+
+ // Sample notes data
+ let notes = [
+ { id: 1, title: 'Meeting Notes', content: 'Discussed project timeline...' },
+ { id: 2, title: 'Shopping List', content: 'Milk, Eggs, Bread...' }
+ ];
+
+ // Render notes
+ function renderNotes(filter = '') {
+ notesGrid.innerHTML = '';
+ const filteredNotes = notes.filter(note =>
+ note.title.toLowerCase().includes(filter.toLowerCase()) ||
+ note.content.toLowerCase().includes(filter.toLowerCase())
+ );
+
+ filteredNotes.forEach(note => {
+ const noteCard = document.createElement('div');
+ noteCard.className = 'note-card';
+ noteCard.innerHTML = `
+ <h3>${note.title}</h3>
+ <p>${note.content}</p>
+ `;
+ notesGrid.appendChild(noteCard);
+ });
+ }
+
+ // Add new note
+ newNoteBtn.addEventListener('click', () => {
+ const newNote = {
+ id: Date.now(),
+ title: 'New Note',
+ content: 'Start typing your note here...'
+ };
+ notes.unshift(newNote);
+ renderNotes();
+ });
+
+ // Search notes
+ searchInput.addEventListener('input', (e) => {
+ renderNotes(e.target.value);
+ });
+
+ // Initial render
+ renderNotes();
+});
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..4d8da3f
--- /dev/null
+++ b/style.css
@@ -0,0 +1,92 @@
+:root {
+ --retro-primary: #ff6f61;
+ --retro-secondary: #6b5b95;
+ --retro-bg: #f4f4f4;
+ --retro-text: #333;
+ --retro-border: #ddd;
+}
+
+body {
+ font-family: 'Courier New', monospace;
+ background: var(--retro-bg);
+ color: var(--retro-text);
+ margin: 0;
+ padding: 20px;
+ line-height: 1.6;
+}
+
+header {
+ text-align: center;
+ padding: 2rem 0;
+ border-bottom: 3px solid var(--retro-primary);
+}
+
+h1 {
+ color: var(--retro-secondary);
+ font-size: 2.5rem;
+ margin: 0;
+}
+
+.dashboard {
+ max-width: 1200px;
+ margin: 2rem auto;
+ padding: 1rem;
+}
+
+.controls {
+ display: flex;
+ gap: 1rem;
+ margin-bottom: 2rem;
+}
+
+.retro-btn {
+ background: var(--retro-primary);
+ color: white;
+ border: none;
+ padding: 0.5rem 1rem;
+ font-size: 1rem;
+ cursor: pointer;
+ transition: background 0.3s ease;
+}
+
+.retro-btn:hover {
+ background: var(--retro-secondary);
+}
+
+.retro-input {
+ flex-grow: 1;
+ padding: 0.5rem;
+ border: 2px solid var(--retro-border);
+ font-family: inherit;
+}
+
+.notes-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
+ gap: 1rem;
+}
+
+.note-card {
+ background: white;
+ padding: 1rem;
+ border: 2px solid var(--retro-border);
+ box-shadow: 3px 3px 0 var(--retro-primary);
+ transition: transform 0.2s ease;
+}
+
+.note-card:hover {
+ transform: translate(-2px, -2px);
+}
+
+footer {
+ text-align: center;
+ padding: 2rem 0;
+ margin-top: 2rem;
+ border-top: 3px solid var(--retro-secondary);
+}
+
+@media (max-width: 768px) {
+ .controls {
+ flex-direction: column;
+ }
+}
\ No newline at end of file