Changes to decide.scroll.pub

root
root
25 days ago
Initial commit
body.html
Changed around line 1
+
+

Decide Your Path

+

Should you focus on language education content or sales and marketing in PET manufacturing?

+
+
+
+
+
+

Language Education

+

Create engaging content to teach languages and inspire learners worldwide.

+
+
+
+

PET Manufacturing

+

Drive sales and marketing for Polyethylene Terephthalate parts and components.

+
+
+
+
+
+

Your Decision

+

+
+
+
+
+
+

Take your time. Choose wisely.

+
index.scroll
Changed around line 1
+ 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
prompt.json
Changed around line 1
+ {
+ "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
\n

Decide Your Path

\n

Should you focus on language education content or sales and marketing in PET manufacturing?

\n
\n\n
\n
\n
\n

Language Education

\n

Create engaging content to teach languages and inspire learners worldwide.

\n \n
\n
\n

PET Manufacturing

\n

Drive sales and marketing for Polyethylene Terephthalate parts and components.

\n \n
\n
\n\n
\n

Your Decision

\n

\n \n
\n
\n\n
\n

Take your time. Choose wisely.

\n
\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"
+ }
readme.scroll
Changed around line 1
+ # 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.
script.js
Changed around line 1
+ 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';
+ }
style.css
Changed around line 1
+ :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%;
+ }
+ }