commit 7b68c0a9d442c415adecf92e41a939dcba14af62
Author: root <root@hub.scroll.pub> Date: 2024-12-28 04:46:11 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..4005c8d --- /dev/null +++ b/body.html @@ -0,0 +1,31 @@ +<header> + <h1>Happy Birthday, Little Star! 🌟</h1> + <p>Celebrating the first year of our shining star!</p> +</header> + +<main> + <section class="hero"> + <div class="hero-content"> + <h2>One Year of Joy</h2> + <p>From your first smile to your first steps, every moment has been magical.</p> + </div> + </section> + + <section class="gallery"> + <h2>Memories to Cherish</h2> + <div class="gallery-grid"> + <div class="gallery-item" style="background-image: url('images/memory1.jpg');"></div> + <div class="gallery-item" style="background-image: url('images/memory2.jpg');"></div> + <div class="gallery-item" style="background-image: url('images/memory3.jpg');"></div> + </div> + </section> + + <section class="wishes"> + <h2>Wishes for the Future</h2> + <p>May your life be filled with love, laughter, and endless adventures.</p> + </section> +</main> + +<footer> + <p>Created with love by your family</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..a4cdaad --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://littlestar.scroll.pub +metaTags +editButton /edit.html +title Happy Birthday, Little Star! +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..652c6c4 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "d9b0580f-83cc-4af9-b606-0d0ac2397871", + "object": "chat.completion", + "created": 1735361158, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nlittlestar.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://littlestar.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Happy Birthday, Little Star!\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>Happy Birthday, Little Star! 🌟</h1>\n <p>Celebrating the first year of our shining star!</p>\n</header>\n\n<main>\n <section class=\"hero\">\n <div class=\"hero-content\">\n <h2>One Year of Joy</h2>\n <p>From your first smile to your first steps, every moment has been magical.</p>\n </div>\n </section>\n\n <section class=\"gallery\">\n <h2>Memories to Cherish</h2>\n <div class=\"gallery-grid\">\n <div class=\"gallery-item\" style=\"background-image: url('images/memory1.jpg');\"></div>\n <div class=\"gallery-item\" style=\"background-image: url('images/memory2.jpg');\"></div>\n <div class=\"gallery-item\" style=\"background-image: url('images/memory3.jpg');\"></div>\n </div>\n </section>\n\n <section class=\"wishes\">\n <h2>Wishes for the Future</h2>\n <p>May your life be filled with love, laughter, and endless adventures.</p>\n </section>\n</main>\n\n<footer>\n <p>Created with love by your family</p>\n</footer>\n---style.css---\n:root {\n --primary-color: #ff6f61;\n --secondary-color: #ffcc5c;\n --background-color: #f4f4f4;\n --text-color: #333;\n --font-family: 'Arial', sans-serif;\n}\n\nbody {\n font-family: var(--font-family);\n color: var(--text-color);\n background-color: var(--background-color);\n margin: 0;\n padding: 0;\n line-height: 1.6;\n}\n\nheader {\n background: var(--primary-color);\n color: white;\n padding: 2rem;\n text-align: center;\n}\n\nheader h1 {\n margin: 0;\n font-size: 2.5rem;\n}\n\nheader p {\n margin: 0.5rem 0 0;\n font-size: 1.2rem;\n}\n\nmain {\n padding: 2rem;\n}\n\n.hero {\n background: var(--secondary-color);\n padding: 2rem;\n text-align: center;\n border-radius: 10px;\n margin-bottom: 2rem;\n}\n\n.hero h2 {\n margin: 0;\n font-size: 2rem;\n}\n\n.hero p {\n font-size: 1.2rem;\n}\n\n.gallery {\n margin-bottom: 2rem;\n}\n\n.gallery h2 {\n text-align: center;\n font-size: 2rem;\n margin-bottom: 1rem;\n}\n\n.gallery-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n gap: 1rem;\n}\n\n.gallery-item {\n height: 200px;\n background-size: cover;\n background-position: center;\n border-radius: 10px;\n}\n\n.wishes {\n text-align: center;\n padding: 2rem;\n background: var(--primary-color);\n color: white;\n border-radius: 10px;\n}\n\n.wishes h2 {\n margin: 0;\n font-size: 2rem;\n}\n\n.wishes p {\n font-size: 1.2rem;\n}\n\nfooter {\n text-align: center;\n padding: 1rem;\n background: var(--text-color);\n color: white;\n}\n\n@media (max-width: 768px) {\n header h1 {\n font-size: 2rem;\n }\n\n header p {\n font-size: 1rem;\n }\n\n .hero h2 {\n font-size: 1.5rem;\n }\n\n .hero p {\n font-size: 1rem;\n }\n\n .gallery h2 {\n font-size: 1.5rem;\n }\n\n .wishes h2 {\n font-size: 1.5rem;\n }\n\n .wishes p {\n font-size: 1rem;\n }\n}\n---script.js---\n// Add any interactive elements here if needed\ndocument.addEventListener('DOMContentLoaded', () => {\n console.log('Happy Birthday, Little Star!');\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 244, + "completion_tokens": 996, + "total_tokens": 1240, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 244 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..e9246a8 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# littlestar.scroll.pub +Website generated by DeepSeek from prompt: Make a happy website for my new year old daughter \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..ba6a21f --- /dev/null +++ b/script.js @@ -0,0 +1,4 @@ +// Add any interactive elements here if needed +document.addEventListener('DOMContentLoaded', () => { + console.log('Happy Birthday, Little Star!'); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..acd8dbf --- /dev/null +++ b/style.css @@ -0,0 +1,131 @@ +:root { + --primary-color: #ff6f61; + --secondary-color: #ffcc5c; + --background-color: #f4f4f4; + --text-color: #333; + --font-family: 'Arial', sans-serif; +} + +body { + font-family: var(--font-family); + color: var(--text-color); + background-color: var(--background-color); + margin: 0; + padding: 0; + line-height: 1.6; +} + +header { + background: var(--primary-color); + color: white; + padding: 2rem; + text-align: center; +} + +header h1 { + margin: 0; + font-size: 2.5rem; +} + +header p { + margin: 0.5rem 0 0; + font-size: 1.2rem; +} + +main { + padding: 2rem; +} + +.hero { + background: var(--secondary-color); + padding: 2rem; + text-align: center; + border-radius: 10px; + margin-bottom: 2rem; +} + +.hero h2 { + margin: 0; + font-size: 2rem; +} + +.hero p { + font-size: 1.2rem; +} + +.gallery { + margin-bottom: 2rem; +} + +.gallery h2 { + text-align: center; + font-size: 2rem; + margin-bottom: 1rem; +} + +.gallery-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + gap: 1rem; +} + +.gallery-item { + height: 200px; + background-size: cover; + background-position: center; + border-radius: 10px; +} + +.wishes { + text-align: center; + padding: 2rem; + background: var(--primary-color); + color: white; + border-radius: 10px; +} + +.wishes h2 { + margin: 0; + font-size: 2rem; +} + +.wishes p { + font-size: 1.2rem; +} + +footer { + text-align: center; + padding: 1rem; + background: var(--text-color); + color: white; +} + +@media (max-width: 768px) { + header h1 { + font-size: 2rem; + } + + header p { + font-size: 1rem; + } + + .hero h2 { + font-size: 1.5rem; + } + + .hero p { + font-size: 1rem; + } + + .gallery h2 { + font-size: 1.5rem; + } + + .wishes h2 { + font-size: 1.5rem; + } + + .wishes p { + font-size: 1rem; + } +} \ No newline at end of file