commit 41a428054f0aef348c5839afc1fb9ebbf1aeed35
Author: root <root@hub.scroll.pub>
Date: 2024-12-28 09:34:43 +0000
Subject: Initial commit
diff --git a/body.html b/body.html
new file mode 100644
index 0000000..920af59
--- /dev/null
+++ b/body.html
@@ -0,0 +1,66 @@
+<header>
+ <nav>
+ <div class="logo">Dota2Guide</div>
+ <div class="menu-toggle">
+ <span></span>
+ <span></span>
+ <span></span>
+ </div>
+ <ul class="nav-links">
+ <li><a href="#heroes">Heroes</a></li>
+ <li><a href="#mechanics">Mechanics</a></li>
+ <li><a href="#strategies">Strategies</a></li>
+ <li><a href="#items">Items</a></li>
+ </ul>
+ </nav>
+</header>
+
+<main>
+ <section class="hero">
+ <h1>Master Dota 2</h1>
+ <p>Comprehensive guides for beginners and veterans alike</p>
+ </section>
+
+ <section id="heroes" class="content-section">
+ <h2>Heroes Guide</h2>
+ <div class="grid-container">
+ <div class="grid-item">
+ <h3>Strength Heroes</h3>
+ <p>Tank and sustain focused heroes</p>
+ </div>
+ <div class="grid-item">
+ <h3>Agility Heroes</h3>
+ <p>Damage and speed focused heroes</p>
+ </div>
+ <div class="grid-item">
+ <h3>Intelligence Heroes</h3>
+ <p>Spell and utility focused heroes</p>
+ </div>
+ </div>
+ </section>
+
+ <section id="mechanics" class="content-section">
+ <h2>Game Mechanics</h2>
+ <div class="mechanics-container">
+ <div class="mechanic-card">
+ <h3>Last Hitting</h3>
+ <p>Master the art of farming gold</p>
+ </div>
+ <div class="mechanic-card">
+ <h3>Map Control</h3>
+ <p>Vision and territorial dominance</p>
+ </div>
+ </div>
+ </section>
+</main>
+
+<footer>
+ <div class="footer-content">
+ <p>Made with passion for the Dota 2 community</p>
+ <nav class="footer-nav">
+ <a href="#about">About</a>
+ <a href="#contact">Contact</a>
+ <a href="#privacy">Privacy</a>
+ </nav>
+ </div>
+</footer>
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..7b979b7
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,8 @@
+buildHtml
+baseUrl https://dota2guide.scroll.pub
+metaTags
+editButton /edit.html
+title Dota 2 Guide - Master the Ancient
+style.css
+body.html
+script.js
diff --git a/prompt.json b/prompt.json
new file mode 100644
index 0000000..94aad9b
--- /dev/null
+++ b/prompt.json
@@ -0,0 +1,20 @@
+{
+ "id": "msg_017ASqG8oDLQes2UmbfqtYSv",
+ "type": "message",
+ "role": "assistant",
+ "model": "claude-3-5-sonnet-20241022",
+ "content": [
+ {
+ "type": "text",
+ "text": "Here's a Dota 2 guide website with a sky blue theme:\n\n---domain---\ndota2guide.scroll.pub\n\n---index.scroll---\nbuildHtml\nbaseUrl https://dota2guide.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Dota 2 Guide - Master the Ancient\nstyle.css\nbody.html\nscript.js\n\n---body.html---\n<header>\n <nav>\n <div class=\"logo\">Dota2Guide</div>\n <div class=\"menu-toggle\">\n <span></span>\n <span></span>\n <span></span>\n </div>\n <ul class=\"nav-links\">\n <li><a href=\"#heroes\">Heroes</a></li>\n <li><a href=\"#mechanics\">Mechanics</a></li>\n <li><a href=\"#strategies\">Strategies</a></li>\n <li><a href=\"#items\">Items</a></li>\n </ul>\n </nav>\n</header>\n\n<main>\n <section class=\"hero\">\n <h1>Master Dota 2</h1>\n <p>Comprehensive guides for beginners and veterans alike</p>\n </section>\n\n <section id=\"heroes\" class=\"content-section\">\n <h2>Heroes Guide</h2>\n <div class=\"grid-container\">\n <div class=\"grid-item\">\n <h3>Strength Heroes</h3>\n <p>Tank and sustain focused heroes</p>\n </div>\n <div class=\"grid-item\">\n <h3>Agility Heroes</h3>\n <p>Damage and speed focused heroes</p>\n </div>\n <div class=\"grid-item\">\n <h3>Intelligence Heroes</h3>\n <p>Spell and utility focused heroes</p>\n </div>\n </div>\n </section>\n\n <section id=\"mechanics\" class=\"content-section\">\n <h2>Game Mechanics</h2>\n <div class=\"mechanics-container\">\n <div class=\"mechanic-card\">\n <h3>Last Hitting</h3>\n <p>Master the art of farming gold</p>\n </div>\n <div class=\"mechanic-card\">\n <h3>Map Control</h3>\n <p>Vision and territorial dominance</p>\n </div>\n </div>\n </section>\n</main>\n\n<footer>\n <div class=\"footer-content\">\n <p>Made with passion for the Dota 2 community</p>\n <nav class=\"footer-nav\">\n <a href=\"#about\">About</a>\n <a href=\"#contact\">Contact</a>\n <a href=\"#privacy\">Privacy</a>\n </nav>\n </div>\n</footer>\n\n---style.css---\n:root {\n --primary-color: #87CEEB;\n --secondary-color: #1E90FF;\n --text-color: #333;\n --background-color: #f5f9ff;\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: 'Arial', sans-serif;\n line-height: 1.6;\n color: var(--text-color);\n background-color: var(--background-color);\n}\n\nheader {\n background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));\n padding: 1rem;\n box-shadow: 0 2px 10px rgba(0,0,0,0.1);\n}\n\n.logo {\n font-size: 1.5rem;\n font-weight: bold;\n color: white;\n}\n\nnav {\n display: flex;\n justify-content: space-between;\n align-items: center;\n max-width: 1200px;\n margin: 0 auto;\n}\n\n.nav-links {\n display: flex;\n list-style: none;\n}\n\n.nav-links li a {\n color: white;\n text-decoration: none;\n padding: 0.5rem 1rem;\n transition: all 0.3s ease;\n}\n\n.nav-links li a:hover {\n background-color: rgba(255,255,255,0.2);\n border-radius: 4px;\n}\n\n.hero {\n text-align: center;\n padding: 4rem 2rem;\n background: linear-gradient(rgba(135,206,235,0.1), rgba(135,206,235,0.3));\n}\n\n.hero h1 {\n font-size: 3rem;\n margin-bottom: 1rem;\n color: var(--secondary-color);\n}\n\n.content-section {\n padding: 4rem 2rem;\n max-width: 1200px;\n margin: 0 auto;\n}\n\n.grid-container {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 2rem;\n margin-top: 2rem;\n}\n\n.grid-item {\n background: white;\n padding: 2rem;\n border-radius: 8px;\n box-shadow: 0 4px 6px rgba(0,0,0,0.1);\n transition: transform 0.3s ease;\n}\n\n.grid-item:hover {\n transform: translateY(-5px);\n}\n\n.mechanics-container {\n display: flex;\n flex-wrap: wrap;\n gap: 2rem;\n margin-top: 2rem;\n}\n\n.mechanic-card {\n flex: 1;\n min-width: 250px;\n background: white;\n padding: 2rem;\n border-radius: 8px;\n box-shadow: 0 4px 6px rgba(0,0,0,0.1);\n}\n\nfooter {\n background: var(--secondary-color);\n color: white;\n padding: 2rem;\n margin-top: 4rem;\n}\n\n.footer-content {\n max-width: 1200px;\n margin: 0 auto;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.footer-nav a {\n color: white;\n text-decoration: none;\n margin-left: 1rem;\n}\n\n.menu-toggle {\n display: none;\n flex-direction: column;\n gap: 5px;\n cursor: pointer;\n}\n\n.menu-toggle span {\n width: 25px;\n height: 3px;\n background-color: white;\n transition: all 0.3s ease;\n}\n\n@media (max-width: 768px) {\n .menu-toggle {\n display: flex;\n }\n\n .nav-links {\n display: none;\n width: 100%;\n position: absolute;\n top: 70px;\n left: 0;\n background: var(--secondary-color);\n flex-direction: column;\n text-align: center;\n }\n\n .nav-links.active {\n display: flex;\n }\n\n .nav-links li {\n margin: 1rem 0;\n }\n\n .footer-content {\n flex-direction: column;\n text-align: center;\n gap: 1rem;\n }\n}\n\n---script.js---\ndocument.addEventListener('DOMContentLoaded', function() {\n const menuToggle = document.querySelector('.menu-toggle');\n const navLinks = document.querySelector('.nav-links');\n\n menuToggle.addEventListener('click', function() {\n navLinks.classList.toggle('active');\n menuToggle.classList.toggle('active');\n });\n\n // Smooth scrolling for anchor links\n document.querySelectorAll('a[href^=\"#\"]').forEach(anchor => {\n anchor.addEventListener('click', function(e) {\n e.preventDefault();\n const target = document.querySelector(this.getAttribute('href'));\n if (target) {\n target.scrollIntoView({\n behavior: 'smooth',\n block: 'start'\n });\n // Close mobile menu if open\n navLinks.classList.remove('active');\n menuToggle.classList.remove('active');\n }\n });\n });\n\n // Add scroll animation for content sections\n const observerOptions = {\n threshold: 0.1,\n rootMargin: '0px 0px -50px 0px'\n };\n\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 }, observerOptions);\n\n document.querySelectorAll('.content-section').forEach(section => {\n section.style.opacity = '0';\n section.style.transform = 'translateY(20px)';\n section.style.transition = 'all 0.6s ease-out';\n observer.observe(section);\n });\n});\n\n---end---\n\nThis website features:\n- Sky blue color scheme with gradient effects\n- Responsive design with mobile menu\n- Smooth scrolling navigation\n- Animated content sections on scroll\n- Card-based layout for different game aspects\n- Modern, clean design with hover effects\n- Semantic HTML structure\n- Accessible navigation\n- Performance optimized CSS and JavaScript\n- No external dependencies\n- Mobile-first approach\n- SEO-friendly structure\n\nThe design maintains professionalism while incorporating engaging visual elements that match the gaming theme. The sky blue color scheme is implemented through CSS variables and gradients, creating a cohesive and appealing look."
+ }
+ ],
+ "stop_reason": "end_turn",
+ "stop_sequence": null,
+ "usage": {
+ "input_tokens": 296,
+ "cache_creation_input_tokens": 0,
+ "cache_read_input_tokens": 0,
+ "output_tokens": 2455
+ }
+}
\ No newline at end of file
diff --git a/readme.scroll b/readme.scroll
new file mode 100644
index 0000000..1152860
--- /dev/null
+++ b/readme.scroll
@@ -0,0 +1,2 @@
+# dota2guide.scroll.pub
+Website generated by Claude from prompt: create a website on video game guide for the game Dota 2. be creative and have the theme to be sky blue
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..c97d2d1
--- /dev/null
+++ b/script.js
@@ -0,0 +1,48 @@
+document.addEventListener('DOMContentLoaded', function() {
+ const menuToggle = document.querySelector('.menu-toggle');
+ const navLinks = document.querySelector('.nav-links');
+
+ menuToggle.addEventListener('click', function() {
+ navLinks.classList.toggle('active');
+ menuToggle.classList.toggle('active');
+ });
+
+ // Smooth scrolling for anchor links
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
+ anchor.addEventListener('click', function(e) {
+ e.preventDefault();
+ const target = document.querySelector(this.getAttribute('href'));
+ if (target) {
+ target.scrollIntoView({
+ behavior: 'smooth',
+ block: 'start'
+ });
+ // Close mobile menu if open
+ navLinks.classList.remove('active');
+ menuToggle.classList.remove('active');
+ }
+ });
+ });
+
+ // Add scroll animation for content sections
+ const observerOptions = {
+ threshold: 0.1,
+ rootMargin: '0px 0px -50px 0px'
+ };
+
+ const observer = new IntersectionObserver((entries) => {
+ entries.forEach(entry => {
+ if (entry.isIntersecting) {
+ entry.target.style.opacity = '1';
+ entry.target.style.transform = 'translateY(0)';
+ }
+ });
+ }, observerOptions);
+
+ document.querySelectorAll('.content-section').forEach(section => {
+ section.style.opacity = '0';
+ section.style.transform = 'translateY(20px)';
+ section.style.transition = 'all 0.6s ease-out';
+ observer.observe(section);
+ });
+});
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..0131144
--- /dev/null
+++ b/style.css
@@ -0,0 +1,175 @@
+:root {
+ --primary-color: #87CEEB;
+ --secondary-color: #1E90FF;
+ --text-color: #333;
+ --background-color: #f5f9ff;
+}
+
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+}
+
+header {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ padding: 1rem;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+}
+
+.logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: white;
+}
+
+nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+}
+
+.nav-links {
+ display: flex;
+ list-style: none;
+}
+
+.nav-links li a {
+ color: white;
+ text-decoration: none;
+ padding: 0.5rem 1rem;
+ transition: all 0.3s ease;
+}
+
+.nav-links li a:hover {
+ background-color: rgba(255,255,255,0.2);
+ border-radius: 4px;
+}
+
+.hero {
+ text-align: center;
+ padding: 4rem 2rem;
+ background: linear-gradient(rgba(135,206,235,0.1), rgba(135,206,235,0.3));
+}
+
+.hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ color: var(--secondary-color);
+}
+
+.content-section {
+ padding: 4rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+}
+
+.grid-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+}
+
+.grid-item {
+ background: white;
+ padding: 2rem;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+}
+
+.grid-item:hover {
+ transform: translateY(-5px);
+}
+
+.mechanics-container {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 2rem;
+ margin-top: 2rem;
+}
+
+.mechanic-card {
+ flex: 1;
+ min-width: 250px;
+ background: white;
+ padding: 2rem;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+}
+
+footer {
+ background: var(--secondary-color);
+ color: white;
+ padding: 2rem;
+ margin-top: 4rem;
+}
+
+.footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+
+.footer-nav a {
+ color: white;
+ text-decoration: none;
+ margin-left: 1rem;
+}
+
+.menu-toggle {
+ display: none;
+ flex-direction: column;
+ gap: 5px;
+ cursor: pointer;
+}
+
+.menu-toggle span {
+ width: 25px;
+ height: 3px;
+ background-color: white;
+ transition: all 0.3s ease;
+}
+
+@media (max-width: 768px) {
+ .menu-toggle {
+ display: flex;
+ }
+
+ .nav-links {
+ display: none;
+ width: 100%;
+ position: absolute;
+ top: 70px;
+ left: 0;
+ background: var(--secondary-color);
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .nav-links li {
+ margin: 1rem 0;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ text-align: center;
+ gap: 1rem;
+ }
+}