commit a93e96f7ef4cfc69d1942288527aba177c703439
Author: ffff:72.255.242.84 <ffff:72.255.242.84@excelshift.scroll.pub> Date: 2024-12-30 09:48:13 +0000 Subject: updated index.scroll diff --git a/index.scroll b/index.scroll index ae17d41..5bd6db0 100644 --- a/index.scroll +++ b/index.scroll @@ -1,8 +1,8 @@ buildHtml baseUrl https://excelshift.scroll.pub +title Excel Transformation | Simplify Your Data Workflow metaTags editButton /edit.html -title Excel Transformation | Simplify Your Data Workflow style.css body.html -script.js \ No newline at end of file +script.js
commit 7542550f00c1ee5b8fc2e889098190adcb2aaee9
Author: root <root@hub.scroll.pub> Date: 2024-12-30 09:46:13 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..c6407ac --- /dev/null +++ b/body.html @@ -0,0 +1,40 @@ +<header class="hero"> + <div class="container"> + <h1>Transform Your Excel Workflow</h1> + <p>Simplify, automate, and elevate your data management with our powerful tools.</p> + <a href="#features" class="cta-button">Explore Features</a> + </div> +</header> + +<section id="features" class="features"> + <div class="container"> + <h2>Key Features</h2> + <div class="feature-grid"> + <div class="feature-card"> + <h3>Data Cleaning</h3> + <p>Automate the process of cleaning and organizing your data.</p> + </div> + <div class="feature-card"> + <h3>Advanced Formulas</h3> + <p>Access a library of advanced formulas to streamline your calculations.</p> + </div> + <div class="feature-card"> + <h3>Visualization Tools</h3> + <p>Create stunning charts and graphs with ease.</p> + </div> + </div> + </div> +</section> + +<section class="cta"> + <div class="container"> + <h2>Ready to Transform Your Data?</h2> + <a href="#contact" class="cta-button">Get Started</a> + </div> +</section> + +<footer> + <div class="container"> + <p>Excel Transformation | Simplify Your Data Workflow</p> + </div> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..ae17d41 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://excelshift.scroll.pub +metaTags +editButton /edit.html +title Excel Transformation | Simplify Your Data Workflow +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..bc92bba --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "f0a2059b-3945-44f7-9bbb-c98ab1277b7d", + "object": "chat.completion", + "created": 1735551953, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nexcelshift.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://excelshift.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Excel Transformation | Simplify Your Data Workflow\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header class=\"hero\">\n <div class=\"container\">\n <h1>Transform Your Excel Workflow</h1>\n <p>Simplify, automate, and elevate your data management with our powerful tools.</p>\n <a href=\"#features\" class=\"cta-button\">Explore Features</a>\n </div>\n</header>\n\n<section id=\"features\" class=\"features\">\n <div class=\"container\">\n <h2>Key Features</h2>\n <div class=\"feature-grid\">\n <div class=\"feature-card\">\n <h3>Data Cleaning</h3>\n <p>Automate the process of cleaning and organizing your data.</p>\n </div>\n <div class=\"feature-card\">\n <h3>Advanced Formulas</h3>\n <p>Access a library of advanced formulas to streamline your calculations.</p>\n </div>\n <div class=\"feature-card\">\n <h3>Visualization Tools</h3>\n <p>Create stunning charts and graphs with ease.</p>\n </div>\n </div>\n </div>\n</section>\n\n<section class=\"cta\">\n <div class=\"container\">\n <h2>Ready to Transform Your Data?</h2>\n <a href=\"#contact\" class=\"cta-button\">Get Started</a>\n </div>\n</section>\n\n<footer>\n <div class=\"container\">\n <p>Excel Transformation | Simplify Your Data Workflow</p>\n </div>\n</footer>\n---style.css---\n:root {\n --primary-color: #4CAF50;\n --secondary-color: #333;\n --background-color: #f4f4f4;\n --text-color: #333;\n --cta-color: #ff5722;\n}\n\nbody {\n font-family: 'Arial', sans-serif;\n margin: 0;\n padding: 0;\n color: var(--text-color);\n background-color: var(--background-color);\n}\n\n.container {\n width: 90%;\n max-width: 1200px;\n margin: 0 auto;\n}\n\n.hero {\n background: linear-gradient(135deg, var(--primary-color), #45a049);\n color: white;\n padding: 100px 0;\n text-align: center;\n}\n\n.hero h1 {\n font-size: 3rem;\n margin-bottom: 20px;\n}\n\n.hero p {\n font-size: 1.2rem;\n margin-bottom: 40px;\n}\n\n.cta-button {\n background-color: var(--cta-color);\n color: white;\n padding: 15px 30px;\n text-decoration: none;\n border-radius: 5px;\n font-size: 1rem;\n transition: background-color 0.3s ease;\n}\n\n.cta-button:hover {\n background-color: #e64a19;\n}\n\n.features {\n padding: 80px 0;\n background-color: white;\n}\n\n.features h2 {\n text-align: center;\n margin-bottom: 50px;\n font-size: 2.5rem;\n}\n\n.feature-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 20px;\n}\n\n.feature-card {\n background-color: var(--background-color);\n padding: 20px;\n border-radius: 10px;\n text-align: center;\n transition: transform 0.3s ease;\n}\n\n.feature-card:hover {\n transform: translateY(-10px);\n}\n\n.feature-card h3 {\n font-size: 1.5rem;\n margin-bottom: 15px;\n}\n\n.feature-card p {\n font-size: 1rem;\n color: #666;\n}\n\n.cta {\n background: linear-gradient(135deg, var(--primary-color), #45a049);\n color: white;\n padding: 100px 0;\n text-align: center;\n}\n\n.cta h2 {\n font-size: 2.5rem;\n margin-bottom: 40px;\n}\n\nfooter {\n background-color: var(--secondary-color);\n color: white;\n text-align: center;\n padding: 20px 0;\n}\n\n@media (max-width: 768px) {\n .hero h1 {\n font-size: 2rem;\n }\n\n .hero p {\n font-size: 1rem;\n }\n\n .features h2 {\n font-size: 2rem;\n }\n\n .cta h2 {\n font-size: 2rem;\n }\n}\n---script.js---\n// Smooth scrolling for anchor links\ndocument.querySelectorAll('a[href^=\"#\"]').forEach(anchor => {\n anchor.addEventListener('click', function (e) {\n e.preventDefault();\n document.querySelector(this.getAttribute('href')).scrollIntoView({\n behavior: 'smooth'\n });\n });\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 238, + "completion_tokens": 1118, + "total_tokens": 1356, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 238 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..aa5f247 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# excelshift.scroll.pub +Website generated by DeepSeek from prompt: excel transformation website \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..5716c79 --- /dev/null +++ b/script.js @@ -0,0 +1,9 @@ +// Smooth scrolling for anchor links +document.querySelectorAll('a[href^="#"]').forEach(anchor => { + anchor.addEventListener('click', function (e) { + e.preventDefault(); + document.querySelector(this.getAttribute('href')).scrollIntoView({ + behavior: 'smooth' + }); + }); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..86050a0 --- /dev/null +++ b/style.css @@ -0,0 +1,128 @@ +:root { + --primary-color: #4CAF50; + --secondary-color: #333; + --background-color: #f4f4f4; + --text-color: #333; + --cta-color: #ff5722; +} + +body { + font-family: 'Arial', sans-serif; + margin: 0; + padding: 0; + color: var(--text-color); + background-color: var(--background-color); +} + +.container { + width: 90%; + max-width: 1200px; + margin: 0 auto; +} + +.hero { + background: linear-gradient(135deg, var(--primary-color), #45a049); + color: white; + padding: 100px 0; + text-align: center; +} + +.hero h1 { + font-size: 3rem; + margin-bottom: 20px; +} + +.hero p { + font-size: 1.2rem; + margin-bottom: 40px; +} + +.cta-button { + background-color: var(--cta-color); + color: white; + padding: 15px 30px; + text-decoration: none; + border-radius: 5px; + font-size: 1rem; + transition: background-color 0.3s ease; +} + +.cta-button:hover { + background-color: #e64a19; +} + +.features { + padding: 80px 0; + background-color: white; +} + +.features h2 { + text-align: center; + margin-bottom: 50px; + font-size: 2.5rem; +} + +.feature-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 20px; +} + +.feature-card { + background-color: var(--background-color); + padding: 20px; + border-radius: 10px; + text-align: center; + transition: transform 0.3s ease; +} + +.feature-card:hover { + transform: translateY(-10px); +} + +.feature-card h3 { + font-size: 1.5rem; + margin-bottom: 15px; +} + +.feature-card p { + font-size: 1rem; + color: #666; +} + +.cta { + background: linear-gradient(135deg, var(--primary-color), #45a049); + color: white; + padding: 100px 0; + text-align: center; +} + +.cta h2 { + font-size: 2.5rem; + margin-bottom: 40px; +} + +footer { + background-color: var(--secondary-color); + color: white; + text-align: center; + padding: 20px 0; +} + +@media (max-width: 768px) { + .hero h1 { + font-size: 2rem; + } + + .hero p { + font-size: 1rem; + } + + .features h2 { + font-size: 2rem; + } + + .cta h2 { + font-size: 2rem; + } +} \ No newline at end of file