commit da6159c04c2dd66a7391bbe336fe310251440188
Author: root <root@hub.scroll.pub> Date: 2025-01-15 05:11:55 +0000 Subject: Initial commit diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..bd32707 --- /dev/null +++ b/index.scroll @@ -0,0 +1,120 @@ +buildHtml +baseUrl https://bulkoranges.scroll.pub +metaTags +editButton /edit.html +title Bulk Oranges - Premium Citrus Delivered +style.css + +header + class hero + nav + div Bulk Oranges + class logo + div + class nav-links + a About + href #about + a Products + href #products + a Contact + href #contact + div + class hero-content + h1 Fresh, Juicy Oranges in Bulk + p Order premium citrus directly from our groves. Delivered fresh to your door. + a Shop Now + class primary-button + href #products +main + section + id about + class about + h2 About Our Oranges + div + class about-grid + div + class about-card + div 🍊 + class about-icon + h3 Grown with Care + p Our oranges are nurtured in sunny groves using sustainable practices. + div + class about-card + div 🚚 + class about-icon + h3 Fast Delivery + p We harvest and ship within 24 hours for maximum freshness. + div + class about-card + div 🌱 + class about-icon + h3 Eco-Friendly + p We use biodegradable packaging and carbon-neutral shipping. + section + id products + class products + h2 Our Products + div + class product-grid + div + class product-card + img /images/navel-oranges.jpg + alt Navel Oranges + h3 Navel Oranges + p Sweet and seedless, perfect for snacking. + a Order Now + class secondary-button + href #contact + div + class product-card + img /images/blood-oranges.jpg + alt Blood Oranges + h3 Blood Oranges + p Rich and tangy with a crimson interior. + a Order Now + class secondary-button + href #contact + div + class product-card + img /images/valencia-oranges.jpg + alt Valencia Oranges + h3 Valencia Oranges + p Juicy and ideal for fresh-squeezed juice. + a Order Now + class secondary-button + href #contact + section + id contact + class contact + h2 Get in Touch + form + class contact-form + input + type text + name name + placeholder Your Name + input + type email + name email + placeholder Your Email + textarea + name message + placeholder Your Message + button + type submit + class primary-button + Send Message +footer + div + class footer-content + div + class footer-links + a About + href #about + a Products + href #products + a Contact + href #contact + p Fresh from our groves to your table. + +script.js \ No newline at end of file diff --git a/prompt.json b/prompt.json new file mode 100644 index 0000000..0805e08 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "728b480e-fca1-4945-ba22-a970e3dfcc3d", + "object": "chat.completion", + "created": 1736917886, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nbulkoranges.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://bulkoranges.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Bulk Oranges - Premium Citrus Delivered\nstyle.css\n\nheader\n class hero\n nav\n div Bulk Oranges\n class logo\n div\n class nav-links\n a About\n href #about\n a Products\n href #products\n a Contact\n href #contact\n div\n class hero-content\n h1 Fresh, Juicy Oranges in Bulk\n p Order premium citrus directly from our groves. Delivered fresh to your door.\n a Shop Now\n class primary-button\n href #products\nmain\n section\n id about\n class about\n h2 About Our Oranges\n div\n class about-grid\n div\n class about-card\n div 🍊\n class about-icon\n h3 Grown with Care\n p Our oranges are nurtured in sunny groves using sustainable practices.\n div\n class about-card\n div 🚚\n class about-icon\n h3 Fast Delivery\n p We harvest and ship within 24 hours for maximum freshness.\n div\n class about-card\n div 🌱\n class about-icon\n h3 Eco-Friendly\n p We use biodegradable packaging and carbon-neutral shipping.\n section\n id products\n class products\n h2 Our Products\n div\n class product-grid\n div\n class product-card\n img /images/navel-oranges.jpg\n alt Navel Oranges\n h3 Navel Oranges\n p Sweet and seedless, perfect for snacking.\n a Order Now\n class secondary-button\n href #contact\n div\n class product-card\n img /images/blood-oranges.jpg\n alt Blood Oranges\n h3 Blood Oranges\n p Rich and tangy with a crimson interior.\n a Order Now\n class secondary-button\n href #contact\n div\n class product-card\n img /images/valencia-oranges.jpg\n alt Valencia Oranges\n h3 Valencia Oranges\n p Juicy and ideal for fresh-squeezed juice.\n a Order Now\n class secondary-button\n href #contact\n section\n id contact\n class contact\n h2 Get in Touch\n form\n class contact-form\n input\n type text\n name name\n placeholder Your Name\n input\n type email\n name email\n placeholder Your Email\n textarea\n name message\n placeholder Your Message\n button\n type submit\n class primary-button\n Send Message\nfooter\n div\n class footer-content\n div\n class footer-links\n a About\n href #about\n a Products\n href #products\n a Contact\n href #contact\n p Fresh from our groves to your table.\n\nscript.js\n---style.css---\n:root {\n --primary: #FF7F50;\n --secondary: #FFA07A;\n --background: #FFF8DC;\n --text: #2F4F4F;\n}\n\nbody {\n font-family: 'Georgia', serif;\n line-height: 1.6;\n color: var(--text);\n background: var(--background);\n margin: 0;\n padding: 0;\n}\n\n.hero {\n background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/orange-grove.jpg');\n background-size: cover;\n background-position: center;\n color: white;\n padding: 4rem 2rem;\n text-align: center;\n}\n\n.nav-links {\n display: flex;\n justify-content: center;\n gap: 2rem;\n margin-bottom: 2rem;\n}\n\n.nav-links a {\n color: white;\n text-decoration: none;\n font-weight: bold;\n}\n\n.hero-content {\n max-width: 800px;\n margin: 0 auto;\n}\n\n.primary-button {\n background: var(--primary);\n color: white;\n padding: 1rem 2rem;\n border: none;\n border-radius: 5px;\n text-decoration: none;\n display: inline-block;\n margin-top: 1rem;\n}\n\n.about-grid, .product-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n gap: 2rem;\n padding: 2rem;\n max-width: 1200px;\n margin: 0 auto;\n}\n\n.about-card, .product-card {\n background: white;\n padding: 2rem;\n border-radius: 10px;\n box-shadow: 0 2px 5px rgba(0,0,0,0.1);\n text-align: center;\n}\n\n.about-icon {\n font-size: 3rem;\n margin-bottom: 1rem;\n}\n\n.product-card img {\n width: 100%;\n height: 200px;\n object-fit: cover;\n border-radius: 5px;\n}\n\n.contact-form {\n max-width: 600px;\n margin: 2rem auto;\n padding: 2rem;\n background: white;\n border-radius: 10px;\n box-shadow: 0 2px 5px rgba(0,0,0,0.1);\n}\n\n.contact-form input, .contact-form textarea {\n width: 100%;\n padding: 1rem;\n margin-bottom: 1rem;\n border: 1px solid #ddd;\n border-radius: 5px;\n}\n\n.footer-content {\n background: var(--text);\n color: white;\n padding: 2rem;\n text-align: center;\n}\n\n.footer-links {\n display: flex;\n justify-content: center;\n gap: 2rem;\n margin-bottom: 1rem;\n}\n\n.footer-links a {\n color: white;\n text-decoration: none;\n}\n\n@media (max-width: 768px) {\n .nav-links {\n flex-direction: column;\n gap: 1rem;\n }\n \n .hero-content h1 {\n font-size: 2rem;\n }\n}\n---script.js---\n// Smooth scrolling for anchor links\ndocument.querySelectorAll('a[href^=\"#\"]').forEach(anchor => {\n anchor.addEventListener('click', function (e) {\n e.preventDefault();\n document.querySelector(this.getAttribute('href')).scrollIntoView({\n behavior: 'smooth'\n });\n });\n});\n\n// Form submission handling\nconst form = document.querySelector('.contact-form');\nform.addEventListener('submit', (e) => {\n e.preventDefault();\n const formData = new FormData(form);\n const data = Object.fromEntries(formData);\n \n // Here you would typically send the data to your server\n console.log('Form submitted:', data);\n \n // Show a success message\n alert('Thank you for your message! We will get back to you soon.');\n form.reset();\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 719, + "completion_tokens": 1550, + "total_tokens": 2269, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 719 + }, + "system_fingerprint": "fp_3a5770e1b4" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..f8d0bac --- /dev/null +++ b/readme.scroll @@ -0,0 +1,3 @@ +# bulkoranges.scroll.pub + +website generated by DeepSeek from prompt: bulk oranges \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..d1938eb --- /dev/null +++ b/script.js @@ -0,0 +1,24 @@ +// Smooth scrolling for anchor links +document.querySelectorAll('a[href^="#"]').forEach(anchor => { + anchor.addEventListener('click', function (e) { + e.preventDefault(); + document.querySelector(this.getAttribute('href')).scrollIntoView({ + behavior: 'smooth' + }); + }); +}); + +// Form submission handling +const form = document.querySelector('.contact-form'); +form.addEventListener('submit', (e) => { + e.preventDefault(); + const formData = new FormData(form); + const data = Object.fromEntries(formData); + + // Here you would typically send the data to your server + console.log('Form submitted:', data); + + // Show a success message + alert('Thank you for your message! We will get back to you soon.'); + form.reset(); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..d7acd2d --- /dev/null +++ b/style.css @@ -0,0 +1,129 @@ +:root { + --primary: #FF7F50; + --secondary: #FFA07A; + --background: #FFF8DC; + --text: #2F4F4F; +} + +body { + font-family: 'Georgia', serif; + line-height: 1.6; + color: var(--text); + background: var(--background); + margin: 0; + padding: 0; +} + +.hero { + background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/orange-grove.jpg'); + background-size: cover; + background-position: center; + color: white; + padding: 4rem 2rem; + text-align: center; +} + +.nav-links { + display: flex; + justify-content: center; + gap: 2rem; + margin-bottom: 2rem; +} + +.nav-links a { + color: white; + text-decoration: none; + font-weight: bold; +} + +.hero-content { + max-width: 800px; + margin: 0 auto; +} + +.primary-button { + background: var(--primary); + color: white; + padding: 1rem 2rem; + border: none; + border-radius: 5px; + text-decoration: none; + display: inline-block; + margin-top: 1rem; +} + +.about-grid, .product-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: 2rem; + padding: 2rem; + max-width: 1200px; + margin: 0 auto; +} + +.about-card, .product-card { + background: white; + padding: 2rem; + border-radius: 10px; + box-shadow: 0 2px 5px rgba(0,0,0,0.1); + text-align: center; +} + +.about-icon { + font-size: 3rem; + margin-bottom: 1rem; +} + +.product-card img { + width: 100%; + height: 200px; + object-fit: cover; + border-radius: 5px; +} + +.contact-form { + max-width: 600px; + margin: 2rem auto; + padding: 2rem; + background: white; + border-radius: 10px; + box-shadow: 0 2px 5px rgba(0,0,0,0.1); +} + +.contact-form input, .contact-form textarea { + width: 100%; + padding: 1rem; + margin-bottom: 1rem; + border: 1px solid #ddd; + border-radius: 5px; +} + +.footer-content { + background: var(--text); + color: white; + padding: 2rem; + text-align: center; +} + +.footer-links { + display: flex; + justify-content: center; + gap: 2rem; + margin-bottom: 1rem; +} + +.footer-links a { + color: white; + text-decoration: none; +} + +@media (max-width: 768px) { + .nav-links { + flex-direction: column; + gap: 1rem; + } + + .hero-content h1 { + font-size: 2rem; + } +} \ No newline at end of file