commit e1aca8fafce317f0f65d8076d13c335267da42bb
Author: root <root@hub.scroll.pub> Date: 2025-01-03 03:57:41 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..7b654fd --- /dev/null +++ b/body.html @@ -0,0 +1,72 @@ +<header class="site-header"> + <nav class="main-nav"> + <div class="logo">Inkwell</div> + <button class="menu-toggle" aria-label="Toggle menu"> + <span></span> + <span></span> + <span></span> + </button> + <ul class="nav-links"> + <li><a href="/">Home</a></li> + <li><a href="/blog">Blog</a></li> + <li><a href="/about">About</a></li> + <li><a href="/contact">Contact</a></li> + </ul> + </nav> +</header> + +<main> + <section class="hero"> + <h1>Welcome to Inkwell</h1> + <p>Where words come to life</p> + </section> + + <section class="featured-posts"> + <h2>Featured Posts</h2> + <div class="post-grid"> + <article class="post-card"> + <div class="post-image"></div> + <div class="post-content"> + <h3>The Art of Storytelling</h3> + <p>Discover the secrets behind compelling narratives...</p> + <a href="/post1" class="read-more">Read More</a> + </div> + </article> + <article class="post-card"> + <div class="post-image"></div> + <div class="post-content"> + <h3>Writing in the Digital Age</h3> + <p>How technology shapes modern writing...</p> + <a href="/post2" class="read-more">Read More</a> + </div> + </article> + <article class="post-card"> + <div class="post-image"></div> + <div class="post-content"> + <h3>Finding Your Voice</h3> + <p>Developing your unique writing style...</p> + <a href="/post3" class="read-more">Read More</a> + </div> + </article> + </div> + </section> + + <section class="newsletter"> + <h2>Stay Updated</h2> + <form class="subscribe-form"> + <input type="email" placeholder="Enter your email" aria-label="Email subscription"> + <button type="submit">Subscribe</button> + </form> + </section> +</main> + +<footer> + <div class="footer-content"> + <div class="footer-links"> + <a href="/privacy">Privacy Policy</a> + <a href="/terms">Terms of Use</a> + <a href="/sitemap">Sitemap</a> + </div> + <p>Made with passion by Inkwell</p> + </div> +</footer> diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..bf7bd1c --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://inkwell.scroll.pub +metaTags +editButton /edit.html +title Inkwell - A Modern Writing Space +style.css +body.html +script.js diff --git a/prompt.json b/prompt.json new file mode 100644 index 0000000..c23dd5e --- /dev/null +++ b/prompt.json @@ -0,0 +1,20 @@ +{ + "id": "msg_01H6pC6VP8NVeemQW32TvMC9", + "type": "message", + "role": "assistant", + "model": "claude-3-5-sonnet-20241022", + "content": [ + { + "type": "text", + "text": "I'll help create a professional blogger homepage. For a blogging-focused domain, I suggest:\n\n---domain---\ninkwell.scroll.pub\n\n---index.scroll---\nbuildHtml\nbaseUrl https://inkwell.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Inkwell - A Modern Writing Space\nstyle.css\nbody.html\nscript.js\n\n---body.html---\n<header class=\"site-header\">\n <nav class=\"main-nav\">\n <div class=\"logo\">Inkwell</div>\n <button class=\"menu-toggle\" aria-label=\"Toggle menu\">\n <span></span>\n <span></span>\n <span></span>\n </button>\n <ul class=\"nav-links\">\n <li><a href=\"/\">Home</a></li>\n <li><a href=\"/blog\">Blog</a></li>\n <li><a href=\"/about\">About</a></li>\n <li><a href=\"/contact\">Contact</a></li>\n </ul>\n </nav>\n</header>\n\n<main>\n <section class=\"hero\">\n <h1>Welcome to Inkwell</h1>\n <p>Where words come to life</p>\n </section>\n\n <section class=\"featured-posts\">\n <h2>Featured Posts</h2>\n <div class=\"post-grid\">\n <article class=\"post-card\">\n <div class=\"post-image\"></div>\n <div class=\"post-content\">\n <h3>The Art of Storytelling</h3>\n <p>Discover the secrets behind compelling narratives...</p>\n <a href=\"/post1\" class=\"read-more\">Read More</a>\n </div>\n </article>\n <article class=\"post-card\">\n <div class=\"post-image\"></div>\n <div class=\"post-content\">\n <h3>Writing in the Digital Age</h3>\n <p>How technology shapes modern writing...</p>\n <a href=\"/post2\" class=\"read-more\">Read More</a>\n </div>\n </article>\n <article class=\"post-card\">\n <div class=\"post-image\"></div>\n <div class=\"post-content\">\n <h3>Finding Your Voice</h3>\n <p>Developing your unique writing style...</p>\n <a href=\"/post3\" class=\"read-more\">Read More</a>\n </div>\n </article>\n </div>\n </section>\n\n <section class=\"newsletter\">\n <h2>Stay Updated</h2>\n <form class=\"subscribe-form\">\n <input type=\"email\" placeholder=\"Enter your email\" aria-label=\"Email subscription\">\n <button type=\"submit\">Subscribe</button>\n </form>\n </section>\n</main>\n\n<footer>\n <div class=\"footer-content\">\n <div class=\"footer-links\">\n <a href=\"/privacy\">Privacy Policy</a>\n <a href=\"/terms\">Terms of Use</a>\n <a href=\"/sitemap\">Sitemap</a>\n </div>\n <p>Made with passion by Inkwell</p>\n </div>\n</footer>\n\n---style.css---\n:root {\n --primary-color: #2a2a2a;\n --accent-color: #6b4ce6;\n --text-color: #333;\n --background-color: #fff;\n --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: 'Segoe UI', system-ui, sans-serif;\n line-height: 1.6;\n color: var(--text-color);\n background-color: var(--background-color);\n}\n\n.site-header {\n position: fixed;\n width: 100%;\n background: rgba(255, 255, 255, 0.98);\n backdrop-filter: blur(10px);\n box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);\n z-index: 1000;\n}\n\n.main-nav {\n max-width: 1200px;\n margin: 0 auto;\n padding: 1rem;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.logo {\n font-size: 1.8rem;\n font-weight: bold;\n color: var(--accent-color);\n}\n\n.nav-links {\n display: flex;\n list-style: none;\n gap: 2rem;\n}\n\n.nav-links a {\n text-decoration: none;\n color: var(--primary-color);\n font-weight: 500;\n transition: color 0.3s ease;\n}\n\n.nav-links a:hover {\n color: var(--accent-color);\n}\n\n.menu-toggle {\n display: none;\n}\n\n.hero {\n height: 80vh;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: linear-gradient(135deg, #6b4ce6 0%, #9c7af2 100%);\n color: white;\n padding: 2rem;\n}\n\n.hero h1 {\n font-size: 3.5rem;\n margin-bottom: 1rem;\n}\n\n.hero p {\n font-size: 1.5rem;\n opacity: 0.9;\n}\n\n.featured-posts {\n max-width: 1200px;\n margin: 4rem auto;\n padding: 0 1rem;\n}\n\n.post-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n gap: 2rem;\n margin-top: 2rem;\n}\n\n.post-card {\n background: white;\n border-radius: 10px;\n overflow: hidden;\n box-shadow: var(--card-shadow);\n transition: transform 0.3s ease;\n}\n\n.post-card:hover {\n transform: translateY(-5px);\n}\n\n.post-image {\n height: 200px;\n background: var(--accent-color);\n opacity: 0.8;\n}\n\n.post-content {\n padding: 1.5rem;\n}\n\n.read-more {\n display: inline-block;\n margin-top: 1rem;\n color: var(--accent-color);\n text-decoration: none;\n font-weight: 500;\n}\n\n.newsletter {\n background: #f8f9fa;\n padding: 4rem 1rem;\n text-align: center;\n}\n\n.subscribe-form {\n max-width: 500px;\n margin: 2rem auto;\n display: flex;\n gap: 1rem;\n}\n\n.subscribe-form input {\n flex: 1;\n padding: 0.8rem;\n border: 2px solid #ddd;\n border-radius: 5px;\n font-size: 1rem;\n}\n\n.subscribe-form button {\n padding: 0.8rem 1.5rem;\n background: var(--accent-color);\n color: white;\n border: none;\n border-radius: 5px;\n cursor: pointer;\n transition: background 0.3s ease;\n}\n\n.subscribe-form button:hover {\n background: #5636c9;\n}\n\nfooter {\n background: var(--primary-color);\n color: white;\n padding: 2rem 1rem;\n margin-top: 4rem;\n}\n\n.footer-content {\n max-width: 1200px;\n margin: 0 auto;\n text-align: center;\n}\n\n.footer-links {\n margin-bottom: 1rem;\n}\n\n.footer-links a {\n color: white;\n text-decoration: none;\n margin: 0 1rem;\n opacity: 0.8;\n transition: opacity 0.3s ease;\n}\n\n.footer-links a:hover {\n opacity: 1;\n}\n\n@media (max-width: 768px) {\n .menu-toggle {\n display: block;\n background: none;\n border: none;\n cursor: pointer;\n }\n\n .menu-toggle span {\n display: block;\n width: 25px;\n height: 3px;\n background: var(--primary-color);\n margin: 5px 0;\n transition: 0.3s;\n }\n\n .nav-links {\n display: none;\n position: absolute;\n top: 100%;\n left: 0;\n right: 0;\n background: white;\n flex-direction: column;\n padding: 1rem;\n text-align: center;\n }\n\n .nav-links.active {\n display: flex;\n }\n\n .hero h1 {\n font-size: 2.5rem;\n }\n\n .hero p {\n font-size: 1.2rem;\n }\n\n .subscribe-form {\n flex-direction: column;\n }\n}\n\n---script.js---\ndocument.addEventListener('DOMContentLoaded', () => {\n // Mobile menu toggle\n const menuToggle = document.querySelector('.menu-toggle');\n const navLinks = document.querySelector('.nav-links');\n\n menuToggle.addEventListener('click', () => {\n navLinks.classList.toggle('active');\n \n // Animate hamburger menu\n const spans = menuToggle.querySelectorAll('span');\n spans.forEach(span => span.classList.toggle('active'));\n });\n\n // Smooth scroll for anchor 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 // Newsletter form submission\n const subscribeForm = document.querySelector('.subscribe-form');\n if (subscribeForm) {\n subscribeForm.addEventListener('submit', (e) => {\n e.preventDefault();\n const email = subscribeForm.querySelector('input[type=\"email\"]').value;\n \n // Here you would typically send this to your backend\n console.log('Subscription request for:', email);\n \n // Show success message\n alert('Thanks for subscribing!');\n subscribeForm.reset();\n });\n }\n\n // Add scroll-based animations\n const observerOptions = {\n threshold: 0.1\n };\n\n const observer = new IntersectionObserver((entries) => {\n entries.forEach(entry => {\n if (entry.isIntersecting) {\n entry.target.classList.add('visible');\n }\n });\n }, observerOptions);\n\n document.querySelectorAll('.post-card').forEach(card => {\n observer.observe(card);\n });\n});\n\n---end---\n\nThis creates a modern, responsive blogger homepage with smooth animations, mobile-friendly navigation, and elegant styling. The design features:\n\n1. Fixed header with mobile-responsive menu\n2. Hero section with gradient background\n3. Featured posts grid with hover effects\n4. Newsletter subscription form\n5. Clean footer with essential links\n6. Smooth animations and transitions\n7. Accessibility features\n8. Mobile-first responsive design\n9. Modern color scheme with CSS variables\n10. Intersection Observer for scroll animations\n\nThe JavaScript handles mobile menu toggling, smooth scrolling, form submission, and scroll-based animations. The CSS uses modern features like CSS Grid, Flexbox, and CSS variables while maintaining broad browser support." + } + ], + "stop_reason": "end_turn", + "stop_sequence": null, + "usage": { + "input_tokens": 278, + "cache_creation_input_tokens": 0, + "cache_read_input_tokens": 0, + "output_tokens": 2983 + } +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..0087628 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# inkwell.scroll.pub +Website generated by Claude from prompt: a blogger home pade with this content: \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..b57b57b --- /dev/null +++ b/script.js @@ -0,0 +1,56 @@ +document.addEventListener('DOMContentLoaded', () => { + // Mobile menu toggle + const menuToggle = document.querySelector('.menu-toggle'); + const navLinks = document.querySelector('.nav-links'); + + menuToggle.addEventListener('click', () => { + navLinks.classList.toggle('active'); + + // Animate hamburger menu + const spans = menuToggle.querySelectorAll('span'); + spans.forEach(span => span.classList.toggle('active')); + }); + + // Smooth scroll for anchor links + document.querySelectorAll('a[href^="#"]').forEach(anchor => { + anchor.addEventListener('click', function (e) { + e.preventDefault(); + document.querySelector(this.getAttribute('href')).scrollIntoView({ + behavior: 'smooth' + }); + }); + }); + + // Newsletter form submission + const subscribeForm = document.querySelector('.subscribe-form'); + if (subscribeForm) { + subscribeForm.addEventListener('submit', (e) => { + e.preventDefault(); + const email = subscribeForm.querySelector('input[type="email"]').value; + + // Here you would typically send this to your backend + console.log('Subscription request for:', email); + + // Show success message + alert('Thanks for subscribing!'); + subscribeForm.reset(); + }); + } + + // Add scroll-based animations + const observerOptions = { + threshold: 0.1 + }; + + const observer = new IntersectionObserver((entries) => { + entries.forEach(entry => { + if (entry.isIntersecting) { + entry.target.classList.add('visible'); + } + }); + }, observerOptions); + + document.querySelectorAll('.post-card').forEach(card => { + observer.observe(card); + }); +}); diff --git a/style.css b/style.css new file mode 100644 index 0000000..5968326 --- /dev/null +++ b/style.css @@ -0,0 +1,240 @@ +:root { + --primary-color: #2a2a2a; + --accent-color: #6b4ce6; + --text-color: #333; + --background-color: #fff; + --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); +} + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: 'Segoe UI', system-ui, sans-serif; + line-height: 1.6; + color: var(--text-color); + background-color: var(--background-color); +} + +.site-header { + position: fixed; + width: 100%; + background: rgba(255, 255, 255, 0.98); + backdrop-filter: blur(10px); + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); + z-index: 1000; +} + +.main-nav { + max-width: 1200px; + margin: 0 auto; + padding: 1rem; + display: flex; + justify-content: space-between; + align-items: center; +} + +.logo { + font-size: 1.8rem; + font-weight: bold; + color: var(--accent-color); +} + +.nav-links { + display: flex; + list-style: none; + gap: 2rem; +} + +.nav-links a { + text-decoration: none; + color: var(--primary-color); + font-weight: 500; + transition: color 0.3s ease; +} + +.nav-links a:hover { + color: var(--accent-color); +} + +.menu-toggle { + display: none; +} + +.hero { + height: 80vh; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + text-align: center; + background: linear-gradient(135deg, #6b4ce6 0%, #9c7af2 100%); + color: white; + padding: 2rem; +} + +.hero h1 { + font-size: 3.5rem; + margin-bottom: 1rem; +} + +.hero p { + font-size: 1.5rem; + opacity: 0.9; +} + +.featured-posts { + max-width: 1200px; + margin: 4rem auto; + padding: 0 1rem; +} + +.post-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: 2rem; + margin-top: 2rem; +} + +.post-card { + background: white; + border-radius: 10px; + overflow: hidden; + box-shadow: var(--card-shadow); + transition: transform 0.3s ease; +} + +.post-card:hover { + transform: translateY(-5px); +} + +.post-image { + height: 200px; + background: var(--accent-color); + opacity: 0.8; +} + +.post-content { + padding: 1.5rem; +} + +.read-more { + display: inline-block; + margin-top: 1rem; + color: var(--accent-color); + text-decoration: none; + font-weight: 500; +} + +.newsletter { + background: #f8f9fa; + padding: 4rem 1rem; + text-align: center; +} + +.subscribe-form { + max-width: 500px; + margin: 2rem auto; + display: flex; + gap: 1rem; +} + +.subscribe-form input { + flex: 1; + padding: 0.8rem; + border: 2px solid #ddd; + border-radius: 5px; + font-size: 1rem; +} + +.subscribe-form button { + padding: 0.8rem 1.5rem; + background: var(--accent-color); + color: white; + border: none; + border-radius: 5px; + cursor: pointer; + transition: background 0.3s ease; +} + +.subscribe-form button:hover { + background: #5636c9; +} + +footer { + background: var(--primary-color); + color: white; + padding: 2rem 1rem; + margin-top: 4rem; +} + +.footer-content { + max-width: 1200px; + margin: 0 auto; + text-align: center; +} + +.footer-links { + margin-bottom: 1rem; +} + +.footer-links a { + color: white; + text-decoration: none; + margin: 0 1rem; + opacity: 0.8; + transition: opacity 0.3s ease; +} + +.footer-links a:hover { + opacity: 1; +} + +@media (max-width: 768px) { + .menu-toggle { + display: block; + background: none; + border: none; + cursor: pointer; + } + + .menu-toggle span { + display: block; + width: 25px; + height: 3px; + background: var(--primary-color); + margin: 5px 0; + transition: 0.3s; + } + + .nav-links { + display: none; + position: absolute; + top: 100%; + left: 0; + right: 0; + background: white; + flex-direction: column; + padding: 1rem; + text-align: center; + } + + .nav-links.active { + display: flex; + } + + .hero h1 { + font-size: 2.5rem; + } + + .hero p { + font-size: 1.2rem; + } + + .subscribe-form { + flex-direction: column; + } +}