Changes to moonscroll.pub1.scroll.pub

root
root
10 days ago
Initial commit
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://moonscroll.pub
+ metaTags
+ editButton /edit.html
+ title MoonScroll | The Next Gen Meme Coin
+ style.css
+ header
+ class hero-section
+ div
+ class floating-elements
+ span 🚀
+ span 🌙
+ span 💎
+ span 🪙
+ nav
+ class main-nav
+ div
+ class logo
+ span Moon
+ class highlight
+ span Scroll
+ div
+ class nav-links
+ a Home
+ href #
+ a Tokenomics
+ href #tokenomics
+ a Roadmap
+ href #roadmap
+ a Community
+ href #community
+ div
+ class hero-content
+ h1 MoonScroll
+ class glow
+ p The First Scroll-Powered Meme Coin
+ div
+ class cta-buttons
+ a Buy Now
+ class primary-btn
+ href #buy
+ a Whitepaper
+ class secondary-btn
+ href #whitepaper
+ main
+ section
+ id tokenomics
+ class tokenomics-section
+ h2 Tokenomics
+ div
+ class token-grid
+ div
+ class token-card
+ h3 Total Supply
+ p 1,000,000,000
+ div
+ class token-card
+ h3 Burn Rate
+ p 2% Per Transaction
+ div
+ class token-card
+ h3 Liquidity Pool
+ p 40% Locked
+ div
+ class token-card
+ h3 Community Rewards
+ p 5% Redistribution
+ section
+ id roadmap
+ class roadmap-section
+ h2 Roadmap
+ div
+ class timeline
+ div
+ class milestone
+ h3 Phase 1
+ p Launch & Community Building
+ div
+ class milestone
+ h3 Phase 2
+ p Exchange Listings
+ div
+ class milestone
+ h3 Phase 3
+ p DeFi Integration
+ div
+ class milestone
+ h3 Phase 4
+ p Metaverse Expansion
+ section
+ id community
+ class community-section
+ h2 Join Our Community
+ div
+ class social-grid
+ a
+ class social-card
+ href #
+ span 🐦
+ p Twitter
+ a
+ class social-card
+ href #
+ span 💬
+ p Telegram
+ a
+ class social-card
+ href #
+ span 🎮
+ p Discord
+ footer
+ div
+ class footer-content
+ p Built with 💜 by the MoonScroll Community
+ div
+ class footer-links
+ a Terms
+ href #terms
+ a Privacy
+ href #privacy
+ a Documentation
+ href #docs
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "msg_01TcemX2aXmMg1RRG1JgxJrf",
+ "type": "message",
+ "role": "assistant",
+ "model": "claude-3-5-sonnet-20241022",
+ "content": [
+ {
+ "type": "text",
+ "text": "I'll help create a meme coin website with the domain \"moonscroll.pub\" - playing on the crypto community's \"to the moon\" phrase.\n\n---domain---\nmoonscroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://moonscroll.pub\nmetaTags\neditButton /edit.html\ntitle MoonScroll | The Next Gen Meme Coin\nstyle.css\nheader\n class hero-section\n div\n class floating-elements\n span 🚀\n span 🌙\n span 💎\n span 🪙\n nav\n class main-nav\n div\n class logo\n span Moon\n class highlight\n span Scroll\n div\n class nav-links\n a Home\n href #\n a Tokenomics\n href #tokenomics\n a Roadmap\n href #roadmap\n a Community\n href #community\n div\n class hero-content\n h1 MoonScroll\n class glow\n p The First Scroll-Powered Meme Coin\n div\n class cta-buttons\n a Buy Now\n class primary-btn\n href #buy\n a Whitepaper\n class secondary-btn\n href #whitepaper\nmain\n section\n id tokenomics\n class tokenomics-section\n h2 Tokenomics\n div\n class token-grid\n div\n class token-card\n h3 Total Supply\n p 1,000,000,000\n div\n class token-card\n h3 Burn Rate\n p 2% Per Transaction\n div\n class token-card\n h3 Liquidity Pool\n p 40% Locked\n div\n class token-card\n h3 Community Rewards\n p 5% Redistribution\n section\n id roadmap\n class roadmap-section\n h2 Roadmap\n div\n class timeline\n div\n class milestone\n h3 Phase 1\n p Launch & Community Building\n div\n class milestone\n h3 Phase 2\n p Exchange Listings\n div\n class milestone\n h3 Phase 3\n p DeFi Integration\n div\n class milestone\n h3 Phase 4\n p Metaverse Expansion\n section\n id community\n class community-section\n h2 Join Our Community\n div\n class social-grid\n a\n class social-card\n href #\n span 🐦\n p Twitter\n a\n class social-card\n href #\n span 💬\n p Telegram\n a\n class social-card\n href #\n span 🎮\n p Discord\nfooter\n div\n class footer-content\n p Built with 💜 by the MoonScroll Community\n div\n class footer-links\n a Terms\n href #terms\n a Privacy\n href #privacy\n a Documentation\n href #docs\nscript.js\n---style.css---\n:root {\n --primary: #6c2bd9;\n --secondary: #2b3bd9;\n --background: #0a0b1e;\n --text: #ffffff;\n --card-bg: rgba(108, 43, 217, 0.1);\n --glow: 0 0 10px rgba(108, 43, 217, 0.5);\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: 'Inter', sans-serif;\n background: var(--background);\n color: var(--text);\n line-height: 1.6;\n}\n\n.hero-section {\n min-height: 100vh;\n position: relative;\n overflow: hidden;\n padding: 2rem;\n background: linear-gradient(45deg, #0a0b1e, #1a1b3e);\n}\n\n.floating-elements span {\n position: absolute;\n font-size: 2rem;\n animation: float 6s infinite;\n opacity: 0.5;\n}\n\n.floating-elements span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }\n.floating-elements span:nth-child(2) { top: 40%; right: 20%; animation-delay: 1s; }\n.floating-elements span:nth-child(3) { bottom: 30%; left: 30%; animation-delay: 2s; }\n.floating-elements span:nth-child(4) { bottom: 40%; right: 10%; animation-delay: 3s; }\n\n.main-nav {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 1rem 0;\n}\n\n.logo {\n font-size: 1.5rem;\n font-weight: bold;\n}\n\n.highlight {\n color: var(--primary);\n}\n\n.nav-links a {\n color: var(--text);\n text-decoration: none;\n margin-left: 2rem;\n transition: color 0.3s;\n}\n\n.nav-links a:hover {\n color: var(--primary);\n}\n\n.hero-content {\n text-align: center;\n margin-top: 10vh;\n}\n\n.glow {\n font-size: 4rem;\n margin-bottom: 1rem;\n animation: glow 2s ease-in-out infinite alternate;\n}\n\n.cta-buttons {\n margin-top: 2rem;\n}\n\n.primary-btn, .secondary-btn {\n padding: 1rem 2rem;\n border-radius: 50px;\n text-decoration: none;\n margin: 0 1rem;\n transition: transform 0.3s;\n}\n\n.primary-btn {\n background: var(--primary);\n color: var(--text);\n}\n\n.secondary-btn {\n border: 2px solid var(--primary);\n color: var(--text);\n}\n\n.primary-btn:hover, .secondary-btn:hover {\n transform: translateY(-3px);\n}\n\n.token-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 2rem;\n padding: 4rem 2rem;\n}\n\n.token-card {\n background: var(--card-bg);\n padding: 2rem;\n border-radius: 15px;\n text-align: center;\n backdrop-filter: blur(10px);\n transition: transform 0.3s;\n}\n\n.token-card:hover {\n transform: translateY(-5px);\n}\n\n.timeline {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n gap: 2rem;\n padding: 4rem 2rem;\n}\n\n.milestone {\n background: var(--card-bg);\n padding: 2rem;\n border-radius: 15px;\n text-align: center;\n}\n\n.social-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));\n gap: 2rem;\n padding: 2rem;\n}\n\n.social-card {\n background: var(--card-bg);\n padding: 2rem;\n border-radius: 15px;\n text-align: center;\n text-decoration: none;\n color: var(--text);\n transition: transform 0.3s;\n}\n\n.social-card:hover {\n transform: scale(1.05);\n}\n\n@keyframes float {\n 0%, 100% { transform: translateY(0); }\n 50% { transform: translateY(-20px); }\n}\n\n@keyframes glow {\n from { text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary); }\n to { text-shadow: 0 0 20px var(--primary), 0 0 30px var(--primary); }\n}\n\n@media (max-width: 768px) {\n .nav-links {\n display: none;\n }\n \n .hero-content h1 {\n font-size: 2.5rem;\n }\n \n .cta-buttons {\n flex-direction: column;\n gap: 1rem;\n }\n \n .primary-btn, .secondary-btn {\n margin: 0.5rem 0;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', () => {\n // Smooth scroll 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 // Floating animation randomizer\n const floatingElements = document.querySelectorAll('.floating-elements span');\n floatingElements.forEach(element => {\n element.style.left = `${Math.random() * 90}%`;\n element.style.animationDuration = `${6 + Math.random() * 4}s`;\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.classList.add('fade-in');\n }\n });\n }, { threshold: 0.1 });\n\n document.querySelectorAll('section').forEach(section => {\n observer.observe(section);\n });\n});\n---end---\n\nThis website features:\n1. Animated floating crypto symbols in the hero section\n2. Glowing text effects\n3. Smooth hover animations\n4. Glassmorphism design elements\n5. Responsive grid layouts\n6. Interactive tokenomics cards\n7. Modern gradient backgrounds\n8. Smooth scroll behavior\n9. Intersection Observer for scroll animations\n10. Mobile-responsive design\n\nThe color scheme uses a deep purple theme that's popular in crypto/web3 projects, with a dark background for that modern tech feel. The floating animations and glow effects create an engaging, dynamic experience while maintaining professionalism."
+ }
+ ],
+ "stop_reason": "end_turn",
+ "stop_sequence": null,
+ "usage": {
+ "input_tokens": 833,
+ "cache_creation_input_tokens": 0,
+ "cache_read_input_tokens": 0,
+ "output_tokens": 2601
+ }
+ }
readme.scroll
Changed around line 1
+ # moonscroll.pub1.scroll.pub
+
+ Prompt: website
+ Agent: claude
+ Model: claude-3-5-sonnet-20241022
+
+ ## User prompt
+ meme coin web3 website with creative animated hero section and cool tokenomics
+
+ ## System prompt
+ You are an expert web developer. Create a website based on this request: "meme coin web3 website with creative animated hero section and cool tokenomics "
+
+ Requirements:
+ - Use only Scroll, CSS, and JavaScript (NO frameworks, NO external dependencies)
+ - Create clean, semantic HTML5
+ - Make it mobile-responsive
+ - Follow modern best practices and accessibility guidelines
+ - Keep it simple but professional
+ - Use only relative links and no external resources
+ - Do not put a copyright symbol or all rights reserved in the footer.
+ - Make it beautiful. Dazzling. Advanced used of CSS.
+
+ As a refresher, for doing the html body, Scroll is a whitespace based language that uses a single indented space to mark a line (aka particle) as a subparticle of a parent line.
+
+ For example:
+
+ header
+ class hero
+ nav
+ div Scroll
+ class logo
+ div
+ class nav-links
+ a Features
+ href #features
+ a Examples
+ href #examples
+ a Edit
+ href edit.html
+ a GitHub
+ class cta-button
+ href https://github.com/breck7/scroll
+ div
+ class hero-content
+ h1 Write Better with Scroll
+ p The extendible markup language that makes source beautiful and compiles to anything
+ a Get Started
+ class primary-button
+ href https://hub.scroll.pub/
+ main
+ section
+ id features
+ class features
+ h2 Why Scroll?
+ div
+ class feature-grid
+ div
+ class feature-card
+ div ⚡
+ class feature-icon
+ h3 Simple Syntax
+ p Like Markdown, but more powerful. No parentheses needed.
+ div
+ class feature-card
+ div 🧩
+ class feature-icon
+ h3 Extendible
+ p Build your own custom parsers.
+ div
+ class feature-card
+ div 🎨
+ class feature-icon
+ h3 Beautiful Output
+ p Create stunning documents with minimal effort.
+ div
+ class feature-card
+ div 🚀
+ class feature-icon
+ h3 Fast & Light
+ p Built on the efficient PPS Stack.
+ section
+ id examples
+ class code-demo
+ h2 See It In Action
+ div
+ class code-container
+ pre
+ class code-example
+ div
+ class code-output
+ footer
+ div
+ class footer-content
+ div
+ class footer-links
+ a Documentation
+ href https://scroll.pub/tutorial.html
+ a Community
+ href https://www.reddit.com/r/WorldWideScroll/
+ a Blog
+ href https://scroll.pub/blog
+ p Started by Breck Yunits. Evolved by a community.
+ https://twitter.com/breckyunits Breck Yunits
+ https://github.com/breck7/scroll/graphs/contributors community
+
+
+ First suggest a short, memorable domain name ending in scroll.pub that represents this website. Then provide the website files. Use this exact format:
+
+ ---domain---
+ (domainscroll.pub here)
+ ---index.scroll---
+ buildHtml
+ baseUrl https://(domainscroll.pub here)
+ metaTags
+ editButton /edit.html
+ title (Title here)
+ style.css
+
+ (body content here. no blank lines please.)
+
+ script.js
+ ---style.css---
+ (CSS content here)
+ ---script.js---
+ (JavaScript content here)
+ ---end---
script.js
Changed around line 1
+ document.addEventListener('DOMContentLoaded', () => {
+ // Smooth scroll for navigation links
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
+ anchor.addEventListener('click', function (e) {
+ e.preventDefault();
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
+ behavior: 'smooth'
+ });
+ });
+ });
+
+ // Floating animation randomizer
+ const floatingElements = document.querySelectorAll('.floating-elements span');
+ floatingElements.forEach(element => {
+ element.style.left = `${Math.random() * 90}%`;
+ element.style.animationDuration = `${6 + Math.random() * 4}s`;
+ });
+
+ // Intersection Observer for fade-in animations
+ const observer = new IntersectionObserver((entries) => {
+ entries.forEach(entry => {
+ if (entry.isIntersecting) {
+ entry.target.classList.add('fade-in');
+ }
+ });
+ }, { threshold: 0.1 });
+
+ document.querySelectorAll('section').forEach(section => {
+ observer.observe(section);
+ });
+ });
style.css
Changed around line 1
+ :root {
+ --primary: #6c2bd9;
+ --secondary: #2b3bd9;
+ --background: #0a0b1e;
+ --text: #ffffff;
+ --card-bg: rgba(108, 43, 217, 0.1);
+ --glow: 0 0 10px rgba(108, 43, 217, 0.5);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ background: var(--background);
+ color: var(--text);
+ line-height: 1.6;
+ }
+
+ .hero-section {
+ min-height: 100vh;
+ position: relative;
+ overflow: hidden;
+ padding: 2rem;
+ background: linear-gradient(45deg, #0a0b1e, #1a1b3e);
+ }
+
+ .floating-elements span {
+ position: absolute;
+ font-size: 2rem;
+ animation: float 6s infinite;
+ opacity: 0.5;
+ }
+
+ .floating-elements span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
+ .floating-elements span:nth-child(2) { top: 40%; right: 20%; animation-delay: 1s; }
+ .floating-elements span:nth-child(3) { bottom: 30%; left: 30%; animation-delay: 2s; }
+ .floating-elements span:nth-child(4) { bottom: 40%; right: 10%; animation-delay: 3s; }
+
+ .main-nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ }
+
+ .highlight {
+ color: var(--primary);
+ }
+
+ .nav-links a {
+ color: var(--text);
+ text-decoration: none;
+ margin-left: 2rem;
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .hero-content {
+ text-align: center;
+ margin-top: 10vh;
+ }
+
+ .glow {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ animation: glow 2s ease-in-out infinite alternate;
+ }
+
+ .cta-buttons {
+ margin-top: 2rem;
+ }
+
+ .primary-btn, .secondary-btn {
+ padding: 1rem 2rem;
+ border-radius: 50px;
+ text-decoration: none;
+ margin: 0 1rem;
+ transition: transform 0.3s;
+ }
+
+ .primary-btn {
+ background: var(--primary);
+ color: var(--text);
+ }
+
+ .secondary-btn {
+ border: 2px solid var(--primary);
+ color: var(--text);
+ }
+
+ .primary-btn:hover, .secondary-btn:hover {
+ transform: translateY(-3px);
+ }
+
+ .token-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ }
+
+ .token-card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 15px;
+ text-align: center;
+ backdrop-filter: blur(10px);
+ transition: transform 0.3s;
+ }
+
+ .token-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .timeline {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ }
+
+ .milestone {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 15px;
+ text-align: center;
+ }
+
+ .social-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .social-card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 15px;
+ text-align: center;
+ text-decoration: none;
+ color: var(--text);
+ transition: transform 0.3s;
+ }
+
+ .social-card:hover {
+ transform: scale(1.05);
+ }
+
+ @keyframes float {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-20px); }
+ }
+
+ @keyframes glow {
+ from { text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary); }
+ to { text-shadow: 0 0 20px var(--primary), 0 0 30px var(--primary); }
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .cta-buttons {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .primary-btn, .secondary-btn {
+ margin: 0.5rem 0;
+ }
+ }