commit d2bae53c964459e5f3e01cc4e98ab607ced3e9d8
Author: root <root@hub.scroll.pub> Date: 2024-12-28 09:43:56 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..289c93a --- /dev/null +++ b/body.html @@ -0,0 +1,54 @@ +<header> + <h1>Welcome to My Reseller Hub</h1> + <nav> + <ul> + <li><a href="#achievements">Achievements</a></li> + <li><a href="#rank">Rank</a></li> + <li><a href="#goals">Goals</a></li> + <li><a href="#downlines">Downlines</a></li> + </ul> + </nav> +</header> + +<main> + <section id="achievements"> + <h2>My Achievements</h2> + <p>Here are some of my notable achievements in the direct selling business.</p> + <ul> + <li>Top Seller of the Month - March 2023</li> + <li>Best Newcomer Award - 2022</li> + <li>Exceeded Sales Target by 150% - Q4 2022</li> + </ul> + </section> + + <section id="rank"> + <h2>My Current Rank</h2> + <p>I am currently ranked as a <strong>Gold Level Reseller</strong>.</p> + <progress value="75" max="100"></progress> + <p>Progress to Platinum Level: 75%</p> + </section> + + <section id="goals"> + <h2>My Goals</h2> + <p>Here are my goals for the upcoming months.</p> + <ul> + <li>Reach Platinum Level by December 2023</li> + <li>Expand my downline to 50 members</li> + <li>Increase monthly sales by 20%</li> + </ul> + </section> + + <section id="downlines"> + <h2>My Downlines</h2> + <p>Meet the amazing team I've built.</p> + <ul> + <li>John Doe - Silver Level</li> + <li>Jane Smith - Bronze Level</li> + <li>Mike Johnson - Bronze Level</li> + </ul> + </section> +</main> + +<footer> + <p>Contact me at <a href="mailto:info@resellerhub.scroll.pub">info@resellerhub.scroll.pub</a></p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..190b379 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://resellerhub.scroll.pub +metaTags +editButton /edit.html +title Reseller Hub - Achievements, Rank, Goals & More +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..2425a56 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "28a98604-1087-4074-bc23-c964141429a6", + "object": "chat.completion", + "created": 1735379023, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nresellerhub.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://resellerhub.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Reseller Hub - Achievements, Rank, Goals & More\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>Welcome to My Reseller Hub</h1>\n <nav>\n <ul>\n <li><a href=\"#achievements\">Achievements</a></li>\n <li><a href=\"#rank\">Rank</a></li>\n <li><a href=\"#goals\">Goals</a></li>\n <li><a href=\"#downlines\">Downlines</a></li>\n </ul>\n </nav>\n</header>\n\n<main>\n <section id=\"achievements\">\n <h2>My Achievements</h2>\n <p>Here are some of my notable achievements in the direct selling business.</p>\n <ul>\n <li>Top Seller of the Month - March 2023</li>\n <li>Best Newcomer Award - 2022</li>\n <li>Exceeded Sales Target by 150% - Q4 2022</li>\n </ul>\n </section>\n\n <section id=\"rank\">\n <h2>My Current Rank</h2>\n <p>I am currently ranked as a <strong>Gold Level Reseller</strong>.</p>\n <progress value=\"75\" max=\"100\"></progress>\n <p>Progress to Platinum Level: 75%</p>\n </section>\n\n <section id=\"goals\">\n <h2>My Goals</h2>\n <p>Here are my goals for the upcoming months.</p>\n <ul>\n <li>Reach Platinum Level by December 2023</li>\n <li>Expand my downline to 50 members</li>\n <li>Increase monthly sales by 20%</li>\n </ul>\n </section>\n\n <section id=\"downlines\">\n <h2>My Downlines</h2>\n <p>Meet the amazing team I've built.</p>\n <ul>\n <li>John Doe - Silver Level</li>\n <li>Jane Smith - Bronze Level</li>\n <li>Mike Johnson - Bronze Level</li>\n </ul>\n </section>\n</main>\n\n<footer>\n <p>Contact me at <a href=\"mailto:info@resellerhub.scroll.pub\">info@resellerhub.scroll.pub</a></p>\n</footer>\n---style.css---\nbody {\n font-family: 'Arial', sans-serif;\n line-height: 1.6;\n margin: 0;\n padding: 0;\n background: #f4f4f4;\n color: #333;\n}\n\nheader {\n background: #333;\n color: #fff;\n padding: 1rem 0;\n text-align: center;\n}\n\nheader h1 {\n margin: 0;\n}\n\nnav ul {\n list-style: none;\n padding: 0;\n}\n\nnav ul li {\n display: inline;\n margin: 0 10px;\n}\n\nnav ul li a {\n color: #fff;\n text-decoration: none;\n}\n\nmain {\n padding: 20px;\n}\n\nsection {\n margin-bottom: 20px;\n background: #fff;\n padding: 20px;\n border-radius: 8px;\n box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n}\n\nh2 {\n color: #333;\n}\n\nul {\n list-style-type: square;\n padding-left: 20px;\n}\n\nprogress {\n width: 100%;\n height: 20px;\n}\n\nfooter {\n text-align: center;\n padding: 20px;\n background: #333;\n color: #fff;\n margin-top: 20px;\n}\n\nfooter a {\n color: #fff;\n text-decoration: none;\n}\n\n@media (max-width: 600px) {\n nav ul li {\n display: block;\n margin: 10px 0;\n }\n}\n---script.js---\n// Add any interactive JavaScript functionality here if needed\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 267, + "completion_tokens": 936, + "total_tokens": 1203, + "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..66b5d94 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# resellerhub.scroll.pub +Website generated by DeepSeek from prompt: Create a a homepage for a virtual office for an independent reseller that works for a direct selling company which shows my achievements, my rank, goals, downlines etc \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..dac3455 --- /dev/null +++ b/script.js @@ -0,0 +1 @@ +// Add any interactive JavaScript functionality here if needed \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..9dfcc86 --- /dev/null +++ b/style.css @@ -0,0 +1,80 @@ +body { + font-family: 'Arial', sans-serif; + line-height: 1.6; + margin: 0; + padding: 0; + background: #f4f4f4; + color: #333; +} + +header { + background: #333; + color: #fff; + padding: 1rem 0; + text-align: center; +} + +header h1 { + margin: 0; +} + +nav ul { + list-style: none; + padding: 0; +} + +nav ul li { + display: inline; + margin: 0 10px; +} + +nav ul li a { + color: #fff; + text-decoration: none; +} + +main { + padding: 20px; +} + +section { + margin-bottom: 20px; + background: #fff; + padding: 20px; + border-radius: 8px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); +} + +h2 { + color: #333; +} + +ul { + list-style-type: square; + padding-left: 20px; +} + +progress { + width: 100%; + height: 20px; +} + +footer { + text-align: center; + padding: 20px; + background: #333; + color: #fff; + margin-top: 20px; +} + +footer a { + color: #fff; + text-decoration: none; +} + +@media (max-width: 600px) { + nav ul li { + display: block; + margin: 10px 0; + } +} \ No newline at end of file