commit 7abc5c7224fb4c1e1d57ef35296ed218bc3755ea
Author: root <root@hub.scroll.pub> Date: 2024-12-27 15:36:31 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..2b48ea0 --- /dev/null +++ b/body.html @@ -0,0 +1,60 @@ +<header> + <nav> + <a href="/" class="logo">Kitchen Essentials</a> + <ul class="nav-links"> + <li><a href="#products">Products</a></li> + <li><a href="#about">About</a></li> + <li><a href="#contact">Contact</a></li> + </ul> + </nav> + <div class="hero"> + <h1>Elevate Your Kitchen Experience</h1> + <p>Discover premium kitchen products designed for modern living</p> + <a href="#products" class="cta-btn">Shop Now</a> + </div> +</header> + +<main> + <section id="products" class="products-section"> + <h2>Our Products</h2> + <div class="product-grid"> + <div class="product-card"> + <img src="/images/knife-set.jpg" alt="Professional Knife Set"> + <h3>Professional Knife Set</h3> + <p>$149.99</p> + <button class="add-to-cart">Add to Cart</button> + </div> + <div class="product-card"> + <img src="/images/cookware.jpg" alt="Non-Stick Cookware Set"> + <h3>Non-Stick Cookware Set</h3> + <p>$199.99</p> + <button class="add-to-cart">Add to Cart</button> + </div> + <div class="product-card"> + <img src="/images/blender.jpg" alt="High-Speed Blender"> + <h3>High-Speed Blender</h3> + <p>$129.99</p> + <button class="add-to-cart">Add to Cart</button> + </div> + </div> + </section> + + <section id="about" class="about-section"> + <h2>About Us</h2> + <p>At Kitchen Essentials, we believe that great meals start with great tools. Our carefully curated selection of kitchen products combines functionality, durability, and style to transform your cooking experience.</p> + </section> + + <section id="contact" class="contact-section"> + <h2>Contact Us</h2> + <form> + <input type="text" placeholder="Your Name" required> + <input type="email" placeholder="Your Email" required> + <textarea placeholder="Your Message" required></textarea> + <button type="submit">Send Message</button> + </form> + </section> +</main> + +<footer> + <p>Kitchen Essentials - Where Quality Meets Innovation</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..b9cb00a --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://kitchenessentials.scroll.pub +metaTags +editButton /edit.html +title Kitchen Essentials - Premium Kitchen Products +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..ca545c8 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "0bdbae06-9dab-4ff1-ab1a-49e1b036e2c9", + "object": "chat.completion", + "created": 1735313766, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nkitchenessentials.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://kitchenessentials.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Kitchen Essentials - Premium Kitchen Products\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <nav>\n <a href=\"/\" class=\"logo\">Kitchen Essentials</a>\n <ul class=\"nav-links\">\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 class=\"hero\">\n <h1>Elevate Your Kitchen Experience</h1>\n <p>Discover premium kitchen products designed for modern living</p>\n <a href=\"#products\" class=\"cta-btn\">Shop Now</a>\n </div>\n</header>\n\n<main>\n <section id=\"products\" class=\"products-section\">\n <h2>Our Products</h2>\n <div class=\"product-grid\">\n <div class=\"product-card\">\n <img src=\"/images/knife-set.jpg\" alt=\"Professional Knife Set\">\n <h3>Professional Knife Set</h3>\n <p>$149.99</p>\n <button class=\"add-to-cart\">Add to Cart</button>\n </div>\n <div class=\"product-card\">\n <img src=\"/images/cookware.jpg\" alt=\"Non-Stick Cookware Set\">\n <h3>Non-Stick Cookware Set</h3>\n <p>$199.99</p>\n <button class=\"add-to-cart\">Add to Cart</button>\n </div>\n <div class=\"product-card\">\n <img src=\"/images/blender.jpg\" alt=\"High-Speed Blender\">\n <h3>High-Speed Blender</h3>\n <p>$129.99</p>\n <button class=\"add-to-cart\">Add to Cart</button>\n </div>\n </div>\n </section>\n\n <section id=\"about\" class=\"about-section\">\n <h2>About Us</h2>\n <p>At Kitchen Essentials, we believe that great meals start with great tools. Our carefully curated selection of kitchen products combines functionality, durability, and style to transform your cooking experience.</p>\n </section>\n\n <section id=\"contact\" class=\"contact-section\">\n <h2>Contact Us</h2>\n <form>\n <input type=\"text\" placeholder=\"Your Name\" required>\n <input type=\"email\" placeholder=\"Your Email\" required>\n <textarea placeholder=\"Your Message\" required></textarea>\n <button type=\"submit\">Send Message</button>\n </form>\n </section>\n</main>\n\n<footer>\n <p>Kitchen Essentials - Where Quality Meets Innovation</p>\n</footer>\n---style.css---\n:root {\n --primary-color: #ff6b6b;\n --secondary-color: #4ecdc4;\n --dark-color: #2c3e50;\n --light-color: #f5f5f5;\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: 'Segoe UI', sans-serif;\n line-height: 1.6;\n color: var(--dark-color);\n}\n\nheader {\n background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/kitchen-bg.jpg');\n background-size: cover;\n background-position: center;\n color: white;\n padding: 2rem;\n text-align: center;\n min-height: 100vh;\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n\nnav {\n display: flex;\n justify-content: space-between;\n align-items: center;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n padding: 1rem 2rem;\n}\n\n.logo {\n font-size: 1.5rem;\n font-weight: bold;\n color: white;\n text-decoration: none;\n}\n\n.nav-links {\n list-style: none;\n display: flex;\n gap: 2rem;\n}\n\n.nav-links a {\n color: white;\n text-decoration: none;\n transition: color 0.3s ease;\n}\n\n.nav-links a:hover {\n color: var(--primary-color);\n}\n\n.hero {\n max-width: 800px;\n margin: 0 auto;\n}\n\n.hero h1 {\n font-size: 3rem;\n margin-bottom: 1rem;\n}\n\n.hero p {\n font-size: 1.2rem;\n margin-bottom: 2rem;\n}\n\n.cta-btn {\n background: var(--primary-color);\n color: white;\n padding: 1rem 2rem;\n border: none;\n border-radius: 5px;\n text-decoration: none;\n transition: background 0.3s ease;\n}\n\n.cta-btn:hover {\n background: var(--secondary-color);\n}\n\nsection {\n padding: 4rem 2rem;\n}\n\nh2 {\n text-align: center;\n margin-bottom: 2rem;\n font-size: 2rem;\n}\n\n.product-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n gap: 2rem;\n}\n\n.product-card {\n background: white;\n border-radius: 10px;\n overflow: hidden;\n box-shadow: 0 2px 10px rgba(0,0,0,0.1);\n transition: transform 0.3s ease;\n}\n\n.product-card:hover {\n transform: translateY(-5px);\n}\n\n.product-card img {\n width: 100%;\n height: 200px;\n object-fit: cover;\n}\n\n.product-card h3 {\n padding: 1rem;\n font-size: 1.2rem;\n}\n\n.product-card p {\n padding: 0 1rem 1rem;\n color: var(--primary-color);\n font-weight: bold;\n}\n\n.add-to-cart {\n display: block;\n width: 100%;\n padding: 1rem;\n background: var(--primary-color);\n color: white;\n border: none;\n cursor: pointer;\n transition: background 0.3s ease;\n}\n\n.add-to-cart:hover {\n background: var(--secondary-color);\n}\n\n.about-section {\n background: var(--light-color);\n}\n\n.contact-section form {\n max-width: 600px;\n margin: 0 auto;\n display: grid;\n gap: 1rem;\n}\n\n.contact-section input,\n.contact-section textarea {\n padding: 1rem;\n border: 1px solid #ddd;\n border-radius: 5px;\n}\n\n.contact-section button {\n background: var(--primary-color);\n color: white;\n padding: 1rem;\n border: none;\n border-radius: 5px;\n cursor: pointer;\n transition: background 0.3s ease;\n}\n\n.contact-section button:hover {\n background: var(--secondary-color);\n}\n\nfooter {\n background: var(--dark-color);\n color: white;\n text-align: center;\n padding: 2rem;\n}\n\n@media (max-width: 768px) {\n .hero h1 {\n font-size: 2rem;\n }\n \n .nav-links {\n gap: 1rem;\n }\n}\n---script.js---\n// Add interactivity here\ndocument.querySelectorAll('.add-to-cart').forEach(button => {\n button.addEventListener('click', () => {\n alert('Added to cart!');\n });\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 241, + "completion_tokens": 1713, + "total_tokens": 1954, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 241 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..973bf82 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# kitchenessentials.scroll.pub +Website generated by DeepSeek from prompt: an ecom website selling kitchen products \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..e5335ef --- /dev/null +++ b/script.js @@ -0,0 +1,6 @@ +// Add interactivity here +document.querySelectorAll('.add-to-cart').forEach(button => { + button.addEventListener('click', () => { + alert('Added to cart!'); + }); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..82065a2 --- /dev/null +++ b/style.css @@ -0,0 +1,203 @@ +:root { + --primary-color: #ff6b6b; + --secondary-color: #4ecdc4; + --dark-color: #2c3e50; + --light-color: #f5f5f5; +} + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: 'Segoe UI', sans-serif; + line-height: 1.6; + color: var(--dark-color); +} + +header { + background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/kitchen-bg.jpg'); + background-size: cover; + background-position: center; + color: white; + padding: 2rem; + text-align: center; + min-height: 100vh; + display: flex; + flex-direction: column; + justify-content: center; +} + +nav { + display: flex; + justify-content: space-between; + align-items: center; + position: absolute; + top: 0; + left: 0; + right: 0; + padding: 1rem 2rem; +} + +.logo { + font-size: 1.5rem; + font-weight: bold; + color: white; + text-decoration: none; +} + +.nav-links { + list-style: none; + display: flex; + gap: 2rem; +} + +.nav-links a { + color: white; + text-decoration: none; + transition: color 0.3s ease; +} + +.nav-links a:hover { + color: var(--primary-color); +} + +.hero { + max-width: 800px; + margin: 0 auto; +} + +.hero h1 { + font-size: 3rem; + margin-bottom: 1rem; +} + +.hero p { + font-size: 1.2rem; + margin-bottom: 2rem; +} + +.cta-btn { + background: var(--primary-color); + color: white; + padding: 1rem 2rem; + border: none; + border-radius: 5px; + text-decoration: none; + transition: background 0.3s ease; +} + +.cta-btn:hover { + background: var(--secondary-color); +} + +section { + padding: 4rem 2rem; +} + +h2 { + text-align: center; + margin-bottom: 2rem; + font-size: 2rem; +} + +.product-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: 2rem; +} + +.product-card { + background: white; + border-radius: 10px; + overflow: hidden; + box-shadow: 0 2px 10px rgba(0,0,0,0.1); + transition: transform 0.3s ease; +} + +.product-card:hover { + transform: translateY(-5px); +} + +.product-card img { + width: 100%; + height: 200px; + object-fit: cover; +} + +.product-card h3 { + padding: 1rem; + font-size: 1.2rem; +} + +.product-card p { + padding: 0 1rem 1rem; + color: var(--primary-color); + font-weight: bold; +} + +.add-to-cart { + display: block; + width: 100%; + padding: 1rem; + background: var(--primary-color); + color: white; + border: none; + cursor: pointer; + transition: background 0.3s ease; +} + +.add-to-cart:hover { + background: var(--secondary-color); +} + +.about-section { + background: var(--light-color); +} + +.contact-section form { + max-width: 600px; + margin: 0 auto; + display: grid; + gap: 1rem; +} + +.contact-section input, +.contact-section textarea { + padding: 1rem; + border: 1px solid #ddd; + border-radius: 5px; +} + +.contact-section button { + background: var(--primary-color); + color: white; + padding: 1rem; + border: none; + border-radius: 5px; + cursor: pointer; + transition: background 0.3s ease; +} + +.contact-section button:hover { + background: var(--secondary-color); +} + +footer { + background: var(--dark-color); + color: white; + text-align: center; + padding: 2rem; +} + +@media (max-width: 768px) { + .hero h1 { + font-size: 2rem; + } + + .nav-links { + gap: 1rem; + } +} \ No newline at end of file