commit 5ce783ab3d2ba5835949a9a4c4ff508fb2a6dad5
Author: root <root@hub.scroll.pub> Date: 2024-12-29 18:08:08 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..d4ca9dc --- /dev/null +++ b/body.html @@ -0,0 +1,71 @@ +<header class="header"> + <div class="container"> + <h1 class="logo">Blissful Adult</h1> + <nav class="nav"> + <ul> + <li><a href="#products">Products</a></li> + <li><a href="#about">About</a></li> + <li><a href="#contact">Contact</a></li> + </ul> + </nav> + </div> +</header> + +<section class="hero"> + <div class="container"> + <h2>Discover Premium Adult Products</h2> + <p>Explore our curated collection of high-quality, discreetly packaged items designed for your pleasure.</p> + <a href="#products" class="btn">Shop Now</a> + </div> +</section> + +<section id="products" class="products"> + <div class="container"> + <h2>Featured Products</h2> + <div class="product-grid"> + <div class="product-card"> + <img src="/images/product1.jpg" alt="Product 1"> + <h3>Product 1</h3> + <p>Description of product 1.</p> + <button class="btn">Add to Cart</button> + </div> + <div class="product-card"> + <img src="/images/product2.jpg" alt="Product 2"> + <h3>Product 2</h3> + <p>Description of product 2.</p> + <button class="btn">Add to Cart</button> + </div> + <div class="product-card"> + <img src="/images/product3.jpg" alt="Product 3"> + <h3>Product 3</h3> + <p>Description of product 3.</p> + <button class="btn">Add to Cart</button> + </div> + </div> + </div> +</section> + +<section id="about" class="about"> + <div class="container"> + <h2>About Us</h2> + <p>At Blissful Adult, we believe in providing high-quality adult products that enhance intimacy and pleasure. Our products are carefully selected, discreetly packaged, and delivered right to your door.</p> + </div> +</section> + +<section id="contact" class="contact"> + <div class="container"> + <h2>Contact Us</h2> + <form id="contactForm"> + <input type="text" id="name" placeholder="Your Name" required> + <input type="email" id="email" placeholder="Your Email" required> + <textarea id="message" placeholder="Your Message" required></textarea> + <button type="submit" class="btn">Send Message</button> + </form> + </div> +</section> + +<footer class="footer"> + <div class="container"> + <p>Blissful Adult - Premium Adult Products Online</p> + </div> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..a4404e7 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://blissfuladult.scroll.pub +metaTags +editButton /edit.html +title Blissful Adult - Premium Adult Products Online +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..100dde3 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "d406a288-f78d-4ca8-a5e6-aed02de5dd4f", + "object": "chat.completion", + "created": 1735495665, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nblissfuladult.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://blissfuladult.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Blissful Adult - Premium Adult Products Online\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header class=\"header\">\n <div class=\"container\">\n <h1 class=\"logo\">Blissful Adult</h1>\n <nav class=\"nav\">\n <ul>\n <li><a href=\"#products\">Products</a></li>\n <li><a href=\"#about\">About</a></li>\n <li><a href=\"#contact\">Contact</a></li>\n </ul>\n </nav>\n </div>\n</header>\n\n<section class=\"hero\">\n <div class=\"container\">\n <h2>Discover Premium Adult Products</h2>\n <p>Explore our curated collection of high-quality, discreetly packaged items designed for your pleasure.</p>\n <a href=\"#products\" class=\"btn\">Shop Now</a>\n </div>\n</section>\n\n<section id=\"products\" class=\"products\">\n <div class=\"container\">\n <h2>Featured Products</h2>\n <div class=\"product-grid\">\n <div class=\"product-card\">\n <img src=\"/images/product1.jpg\" alt=\"Product 1\">\n <h3>Product 1</h3>\n <p>Description of product 1.</p>\n <button class=\"btn\">Add to Cart</button>\n </div>\n <div class=\"product-card\">\n <img src=\"/images/product2.jpg\" alt=\"Product 2\">\n <h3>Product 2</h3>\n <p>Description of product 2.</p>\n <button class=\"btn\">Add to Cart</button>\n </div>\n <div class=\"product-card\">\n <img src=\"/images/product3.jpg\" alt=\"Product 3\">\n <h3>Product 3</h3>\n <p>Description of product 3.</p>\n <button class=\"btn\">Add to Cart</button>\n </div>\n </div>\n </div>\n</section>\n\n<section id=\"about\" class=\"about\">\n <div class=\"container\">\n <h2>About Us</h2>\n <p>At Blissful Adult, we believe in providing high-quality adult products that enhance intimacy and pleasure. Our products are carefully selected, discreetly packaged, and delivered right to your door.</p>\n </div>\n</section>\n\n<section id=\"contact\" class=\"contact\">\n <div class=\"container\">\n <h2>Contact Us</h2>\n <form id=\"contactForm\">\n <input type=\"text\" id=\"name\" placeholder=\"Your Name\" required>\n <input type=\"email\" id=\"email\" placeholder=\"Your Email\" required>\n <textarea id=\"message\" placeholder=\"Your Message\" required></textarea>\n <button type=\"submit\" class=\"btn\">Send Message</button>\n </form>\n </div>\n</section>\n\n<footer class=\"footer\">\n <div class=\"container\">\n <p>Blissful Adult - Premium Adult Products Online</p>\n </div>\n</footer>\n---style.css---\n:root {\n --primary-color: #ff6b6b;\n --secondary-color: #4ecdc4;\n --background-color: #f7fff7;\n --text-color: #2d3436;\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\n.container {\n width: 90%;\n max-width: 1200px;\n margin: 0 auto;\n}\n\n.header {\n background-color: var(--primary-color);\n color: white;\n padding: 1rem 0;\n}\n\n.logo {\n font-size: 2rem;\n margin: 0;\n}\n\n.nav ul {\n list-style: none;\n padding: 0;\n display: flex;\n gap: 1rem;\n}\n\n.nav a {\n color: white;\n text-decoration: none;\n font-weight: bold;\n}\n\n.hero {\n background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/hero.jpg');\n background-size: cover;\n background-position: center;\n color: white;\n padding: 5rem 0;\n text-align: center;\n}\n\n.hero h2 {\n font-size: 3rem;\n margin-bottom: 1rem;\n}\n\n.hero p {\n font-size: 1.5rem;\n margin-bottom: 2rem;\n}\n\n.btn {\n background-color: var(--secondary-color);\n color: white;\n padding: 0.75rem 1.5rem;\n border: none;\n border-radius: 5px;\n cursor: pointer;\n font-size: 1rem;\n transition: background-color 0.3s ease;\n}\n\n.btn:hover {\n background-color: #3aa8a0;\n}\n\n.products {\n padding: 3rem 0;\n}\n\n.products h2 {\n text-align: center;\n margin-bottom: 2rem;\n}\n\n.product-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 1.5rem;\n}\n\n.product-card {\n background-color: white;\n padding: 1rem;\n border-radius: 10px;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n text-align: center;\n}\n\n.product-card img {\n max-width: 100%;\n border-radius: 10px;\n}\n\n.product-card h3 {\n margin: 1rem 0 0.5rem;\n}\n\n.about, .contact {\n padding: 3rem 0;\n text-align: center;\n}\n\n.contact form {\n display: flex;\n flex-direction: column;\n gap: 1rem;\n max-width: 500px;\n margin: 0 auto;\n}\n\n.contact input, .contact textarea {\n padding: 0.75rem;\n border: 1px solid #ccc;\n border-radius: 5px;\n}\n\n.footer {\n background-color: var(--primary-color);\n color: white;\n text-align: center;\n padding: 1rem 0;\n}\n\n@media (max-width: 768px) {\n .hero h2 {\n font-size: 2rem;\n }\n\n .hero p {\n font-size: 1.2rem;\n }\n\n .nav ul {\n flex-direction: column;\n align-items: center;\n }\n}\n---script.js---\ndocument.getElementById('contactForm').addEventListener('submit', function(event) {\n event.preventDefault();\n alert('Thank you for your message! We will get back to you soon.');\n document.getElementById('contactForm').reset();\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 239, + "completion_tokens": 1564, + "total_tokens": 1803, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 239 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..0c45d56 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# blissfuladult.scroll.pub +Website generated by DeepSeek from prompt: New adult product online shopping \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..34d56a4 --- /dev/null +++ b/script.js @@ -0,0 +1,5 @@ +document.getElementById('contactForm').addEventListener('submit', function(event) { + event.preventDefault(); + alert('Thank you for your message! We will get back to you soon.'); + document.getElementById('contactForm').reset(); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..44e3bc6 --- /dev/null +++ b/style.css @@ -0,0 +1,153 @@ +:root { + --primary-color: #ff6b6b; + --secondary-color: #4ecdc4; + --background-color: #f7fff7; + --text-color: #2d3436; + --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; +} + +.container { + width: 90%; + max-width: 1200px; + margin: 0 auto; +} + +.header { + background-color: var(--primary-color); + color: white; + padding: 1rem 0; +} + +.logo { + font-size: 2rem; + margin: 0; +} + +.nav ul { + list-style: none; + padding: 0; + display: flex; + gap: 1rem; +} + +.nav a { + color: white; + text-decoration: none; + font-weight: bold; +} + +.hero { + background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/hero.jpg'); + background-size: cover; + background-position: center; + color: white; + padding: 5rem 0; + text-align: center; +} + +.hero h2 { + font-size: 3rem; + margin-bottom: 1rem; +} + +.hero p { + font-size: 1.5rem; + margin-bottom: 2rem; +} + +.btn { + background-color: var(--secondary-color); + color: white; + padding: 0.75rem 1.5rem; + border: none; + border-radius: 5px; + cursor: pointer; + font-size: 1rem; + transition: background-color 0.3s ease; +} + +.btn:hover { + background-color: #3aa8a0; +} + +.products { + padding: 3rem 0; +} + +.products h2 { + text-align: center; + margin-bottom: 2rem; +} + +.product-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 1.5rem; +} + +.product-card { + background-color: white; + padding: 1rem; + border-radius: 10px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + text-align: center; +} + +.product-card img { + max-width: 100%; + border-radius: 10px; +} + +.product-card h3 { + margin: 1rem 0 0.5rem; +} + +.about, .contact { + padding: 3rem 0; + text-align: center; +} + +.contact form { + display: flex; + flex-direction: column; + gap: 1rem; + max-width: 500px; + margin: 0 auto; +} + +.contact input, .contact textarea { + padding: 0.75rem; + border: 1px solid #ccc; + border-radius: 5px; +} + +.footer { + background-color: var(--primary-color); + color: white; + text-align: center; + padding: 1rem 0; +} + +@media (max-width: 768px) { + .hero h2 { + font-size: 2rem; + } + + .hero p { + font-size: 1.2rem; + } + + .nav ul { + flex-direction: column; + align-items: center; + } +} \ No newline at end of file