commit 4434bb447eaa7993ebbcf123f9c3c0773dd70120
Author: root <root@hub.scroll.pub>
Date: 2024-12-30 05:34:56 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..7451f62
--- /dev/null
+++ b/body.html
@@ -0,0 +1,41 @@
+<header class="header">
+ <div class="container">
+ <h1>本地生活服务</h1>
+ <p>为您提供最便捷的生活解决方案,拓展更多分销用户</p>
+ <a href="#services" class="btn">了解更多</a>
+ </div>
+</header>
+
+<section id="services" class="services">
+ <div class="container">
+ <h2>我们的服务</h2>
+ <div class="service-grid">
+ <div class="service-item">
+ <h3>家政服务</h3>
+ <p>专业家政团队,为您提供清洁、保姆、月嫂等服务。</p>
+ </div>
+ <div class="service-item">
+ <h3>维修服务</h3>
+ <p>家电、管道、电路等维修,快速响应,专业解决。</p>
+ </div>
+ <div class="service-item">
+ <h3>配送服务</h3>
+ <p>快速、安全的配送服务,满足您的日常需求。</p>
+ </div>
+ </div>
+ </div>
+</section>
+
+<section class="cta">
+ <div class="container">
+ <h2>加入我们,成为分销用户</h2>
+ <p>立即注册,享受更多优惠和佣金。</p>
+ <a href="#register" class="btn">立即注册</a>
+ </div>
+</section>
+
+<footer class="footer">
+ <div class="container">
+ <p>联系我们:info@localservice.scroll.pub</p>
+ </div>
+</footer>
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..4adf47b
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://localservice.scroll.pub
+metaTags
+editButton /edit.html
+title 本地生活服务 - 拓展分销用户
+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..68d2aba
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,25 @@
+{
+ "id": "4c5680b9-e3b3-4b40-80b8-73f55789de6a",
+ "object": "chat.completion",
+ "created": 1735536880,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nlocalservice.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://localservice.scroll.pub\nmetaTags\neditButton /edit.html\ntitle 本地生活服务 - 拓展分销用户\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header class=\"header\">\n <div class=\"container\">\n <h1>本地生活服务</h1>\n <p>为您提供最便捷的生活解决方案,拓展更多分销用户</p>\n <a href=\"#services\" class=\"btn\">了解更多</a>\n </div>\n</header>\n\n<section id=\"services\" class=\"services\">\n <div class=\"container\">\n <h2>我们的服务</h2>\n <div class=\"service-grid\">\n <div class=\"service-item\">\n <h3>家政服务</h3>\n <p>专业家政团队,为您提供清洁、保姆、月嫂等服务。</p>\n </div>\n <div class=\"service-item\">\n <h3>维修服务</h3>\n <p>家电、管道、电路等维修,快速响应,专业解决。</p>\n </div>\n <div class=\"service-item\">\n <h3>配送服务</h3>\n <p>快速、安全的配送服务,满足您的日常需求。</p>\n </div>\n </div>\n </div>\n</section>\n\n<section class=\"cta\">\n <div class=\"container\">\n <h2>加入我们,成为分销用户</h2>\n <p>立即注册,享受更多优惠和佣金。</p>\n <a href=\"#register\" class=\"btn\">立即注册</a>\n </div>\n</section>\n\n<footer class=\"footer\">\n <div class=\"container\">\n <p>联系我们:info@localservice.scroll.pub</p>\n </div>\n</footer>\n---style.css---\nbody {\n font-family: 'Arial', sans-serif;\n margin: 0;\n padding: 0;\n color: #333;\n line-height: 1.6;\n}\n\n.container {\n width: 90%;\n max-width: 1200px;\n margin: 0 auto;\n}\n\n.header {\n background: linear-gradient(135deg, #6a11cb, #2575fc);\n color: #fff;\n padding: 100px 0;\n text-align: center;\n}\n\n.header h1 {\n font-size: 3rem;\n margin-bottom: 20px;\n}\n\n.header p {\n font-size: 1.2rem;\n margin-bottom: 40px;\n}\n\n.btn {\n display: inline-block;\n padding: 10px 20px;\n background: #ff6f61;\n color: #fff;\n text-decoration: none;\n border-radius: 5px;\n transition: background 0.3s ease;\n}\n\n.btn:hover {\n background: #ff3b2f;\n}\n\n.services {\n padding: 60px 0;\n background: #f9f9f9;\n}\n\n.services h2 {\n text-align: center;\n margin-bottom: 40px;\n font-size: 2.5rem;\n}\n\n.service-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 20px;\n}\n\n.service-item {\n background: #fff;\n padding: 20px;\n border-radius: 10px;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n text-align: center;\n}\n\n.service-item h3 {\n font-size: 1.5rem;\n margin-bottom: 10px;\n}\n\n.service-item p {\n font-size: 1rem;\n color: #666;\n}\n\n.cta {\n background: #2575fc;\n color: #fff;\n padding: 80px 0;\n text-align: center;\n}\n\n.cta h2 {\n font-size: 2.5rem;\n margin-bottom: 20px;\n}\n\n.cta p {\n font-size: 1.2rem;\n margin-bottom: 40px;\n}\n\n.footer {\n background: #333;\n color: #fff;\n padding: 20px 0;\n text-align: center;\n}\n\n.footer p {\n margin: 0;\n font-size: 1rem;\n}\n\n@media (max-width: 768px) {\n .header h1 {\n font-size: 2.5rem;\n }\n\n .header p {\n font-size: 1rem;\n }\n\n .services h2 {\n font-size: 2rem;\n }\n\n .cta h2 {\n font-size: 2rem;\n }\n\n .cta p {\n font-size: 1rem;\n }\n}\n---script.js---\n// No JavaScript required for this page\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 267,
+ "completion_tokens": 1062,
+ "total_tokens": 1329,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 267
+ },
+ "system_fingerprint": "fp_f1afce2943"
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..a940524
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# localservice.scroll.pub
+Website generated by DeepSeek from prompt: 生成一个做本地生活服务的宣传落地页面,拓展更多的分销用户。以中文呈现。页面专业大气、在移动端与微信环境里能良好呈现。
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..70a3a98
--- /dev/null
+++ b/script.js
@@ -0,0 +1 @@
+// No JavaScript required for this page
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..dcf351f
--- /dev/null
+++ b/style.css
@@ -0,0 +1,130 @@
+body {
+ font-family: 'Arial', sans-serif;
+ margin: 0;
+ padding: 0;
+ color: #333;
+ line-height: 1.6;
+}
+
+.container {
+ width: 90%;
+ max-width: 1200px;
+ margin: 0 auto;
+}
+
+.header {
+ background: linear-gradient(135deg, #6a11cb, #2575fc);
+ color: #fff;
+ padding: 100px 0;
+ text-align: center;
+}
+
+.header h1 {
+ font-size: 3rem;
+ margin-bottom: 20px;
+}
+
+.header p {
+ font-size: 1.2rem;
+ margin-bottom: 40px;
+}
+
+.btn {
+ display: inline-block;
+ padding: 10px 20px;
+ background: #ff6f61;
+ color: #fff;
+ text-decoration: none;
+ border-radius: 5px;
+ transition: background 0.3s ease;
+}
+
+.btn:hover {
+ background: #ff3b2f;
+}
+
+.services {
+ padding: 60px 0;
+ background: #f9f9f9;
+}
+
+.services h2 {
+ text-align: center;
+ margin-bottom: 40px;
+ font-size: 2.5rem;
+}
+
+.service-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 20px;
+}
+
+.service-item {
+ background: #fff;
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ text-align: center;
+}
+
+.service-item h3 {
+ font-size: 1.5rem;
+ margin-bottom: 10px;
+}
+
+.service-item p {
+ font-size: 1rem;
+ color: #666;
+}
+
+.cta {
+ background: #2575fc;
+ color: #fff;
+ padding: 80px 0;
+ text-align: center;
+}
+
+.cta h2 {
+ font-size: 2.5rem;
+ margin-bottom: 20px;
+}
+
+.cta p {
+ font-size: 1.2rem;
+ margin-bottom: 40px;
+}
+
+.footer {
+ background: #333;
+ color: #fff;
+ padding: 20px 0;
+ text-align: center;
+}
+
+.footer p {
+ margin: 0;
+ font-size: 1rem;
+}
+
+@media (max-width: 768px) {
+ .header h1 {
+ font-size: 2.5rem;
+ }
+
+ .header p {
+ font-size: 1rem;
+ }
+
+ .services h2 {
+ font-size: 2rem;
+ }
+
+ .cta h2 {
+ font-size: 2rem;
+ }
+
+ .cta p {
+ font-size: 1rem;
+ }
+}
\ No newline at end of file