commit 29ee6521b950c341c5bdc55a01ad741674cbc892
Author: root <root@hub.scroll.pub> Date: 2024-12-28 03:25:56 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..4735a5f --- /dev/null +++ b/body.html @@ -0,0 +1,29 @@ +<header> + <h1>Decide Your Path</h1> + <p>Should you focus on language education content or sales and marketing in PET manufacturing?</p> +</header> + +<main> + <section class="options"> + <div class="option" id="language"> + <h2>Language Education</h2> + <p>Create engaging content to teach languages and inspire learners worldwide.</p> + <button onclick="selectOption('language')">Choose This Path</button> + </div> + <div class="option" id="pet"> + <h2>PET Manufacturing</h2> + <p>Drive sales and marketing for Polyethylene Terephthalate parts and components.</p> + <button onclick="selectOption('pet')">Choose This Path</button> + </div> + </section> + + <section class="result" id="result"> + <h2>Your Decision</h2> + <p id="decisionText"></p> + <button onclick="resetSelection()">Reset</button> + </section> +</main> + +<footer> + <p>Take your time. Choose wisely.</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..7461039 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://decide.scroll.pub +metaTags +editButton /edit.html +title Decide Your Path: Language Education or PET Manufacturing +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..2774d56 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "b7a3ee33-7653-4b6d-ac44-3ad2c4867832", + "object": "chat.completion", + "created": 1735356343, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\ndecide.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://decide.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Decide Your Path: Language Education or PET Manufacturing\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>Decide Your Path</h1>\n <p>Should you focus on language education content or sales and marketing in PET manufacturing?</p>\n</header>\n\n<main>\n <section class=\"options\">\n <div class=\"option\" id=\"language\">\n <h2>Language Education</h2>\n <p>Create engaging content to teach languages and inspire learners worldwide.</p>\n <button onclick=\"selectOption('language')\">Choose This Path</button>\n </div>\n <div class=\"option\" id=\"pet\">\n <h2>PET Manufacturing</h2>\n <p>Drive sales and marketing for Polyethylene Terephthalate parts and components.</p>\n <button onclick=\"selectOption('pet')\">Choose This Path</button>\n </div>\n </section>\n\n <section class=\"result\" id=\"result\">\n <h2>Your Decision</h2>\n <p id=\"decisionText\"></p>\n <button onclick=\"resetSelection()\">Reset</button>\n </section>\n</main>\n\n<footer>\n <p>Take your time. Choose wisely.</p>\n</footer>\n---style.css---\n:root {\n --primary-color: #4a90e2;\n --secondary-color: #50e3c2;\n --background-color: #f5f5f5;\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 text-align: center;\n padding: 2rem;\n background-color: var(--primary-color);\n color: white;\n}\n\nheader h1 {\n margin: 0;\n font-size: 2.5rem;\n}\n\nheader p {\n font-size: 1.2rem;\n}\n\nmain {\n padding: 2rem;\n}\n\n.options {\n display: flex;\n justify-content: space-around;\n flex-wrap: wrap;\n gap: 1rem;\n}\n\n.option {\n background: white;\n padding: 1.5rem;\n border-radius: 10px;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n text-align: center;\n flex: 1 1 45%;\n transition: transform 0.3s ease;\n}\n\n.option:hover {\n transform: translateY(-10px);\n}\n\n.option h2 {\n color: var(--primary-color);\n}\n\n.option p {\n font-size: 1rem;\n}\n\nbutton {\n background-color: var(--secondary-color);\n border: none;\n padding: 0.8rem 1.5rem;\n border-radius: 5px;\n cursor: pointer;\n font-size: 1rem;\n color: white;\n transition: background-color 0.3s ease;\n}\n\nbutton:hover {\n background-color: #3bb99f;\n}\n\n.result {\n text-align: center;\n margin-top: 2rem;\n display: none;\n}\n\n.result h2 {\n color: var(--primary-color);\n}\n\nfooter {\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: 768px) {\n .options {\n flex-direction: column;\n }\n\n .option {\n flex: 1 1 100%;\n }\n}\n---script.js---\nfunction selectOption(option) {\n const resultSection = document.getElementById('result');\n const decisionText = document.getElementById('decisionText');\n\n if (option === 'language') {\n decisionText.textContent = 'You’ve chosen to create content for language education. Inspire the world with your knowledge!';\n } else if (option === 'pet') {\n decisionText.textContent = 'You’ve chosen to focus on sales and marketing in PET manufacturing. Drive innovation and growth!';\n }\n\n resultSection.style.display = 'block';\n}\n\nfunction resetSelection() {\n const resultSection = document.getElementById('result');\n resultSection.style.display = 'none';\n}\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 270, + "completion_tokens": 990, + "total_tokens": 1260, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 270 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..40d8c58 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# decide.scroll.pub +Website generated by DeepSeek from prompt: I want a website that will help me decide if i should go all in making contents for language education or in doing sales and marketing in Polyethylene terephthalate parts and components manufacturing. \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..1f39f7c --- /dev/null +++ b/script.js @@ -0,0 +1,17 @@ +function selectOption(option) { + const resultSection = document.getElementById('result'); + const decisionText = document.getElementById('decisionText'); + + if (option === 'language') { + decisionText.textContent = 'You’ve chosen to create content for language education. Inspire the world with your knowledge!'; + } else if (option === 'pet') { + decisionText.textContent = 'You’ve chosen to focus on sales and marketing in PET manufacturing. Drive innovation and growth!'; + } + + resultSection.style.display = 'block'; +} + +function resetSelection() { + const resultSection = document.getElementById('result'); + resultSection.style.display = 'none'; +} \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..fcf842c --- /dev/null +++ b/style.css @@ -0,0 +1,108 @@ +:root { + --primary-color: #4a90e2; + --secondary-color: #50e3c2; + --background-color: #f5f5f5; + --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 { + text-align: center; + padding: 2rem; + background-color: var(--primary-color); + color: white; +} + +header h1 { + margin: 0; + font-size: 2.5rem; +} + +header p { + font-size: 1.2rem; +} + +main { + padding: 2rem; +} + +.options { + display: flex; + justify-content: space-around; + flex-wrap: wrap; + gap: 1rem; +} + +.option { + background: white; + padding: 1.5rem; + border-radius: 10px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + text-align: center; + flex: 1 1 45%; + transition: transform 0.3s ease; +} + +.option:hover { + transform: translateY(-10px); +} + +.option h2 { + color: var(--primary-color); +} + +.option p { + font-size: 1rem; +} + +button { + background-color: var(--secondary-color); + border: none; + padding: 0.8rem 1.5rem; + border-radius: 5px; + cursor: pointer; + font-size: 1rem; + color: white; + transition: background-color 0.3s ease; +} + +button:hover { + background-color: #3bb99f; +} + +.result { + text-align: center; + margin-top: 2rem; + display: none; +} + +.result h2 { + color: var(--primary-color); +} + +footer { + text-align: center; + padding: 1rem; + background-color: var(--primary-color); + color: white; + margin-top: 2rem; +} + +@media (max-width: 768px) { + .options { + flex-direction: column; + } + + .option { + flex: 1 1 100%; + } +} \ No newline at end of file