commit 96f20148f6941c1e3cd24deaa6ae499da8a2f80c
Author: root <root@hub.scroll.pub>
Date: 2025-01-04 15:52:17 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..97a3d75
--- /dev/null
+++ b/body.html
@@ -0,0 +1,34 @@
+<header class="header">
+ <h1>My Toolkit</h1>
+ <p>A curated collection of essential tools for productivity and creativity.</p>
+</header>
+
+<main class="tool-grid">
+ <section class="tool-card">
+ <h2>Task Manager</h2>
+ <p>Organize your tasks and stay on top of your goals.</p>
+ <a href="/task-manager" class="tool-link">Go to Task Manager</a>
+ </section>
+
+ <section class="tool-card">
+ <h2>Note Taker</h2>
+ <p>Capture ideas and thoughts quickly and easily.</p>
+ <a href="/note-taker" class="tool-link">Go to Note Taker</a>
+ </section>
+
+ <section class="tool-card">
+ <h2>Code Snippet Library</h2>
+ <p>Store and organize your favorite code snippets.</p>
+ <a href="/code-snippets" class="tool-link">Go to Code Snippets</a>
+ </section>
+
+ <section class="tool-card">
+ <h2>Time Tracker</h2>
+ <p>Track your time and improve productivity.</p>
+ <a href="/time-tracker" class="tool-link">Go to Time Tracker</a>
+ </section>
+</main>
+
+<footer class="footer">
+ <p>Built with ❤️ by [Your Name]</p>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..cfeca8b
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://toolkit.scroll.pub
+metaTags
+editButton /edit.html
+title My Toolkit
+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..cb8275b
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "3a4adee5-234d-4b86-801b-544486a26b92",
+ "object": "chat.completion",
+ "created": 1736005917,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\ntoolkit.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://toolkit.scroll.pub\nmetaTags\neditButton /edit.html\ntitle My Toolkit\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header class=\"header\">\n <h1>My Toolkit</h1>\n <p>A curated collection of essential tools for productivity and creativity.</p>\n</header>\n\n<main class=\"tool-grid\">\n <section class=\"tool-card\">\n <h2>Task Manager</h2>\n <p>Organize your tasks and stay on top of your goals.</p>\n <a href=\"/task-manager\" class=\"tool-link\">Go to Task Manager</a>\n </section>\n\n <section class=\"tool-card\">\n <h2>Note Taker</h2>\n <p>Capture ideas and thoughts quickly and easily.</p>\n <a href=\"/note-taker\" class=\"tool-link\">Go to Note Taker</a>\n </section>\n\n <section class=\"tool-card\">\n <h2>Code Snippet Library</h2>\n <p>Store and organize your favorite code snippets.</p>\n <a href=\"/code-snippets\" class=\"tool-link\">Go to Code Snippets</a>\n </section>\n\n <section class=\"tool-card\">\n <h2>Time Tracker</h2>\n <p>Track your time and improve productivity.</p>\n <a href=\"/time-tracker\" class=\"tool-link\">Go to Time Tracker</a>\n </section>\n</main>\n\n<footer class=\"footer\">\n <p>Built with ❤️ by [Your Name]</p>\n</footer>\n---style.css---\n:root {\n --primary-color: #4a90e2;\n --secondary-color: #f5f5f5;\n --text-color: #333;\n --border-radius: 8px;\n --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\nbody {\n font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n line-height: 1.6;\n margin: 0;\n padding: 0;\n color: var(--text-color);\n background-color: var(--secondary-color);\n}\n\n.header {\n text-align: center;\n padding: 2rem;\n background-color: var(--primary-color);\n color: white;\n}\n\n.header h1 {\n margin: 0;\n font-size: 2.5rem;\n}\n\n.header p {\n margin: 0.5rem 0 0;\n font-size: 1.2rem;\n}\n\n.tool-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 1.5rem;\n padding: 2rem;\n}\n\n.tool-card {\n background: white;\n padding: 1.5rem;\n border-radius: var(--border-radius);\n box-shadow: var(--box-shadow);\n transition: transform 0.3s ease, box-shadow 0.3s ease;\n}\n\n.tool-card:hover {\n transform: translateY(-5px);\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);\n}\n\n.tool-card h2 {\n margin-top: 0;\n font-size: 1.5rem;\n color: var(--primary-color);\n}\n\n.tool-card p {\n font-size: 1rem;\n color: #666;\n}\n\n.tool-link {\n display: inline-block;\n margin-top: 1rem;\n padding: 0.5rem 1rem;\n background-color: var(--primary-color);\n color: white;\n text-decoration: none;\n border-radius: var(--border-radius);\n transition: background-color 0.3s ease;\n}\n\n.tool-link:hover {\n background-color: darken(var(--primary-color), 10%);\n}\n\n.footer {\n text-align: center;\n padding: 1rem;\n background-color: var(--primary-color);\n color: white;\n margin-top: 2rem;\n}\n\n@media (max-width: 600px) {\n .header h1 {\n font-size: 2rem;\n }\n\n .header p {\n font-size: 1rem;\n }\n\n .tool-grid {\n grid-template-columns: 1fr;\n padding: 1rem;\n }\n}\n---script.js---\n// Add any interactive functionality here if needed\ndocument.addEventListener('DOMContentLoaded', function() {\n // Example: Add a class to the body when the page loads\n document.body.classList.add('loaded');\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 255,
+ "completion_tokens": 1033,
+ "total_tokens": 1288,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 255
+ },
+ "system_fingerprint": "fp_3a5770e1b4"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..ce59e9b
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# toolkit.scroll.pub
+Website generated by DeepSeek from prompt: 参考这个https://easytidy.luckyits.com/ 排版,我需要一个个人的工具集合页面
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..d25a3d9
--- /dev/null
+++ b/script.js
@@ -0,0 +1,5 @@
+// Add any interactive functionality here if needed
+document.addEventListener('DOMContentLoaded', function() {
+ // Example: Add a class to the body when the page loads
+ document.body.classList.add('loaded');
+});
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..9009e2b
--- /dev/null
+++ b/style.css
@@ -0,0 +1,102 @@
+:root {
+ --primary-color: #4a90e2;
+ --secondary-color: #f5f5f5;
+ --text-color: #333;
+ --border-radius: 8px;
+ --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+}
+
+body {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ line-height: 1.6;
+ margin: 0;
+ padding: 0;
+ color: var(--text-color);
+ background-color: var(--secondary-color);
+}
+
+.header {
+ text-align: center;
+ padding: 2rem;
+ background-color: var(--primary-color);
+ color: white;
+}
+
+.header h1 {
+ margin: 0;
+ font-size: 2.5rem;
+}
+
+.header p {
+ margin: 0.5rem 0 0;
+ font-size: 1.2rem;
+}
+
+.tool-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1.5rem;
+ padding: 2rem;
+}
+
+.tool-card {
+ background: white;
+ padding: 1.5rem;
+ border-radius: var(--border-radius);
+ box-shadow: var(--box-shadow);
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
+}
+
+.tool-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
+}
+
+.tool-card h2 {
+ margin-top: 0;
+ font-size: 1.5rem;
+ color: var(--primary-color);
+}
+
+.tool-card p {
+ font-size: 1rem;
+ color: #666;
+}
+
+.tool-link {
+ display: inline-block;
+ margin-top: 1rem;
+ padding: 0.5rem 1rem;
+ background-color: var(--primary-color);
+ color: white;
+ text-decoration: none;
+ border-radius: var(--border-radius);
+ transition: background-color 0.3s ease;
+}
+
+.tool-link:hover {
+ background-color: darken(var(--primary-color), 10%);
+}
+
+.footer {
+ text-align: center;
+ padding: 1rem;
+ background-color: var(--primary-color);
+ color: white;
+ margin-top: 2rem;
+}
+
+@media (max-width: 600px) {
+ .header h1 {
+ font-size: 2rem;
+ }
+
+ .header p {
+ font-size: 1rem;
+ }
+
+ .tool-grid {
+ grid-template-columns: 1fr;
+ padding: 1rem;
+ }
+}
\ No newline at end of file