commit 886f5f77d7f0007d4b420ff31ad1b8ad953145db
Author: root <root@hub.scroll.pub> Date: 2024-12-28 11:14:32 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..2c410ce --- /dev/null +++ b/body.html @@ -0,0 +1,71 @@ +<header> + <nav> + <ul> + <li><a href="#home">Home</a></li> + <li><a href="#gallery">Gallery</a></li> + <li><a href="#care">Care Tips</a></li> + <li><a href="#contact">Contact</a></li> + </ul> + </nav> +</header> + +<main> + <section id="home" class="hero"> + <h1>Piękne Kwiaty</h1> + <p class="tagline">Discover the enchanting world of flowers</p> + <div class="flower-animation"></div> + </section> + + <section id="gallery" class="flower-gallery"> + <h2>Our Collection</h2> + <div class="gallery-grid"> + <article class="flower-card"> + <h3>Roses</h3> + <div class="flower-image rose"></div> + <p>Symbol of love and passion</p> + </article> + <article class="flower-card"> + <h3>Tulips</h3> + <div class="flower-image tulip"></div> + <p>Spring's perfect messenger</p> + </article> + <article class="flower-card"> + <h3>Orchids</h3> + <div class="flower-image orchid"></div> + <p>Exotic beauty and grace</p> + </article> + </div> + </section> + + <section id="care" class="care-tips"> + <h2>Flower Care Guide</h2> + <div class="tips-container"> + <div class="tip"> + <h3>Water</h3> + <p>Water your flowers regularly, keeping soil moist but not waterlogged</p> + </div> + <div class="tip"> + <h3>Light</h3> + <p>Most flowers need 6-8 hours of direct sunlight daily</p> + </div> + <div class="tip"> + <h3>Soil</h3> + <p>Use well-draining, nutrient-rich soil for optimal growth</p> + </div> + </div> + </section> + + <section id="contact" class="contact"> + <h2>Contact Us</h2> + <form id="contactForm"> + <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>Piękne Kwiaty - Sharing the beauty of nature</p> +</footer> diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..f9411c5 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://kwiaty.scroll.pub +metaTags +editButton /edit.html +title Piękne Kwiaty - Discover the Beauty of Flowers +style.css +body.html +script.js diff --git a/prompt.json b/prompt.json new file mode 100644 index 0000000..a33b209 --- /dev/null +++ b/prompt.json @@ -0,0 +1,20 @@ +{ + "id": "msg_01SiUrwk14kYmR699FktsHRv", + "type": "message", + "role": "assistant", + "model": "claude-3-5-sonnet-20241022", + "content": [ + { + "type": "text", + "text": "Let me create a beautiful website about flowers (\"kwiaty\" in Polish).\n\n---domain---\nkwiaty.scroll.pub\n\n---index.scroll---\nbuildHtml\nbaseUrl https://kwiaty.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Piękne Kwiaty - Discover the Beauty of Flowers\nstyle.css\nbody.html\nscript.js\n\n---body.html---\n<header>\n <nav>\n <ul>\n <li><a href=\"#home\">Home</a></li>\n <li><a href=\"#gallery\">Gallery</a></li>\n <li><a href=\"#care\">Care Tips</a></li>\n <li><a href=\"#contact\">Contact</a></li>\n </ul>\n </nav>\n</header>\n\n<main>\n <section id=\"home\" class=\"hero\">\n <h1>Piękne Kwiaty</h1>\n <p class=\"tagline\">Discover the enchanting world of flowers</p>\n <div class=\"flower-animation\"></div>\n </section>\n\n <section id=\"gallery\" class=\"flower-gallery\">\n <h2>Our Collection</h2>\n <div class=\"gallery-grid\">\n <article class=\"flower-card\">\n <h3>Roses</h3>\n <div class=\"flower-image rose\"></div>\n <p>Symbol of love and passion</p>\n </article>\n <article class=\"flower-card\">\n <h3>Tulips</h3>\n <div class=\"flower-image tulip\"></div>\n <p>Spring's perfect messenger</p>\n </article>\n <article class=\"flower-card\">\n <h3>Orchids</h3>\n <div class=\"flower-image orchid\"></div>\n <p>Exotic beauty and grace</p>\n </article>\n </div>\n </section>\n\n <section id=\"care\" class=\"care-tips\">\n <h2>Flower Care Guide</h2>\n <div class=\"tips-container\">\n <div class=\"tip\">\n <h3>Water</h3>\n <p>Water your flowers regularly, keeping soil moist but not waterlogged</p>\n </div>\n <div class=\"tip\">\n <h3>Light</h3>\n <p>Most flowers need 6-8 hours of direct sunlight daily</p>\n </div>\n <div class=\"tip\">\n <h3>Soil</h3>\n <p>Use well-draining, nutrient-rich soil for optimal growth</p>\n </div>\n </div>\n </section>\n\n <section id=\"contact\" class=\"contact\">\n <h2>Contact Us</h2>\n <form id=\"contactForm\">\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>Piękne Kwiaty - Sharing the beauty of nature</p>\n</footer>\n\n---style.css---\n:root {\n --primary-color: #ff6b6b;\n --secondary-color: #4ecdc4;\n --text-color: #2d3436;\n --background-color: #fff5f5;\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n line-height: 1.6;\n color: var(--text-color);\n background-color: var(--background-color);\n}\n\nheader {\n position: fixed;\n width: 100%;\n background: rgba(255, 255, 255, 0.95);\n box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);\n z-index: 1000;\n}\n\nnav ul {\n display: flex;\n justify-content: center;\n list-style: none;\n padding: 1rem;\n}\n\nnav a {\n color: var(--text-color);\n text-decoration: none;\n padding: 0.5rem 1.5rem;\n margin: 0 0.5rem;\n border-radius: 25px;\n transition: all 0.3s ease;\n}\n\nnav a:hover {\n background-color: var(--primary-color);\n color: white;\n}\n\n.hero {\n height: 100vh;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: linear-gradient(135deg, var(--background-color), white);\n}\n\nh1 {\n font-size: 4rem;\n color: var(--primary-color);\n margin-bottom: 1rem;\n animation: fadeIn 1s ease-in;\n}\n\n.tagline {\n font-size: 1.5rem;\n color: var(--text-color);\n opacity: 0.8;\n}\n\n.flower-gallery {\n padding: 5rem 2rem;\n}\n\n.gallery-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n gap: 2rem;\n padding: 2rem;\n}\n\n.flower-card {\n background: white;\n border-radius: 15px;\n padding: 1.5rem;\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);\n transition: transform 0.3s ease;\n}\n\n.flower-card:hover {\n transform: translateY(-10px);\n}\n\n.flower-image {\n height: 200px;\n border-radius: 10px;\n margin: 1rem 0;\n background-size: cover;\n background-position: center;\n}\n\n.rose { background-image: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><circle cx=\"50\" cy=\"50\" r=\"40\" fill=\"%23ff6b6b\"/></svg>'); }\n.tulip { background-image: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><circle cx=\"50\" cy=\"50\" r=\"40\" fill=\"%234ecdc4\"/></svg>'); }\n.orchid { background-image: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><circle cx=\"50\" cy=\"50\" r=\"40\" fill=\"%23a8e6cf\"/></svg>'); }\n\n.care-tips {\n background-color: white;\n padding: 5rem 2rem;\n}\n\n.tips-container {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 2rem;\n padding: 2rem;\n}\n\n.tip {\n padding: 2rem;\n border-radius: 10px;\n background: var(--background-color);\n text-align: center;\n}\n\n.contact {\n padding: 5rem 2rem;\n}\n\nform {\n max-width: 600px;\n margin: 0 auto;\n display: flex;\n flex-direction: column;\n gap: 1rem;\n}\n\ninput, textarea {\n padding: 1rem;\n border: 2px solid transparent;\n border-radius: 8px;\n background: white;\n transition: border-color 0.3s ease;\n}\n\ninput:focus, textarea:focus {\n border-color: var(--primary-color);\n outline: none;\n}\n\nbutton {\n padding: 1rem 2rem;\n background: var(--primary-color);\n color: white;\n border: none;\n border-radius: 8px;\n cursor: pointer;\n transition: background-color 0.3s ease;\n}\n\nbutton:hover {\n background-color: var(--secondary-color);\n}\n\nfooter {\n text-align: center;\n padding: 2rem;\n background: white;\n}\n\n@keyframes fadeIn {\n from { opacity: 0; transform: translateY(20px); }\n to { opacity: 1; transform: translateY(0); }\n}\n\n@media (max-width: 768px) {\n nav ul {\n flex-direction: column;\n align-items: center;\n }\n \n nav a {\n display: block;\n margin: 0.5rem 0;\n }\n \n h1 {\n font-size: 2.5rem;\n }\n \n .gallery-grid {\n grid-template-columns: 1fr;\n }\n}\n\n---script.js---\ndocument.addEventListener('DOMContentLoaded', function() {\n // Smooth scrolling for navigation links\n document.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 handler\n const form = document.getElementById('contactForm');\n if (form) {\n form.addEventListener('submit', function(e) {\n e.preventDefault();\n // Animate button on submit\n const button = form.querySelector('button');\n button.style.transform = 'scale(0.95)';\n setTimeout(() => {\n button.style.transform = 'scale(1)';\n alert('Thank you for your message! We will get back to you soon.');\n form.reset();\n }, 200);\n });\n }\n\n // Intersection Observer for fade-in animations\n const observer = new IntersectionObserver((entries) => {\n entries.forEach(entry => {\n if (entry.isIntersecting) {\n entry.target.style.opacity = '1';\n entry.target.style.transform = 'translateY(0)';\n }\n });\n }, { threshold: 0.1 });\n\n document.querySelectorAll('.flower-card, .tip').forEach(el => {\n el.style.opacity = '0';\n el.style.transform = 'translateY(20px)';\n el.style.transition = 'opacity 0.6s ease, transform 0.6s ease';\n observer.observe(el);\n });\n});\n\n---end---\n\nThis website features:\n- Clean, semantic HTML5 structure\n- Beautiful color scheme with CSS variables\n- Smooth animations and transitions\n- Responsive design that works on all devices\n- Interactive elements with hover effects\n- Form validation and submission handling\n- Intersection Observer for scroll animations\n- SVG-based placeholder images (can be replaced with real images)\n- Accessible navigation and structure\n- Performance-optimized code\n\nThe domain name \"kwiaty.scroll.pub\" is perfect as it means \"flowers\" in Polish and is short, memorable, and relevant to the content." + } + ], + "stop_reason": "end_turn", + "stop_sequence": null, + "usage": { + "input_tokens": 278, + "cache_creation_input_tokens": 0, + "cache_read_input_tokens": 0, + "output_tokens": 2877 + } +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..2aeedfd --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# kwiaty.scroll.pub +Website generated by Claude from prompt: Strona o kwiatkach \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..51ed222 --- /dev/null +++ b/script.js @@ -0,0 +1,44 @@ +document.addEventListener('DOMContentLoaded', function() { + // Smooth scrolling for navigation links + document.querySelectorAll('a[href^="#"]').forEach(anchor => { + anchor.addEventListener('click', function (e) { + e.preventDefault(); + document.querySelector(this.getAttribute('href')).scrollIntoView({ + behavior: 'smooth' + }); + }); + }); + + // Form submission handler + const form = document.getElementById('contactForm'); + if (form) { + form.addEventListener('submit', function(e) { + e.preventDefault(); + // Animate button on submit + const button = form.querySelector('button'); + button.style.transform = 'scale(0.95)'; + setTimeout(() => { + button.style.transform = 'scale(1)'; + alert('Thank you for your message! We will get back to you soon.'); + form.reset(); + }, 200); + }); + } + + // Intersection Observer for fade-in animations + const observer = new IntersectionObserver((entries) => { + entries.forEach(entry => { + if (entry.isIntersecting) { + entry.target.style.opacity = '1'; + entry.target.style.transform = 'translateY(0)'; + } + }); + }, { threshold: 0.1 }); + + document.querySelectorAll('.flower-card, .tip').forEach(el => { + el.style.opacity = '0'; + el.style.transform = 'translateY(20px)'; + el.style.transition = 'opacity 0.6s ease, transform 0.6s ease'; + observer.observe(el); + }); +}); diff --git a/style.css b/style.css new file mode 100644 index 0000000..0ba9f86 --- /dev/null +++ b/style.css @@ -0,0 +1,195 @@ +:root { + --primary-color: #ff6b6b; + --secondary-color: #4ecdc4; + --text-color: #2d3436; + --background-color: #fff5f5; +} + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + line-height: 1.6; + color: var(--text-color); + background-color: var(--background-color); +} + +header { + position: fixed; + width: 100%; + background: rgba(255, 255, 255, 0.95); + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); + z-index: 1000; +} + +nav ul { + display: flex; + justify-content: center; + list-style: none; + padding: 1rem; +} + +nav a { + color: var(--text-color); + text-decoration: none; + padding: 0.5rem 1.5rem; + margin: 0 0.5rem; + border-radius: 25px; + transition: all 0.3s ease; +} + +nav a:hover { + background-color: var(--primary-color); + color: white; +} + +.hero { + height: 100vh; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + text-align: center; + background: linear-gradient(135deg, var(--background-color), white); +} + +h1 { + font-size: 4rem; + color: var(--primary-color); + margin-bottom: 1rem; + animation: fadeIn 1s ease-in; +} + +.tagline { + font-size: 1.5rem; + color: var(--text-color); + opacity: 0.8; +} + +.flower-gallery { + padding: 5rem 2rem; +} + +.gallery-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: 2rem; + padding: 2rem; +} + +.flower-card { + background: white; + border-radius: 15px; + padding: 1.5rem; + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); + transition: transform 0.3s ease; +} + +.flower-card:hover { + transform: translateY(-10px); +} + +.flower-image { + height: 200px; + border-radius: 10px; + margin: 1rem 0; + background-size: cover; + background-position: center; +} + +.rose { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23ff6b6b"/></svg>'); } +.tulip { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%234ecdc4"/></svg>'); } +.orchid { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23a8e6cf"/></svg>'); } + +.care-tips { + background-color: white; + padding: 5rem 2rem; +} + +.tips-container { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 2rem; + padding: 2rem; +} + +.tip { + padding: 2rem; + border-radius: 10px; + background: var(--background-color); + text-align: center; +} + +.contact { + padding: 5rem 2rem; +} + +form { + max-width: 600px; + margin: 0 auto; + display: flex; + flex-direction: column; + gap: 1rem; +} + +input, textarea { + padding: 1rem; + border: 2px solid transparent; + border-radius: 8px; + background: white; + transition: border-color 0.3s ease; +} + +input:focus, textarea:focus { + border-color: var(--primary-color); + outline: none; +} + +button { + padding: 1rem 2rem; + background: var(--primary-color); + color: white; + border: none; + border-radius: 8px; + cursor: pointer; + transition: background-color 0.3s ease; +} + +button:hover { + background-color: var(--secondary-color); +} + +footer { + text-align: center; + padding: 2rem; + background: white; +} + +@keyframes fadeIn { + from { opacity: 0; transform: translateY(20px); } + to { opacity: 1; transform: translateY(0); } +} + +@media (max-width: 768px) { + nav ul { + flex-direction: column; + align-items: center; + } + + nav a { + display: block; + margin: 0.5rem 0; + } + + h1 { + font-size: 2.5rem; + } + + .gallery-grid { + grid-template-columns: 1fr; + } +}