commit 2fbbf2bafb0d211836abeae7464dad1734f2f8f2
Author: root <root@hub.scroll.pub> Date: 2024-12-28 07:06:04 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..5b08b4e --- /dev/null +++ b/body.html @@ -0,0 +1,57 @@ +<header> + <nav> + <a href="/">Home</a> + <a href="/about">About</a> + <a href="/services">Services</a> + <a href="/contact">Contact</a> + </nav> + <div class="hero"> + <h1>Modern Web Solutions for a Digital World</h1> + <p>We create stunning, responsive websites that drive results.</p> + <a href="/contact" class="cta-button">Get Started</a> + </div> +</header> + +<main> + <section class="about"> + <h2>About Us</h2> + <p>We are a team of passionate web developers dedicated to crafting modern, user-friendly websites that help businesses thrive online.</p> + </section> + + <section class="services"> + <h2>Our Services</h2> + <div class="service-grid"> + <div class="service"> + <h3>Web Design</h3> + <p>Custom, responsive designs tailored to your brand.</p> + </div> + <div class="service"> + <h3>Web Development</h3> + <p>Clean, efficient code for optimal performance.</p> + </div> + <div class="service"> + <h3>SEO Optimization</h3> + <p>Boost your visibility with our SEO strategies.</p> + </div> + </div> + </section> + + <section class="contact"> + <h2>Contact Us</h2> + <form id="contact-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> + <div class="social-links"> + <a href="#">Facebook</a> + <a href="#">Twitter</a> + <a href="#">LinkedIn</a> + </div> + <p>Moderno - Modern Web Solutions</p> +</footer> diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..b8d2d22 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://moderno.scroll.pub +metaTags +editButton /edit.html +title Moderno - Modern Web Solutions +style.css +body.html +script.js diff --git a/prompt.json b/prompt.json new file mode 100644 index 0000000..d021be5 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "f3588b28-11aa-4e59-8e5d-0bf5ce8f5b52", + "object": "chat.completion", + "created": 1735369547, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nmoderno.scroll.pub\n\n---index.scroll---\nbuildHtml\nbaseUrl https://moderno.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Moderno - Modern Web Solutions\nstyle.css\nbody.html\nscript.js\n\n---body.html---\n<header>\n <nav>\n <a href=\"/\">Home</a>\n <a href=\"/about\">About</a>\n <a href=\"/services\">Services</a>\n <a href=\"/contact\">Contact</a>\n </nav>\n <div class=\"hero\">\n <h1>Modern Web Solutions for a Digital World</h1>\n <p>We create stunning, responsive websites that drive results.</p>\n <a href=\"/contact\" class=\"cta-button\">Get Started</a>\n </div>\n</header>\n\n<main>\n <section class=\"about\">\n <h2>About Us</h2>\n <p>We are a team of passionate web developers dedicated to crafting modern, user-friendly websites that help businesses thrive online.</p>\n </section>\n\n <section class=\"services\">\n <h2>Our Services</h2>\n <div class=\"service-grid\">\n <div class=\"service\">\n <h3>Web Design</h3>\n <p>Custom, responsive designs tailored to your brand.</p>\n </div>\n <div class=\"service\">\n <h3>Web Development</h3>\n <p>Clean, efficient code for optimal performance.</p>\n </div>\n <div class=\"service\">\n <h3>SEO Optimization</h3>\n <p>Boost your visibility with our SEO strategies.</p>\n </div>\n </div>\n </section>\n\n <section class=\"contact\">\n <h2>Contact Us</h2>\n <form id=\"contact-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 <div class=\"social-links\">\n <a href=\"#\">Facebook</a>\n <a href=\"#\">Twitter</a>\n <a href=\"#\">LinkedIn</a>\n </div>\n <p>Moderno - Modern Web Solutions</p>\n</footer>\n\n---style.css---\n:root {\n --primary-color: #4a90e2;\n --secondary-color: #333;\n --background-color: #f4f4f4;\n --text-color: #333;\n --cta-color: #ff6b6b;\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\nheader {\n background: var(--primary-color);\n color: white;\n padding: 2rem;\n text-align: center;\n}\n\nnav {\n display: flex;\n justify-content: center;\n gap: 1rem;\n margin-bottom: 2rem;\n}\n\nnav a {\n color: white;\n text-decoration: none;\n font-weight: bold;\n}\n\n.hero {\n max-width: 800px;\n margin: 0 auto;\n}\n\n.hero h1 {\n font-size: 2.5rem;\n margin-bottom: 1rem;\n}\n\n.hero p {\n font-size: 1.2rem;\n margin-bottom: 2rem;\n}\n\n.cta-button {\n background: var(--cta-color);\n color: white;\n padding: 0.75rem 1.5rem;\n text-decoration: none;\n border-radius: 5px;\n font-weight: bold;\n}\n\nmain {\n padding: 2rem;\n}\n\nsection {\n margin-bottom: 3rem;\n}\n\nh2 {\n color: var(--primary-color);\n margin-bottom: 1rem;\n}\n\n.service-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n gap: 1rem;\n}\n\n.service {\n background: white;\n padding: 1rem;\n border-radius: 5px;\n box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);\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.contact button {\n background: var(--primary-color);\n color: white;\n padding: 0.75rem;\n border: none;\n border-radius: 5px;\n cursor: pointer;\n}\n\nfooter {\n background: var(--secondary-color);\n color: white;\n text-align: center;\n padding: 1rem;\n}\n\n.social-links {\n display: flex;\n justify-content: center;\n gap: 1rem;\n margin-bottom: 1rem;\n}\n\n.social-links a {\n color: white;\n text-decoration: none;\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 .service-grid {\n grid-template-columns: 1fr;\n }\n}\n\n---script.js---\ndocument.getElementById('contact-form').addEventListener('submit', function(event) {\n event.preventDefault();\n alert('Thank you for your message! We will get back to you soon.');\n this.reset();\n});\n\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 442, + "completion_tokens": 1259, + "total_tokens": 1701, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 442 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..cb20452 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# moderno.scroll.pub +Website generated by DeepSeek from prompt: Design and develop a modern, responsive, and user-friendly website for [insert purpose, e.g., a small business, portfolio, blog, e-commerce store, etc.] that includes a visually appealing homepage with a clear call-to-action, an about page with relevant information, a services/products page showcasing offerings with descriptions and images, an optional blog/news section for updates, and a contact page with a submission form and contact details. Ensure the website is fully optimized for mobile, tablet, and desktop devices, incorporates basic SEO practices like meta tags and clean URLs, integrates social media links and share buttons, and features a footer with essential links and copyright information. Use a clean, modern design with a color scheme that aligns with [insert brand colors or preferences], and ensure the website is fast, secure, and easy to navigate. Provide a CMS like WordPress or a custom solution for easy updates, and deliver the completed website with all necessary files, documentation, and hosting on a reliable platform, thoroughly tested for functionality, usability, and cross-browser compatibility \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..c7cbbaf --- /dev/null +++ b/script.js @@ -0,0 +1,5 @@ +document.getElementById('contact-form').addEventListener('submit', function(event) { + event.preventDefault(); + alert('Thank you for your message! We will get back to you soon.'); + this.reset(); +}); diff --git a/style.css b/style.css new file mode 100644 index 0000000..61f81e0 --- /dev/null +++ b/style.css @@ -0,0 +1,141 @@ +:root { + --primary-color: #4a90e2; + --secondary-color: #333; + --background-color: #f4f4f4; + --text-color: #333; + --cta-color: #ff6b6b; +} + +body { + font-family: 'Arial', sans-serif; + margin: 0; + padding: 0; + color: var(--text-color); + background-color: var(--background-color); +} + +header { + background: var(--primary-color); + color: white; + padding: 2rem; + text-align: center; +} + +nav { + display: flex; + justify-content: center; + gap: 1rem; + margin-bottom: 2rem; +} + +nav a { + color: white; + text-decoration: none; + font-weight: bold; +} + +.hero { + max-width: 800px; + margin: 0 auto; +} + +.hero h1 { + font-size: 2.5rem; + margin-bottom: 1rem; +} + +.hero p { + font-size: 1.2rem; + margin-bottom: 2rem; +} + +.cta-button { + background: var(--cta-color); + color: white; + padding: 0.75rem 1.5rem; + text-decoration: none; + border-radius: 5px; + font-weight: bold; +} + +main { + padding: 2rem; +} + +section { + margin-bottom: 3rem; +} + +h2 { + color: var(--primary-color); + margin-bottom: 1rem; +} + +.service-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + gap: 1rem; +} + +.service { + background: white; + padding: 1rem; + border-radius: 5px; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); +} + +.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; +} + +.contact button { + background: var(--primary-color); + color: white; + padding: 0.75rem; + border: none; + border-radius: 5px; + cursor: pointer; +} + +footer { + background: var(--secondary-color); + color: white; + text-align: center; + padding: 1rem; +} + +.social-links { + display: flex; + justify-content: center; + gap: 1rem; + margin-bottom: 1rem; +} + +.social-links a { + color: white; + text-decoration: none; +} + +@media (max-width: 768px) { + .hero h1 { + font-size: 2rem; + } + + .hero p { + font-size: 1rem; + } + + .service-grid { + grid-template-columns: 1fr; + } +}