------------------------------------------------------------
commit 7040715c1fdf0e078a5da8469ae7ffb0f95f48ad
Author: ffff:72.234.190.31 <ffff:72.234.190.31@hub.scroll.pub> Date: Mon Dec 9 22:50:28 2024 +0000 updated index.scroll diff --git a/index.scroll b/index.scroll index 4442ed6..8e7cd22 100644 --- a/index.scroll +++ b/index.scroll @@ -1,4 +1,2 @@ buildHtml -theme roboto - -Hello World my name is \ No newline at end of file +claude.html ------------------------------------------------------------
commit ea7f3497e1c837aaa4b1233341cdc8e83c56280f
Author: ffff:72.234.190.31 <ffff:72.234.190.31@hub.scroll.pub> Date: Mon Dec 9 22:50:20 2024 +0000 updated claude.html diff --git a/claude.html b/claude.html index e69de29..60173ac 100644 --- a/claude.html +++ b/claude.html @@ -0,0 +1,332 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <title>Frameee - Create Stunning Animated Text Videos</title> + <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script> + <style> + :root { + --primary: #4f46e5; + --secondary: #818cf8; + --dark: #1f2937; + --light: #f3f4f6; + } + + * { + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, + Oxygen, Ubuntu, Cantarell, sans-serif; + } + + body { + background-color: var(--light); + color: var(--dark); + line-height: 1.6; + } + + .header { + background: linear-gradient(135deg, var(--primary), var(--secondary)); + padding: 1.5rem; + position: fixed; + width: 100%; + z-index: 100; + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); + } + + .nav { + max-width: 1200px; + margin: 0 auto; + display: flex; + justify-content: space-between; + align-items: center; + } + + .logo { + font-size: 1.8rem; + font-weight: bold; + color: white; + text-decoration: none; + } + + .nav-links a { + color: white; + text-decoration: none; + margin-left: 2rem; + font-weight: 500; + transition: opacity 0.3s; + } + + .nav-links a:hover { + opacity: 0.8; + } + + .hero { + padding: 12rem 2rem 6rem; + text-align: center; + background: white; + } + + .hero-content { + max-width: 800px; + margin: 0 auto; + } + + .hero h1 { + font-size: 3.5rem; + margin-bottom: 1.5rem; + background: linear-gradient(135deg, var(--primary), var(--secondary)); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + opacity: 0; + transform: translateY(20px); + } + + .hero p { + font-size: 1.5rem; + color: #4b5563; + margin-bottom: 2rem; + opacity: 0; + transform: translateY(20px); + } + + .cta-button { + display: inline-block; + padding: 1rem 2rem; + background: linear-gradient(135deg, var(--primary), var(--secondary)); + color: white; + text-decoration: none; + border-radius: 50px; + font-weight: bold; + font-size: 1.2rem; + transition: + transform 0.3s, + box-shadow 0.3s; + opacity: 0; + transform: translateY(20px); + } + + .cta-button:hover { + transform: translateY(-2px); + box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4); + } + + .features { + padding: 6rem 2rem; + background: var(--light); + } + + .features-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: 2rem; + max-width: 1200px; + margin: 0 auto; + } + + .feature-card { + background: white; + padding: 2rem; + border-radius: 1rem; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); + text-align: center; + transition: transform 0.3s; + opacity: 0; + transform: translateY(20px); + } + + .feature-card:hover { + transform: translateY(-5px); + } + + .feature-icon { + font-size: 2.5rem; + margin-bottom: 1rem; + color: var(--primary); + } + + .feature-card h3 { + margin-bottom: 1rem; + color: var(--dark); + } + + .feature-card p { + color: #6b7280; + } + + .demo { + width: 100%; + max-width: 600px; + height: 400px; + margin: 3rem auto; + background: var(--dark); + border-radius: 1rem; + overflow: hidden; + position: relative; + opacity: 0; + transform: translateY(20px); + } + + .demo-text { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + color: white; + font-size: 2rem; + font-weight: bold; + width: 100%; + text-align: center; + opacity: 0; + } + + @media (max-width: 768px) { + .nav-links { + display: none; + } + + .hero h1 { + font-size: 2.5rem; + } + + .hero p { + font-size: 1.2rem; + } + } + </style> + </head> + <body> + <header class="header"> + <nav class="nav"> + <a href="#" class="logo">Frameee</a> + <div class="nav-links"> + <a href="#features">Features</a> + <a href="#pricing">Pricing</a> + <a href="#contact">Contact</a> + </div> + </nav> + </header> + + <section class="hero"> + <div class="hero-content"> + <h1>Create Stunning Animated Text Videos</h1> + <p> + Boost your social media presence and grow your engagement with ease + </p> + <a href="#" class="cta-button">Get Started Free</a> + <div class="demo"> + <div class="demo-text">Your Message Here</div> + </div> + </div> + </section> + + <section class="features"> + <div class="features-grid"> + <div class="feature-card"> + <div class="feature-icon">✨</div> + <h3>Beautiful Templates</h3> + <p> + Choose from hundreds of professionally designed templates to create + eye-catching videos in minutes. + </p> + </div> + <div class="feature-card"> + <div class="feature-icon">🚀</div> + <h3>Easy to Use</h3> + <p> + No design skills required. Our intuitive interface makes video + creation a breeze. + </p> + </div> + <div class="feature-card"> + <div class="feature-icon">📱</div> + <h3>Social Media Ready</h3> + <p> + Export your videos in perfect formats for all major social media + platforms. + </p> + </div> + </div> + </section> + + <script> + // Animation for hero elements + gsap.to(".hero h1", { + opacity: 1, + y: 0, + duration: 1, + delay: 0.2, + }); + + gsap.to(".hero p", { + opacity: 1, + y: 0, + duration: 1, + delay: 0.4, + }); + + gsap.to(".cta-button", { + opacity: 1, + y: 0, + duration: 1, + delay: 0.6, + }); + + gsap.to(".demo", { + opacity: 1, + y: 0, + duration: 1, + delay: 0.8, + }); + + // Feature cards animation + gsap.to(".feature-card", { + opacity: 1, + y: 0, + duration: 1, + delay: 1, + stagger: 0.2, + }); + + // Demo text animation + const demoTexts = [ + "Your Message Here", + "Boost Engagement 📈", + "Go Viral ⭐", + "Stand Out 🌟", + ]; + + let currentText = 0; + + function animateText() { + gsap.to(".demo-text", { + opacity: 0, + y: -20, + duration: 0.5, + onComplete: () => { + document.querySelector(".demo-text").textContent = + demoTexts[currentText]; + currentText = (currentText + 1) % demoTexts.length; + gsap.to(".demo-text", { + opacity: 1, + y: 0, + duration: 0.5, + }); + }, + }); + } + + // Initial text animation + gsap.to(".demo-text", { + opacity: 1, + duration: 1, + delay: 1, + }); + + // Start the text rotation + setInterval(animateText, 3000); + </script> + </body> +</html> ------------------------------------------------------------
commit 9ae7d759c582d000f4bd59834bc6d02f169493c2
Author: ffff:72.234.190.31 <ffff:72.234.190.31@hub.scroll.pub> Date: Mon Dec 9 22:50:16 2024 +0000 created claude.html diff --git a/claude.html b/claude.html new file mode 100644 index 0000000..e69de29 ------------------------------------------------------------
commit 93e43037b7794c5d3de89eaf6afe3e3d561d8df3
Author: root <root@hub.scroll.pub> Date: Sun Nov 10 20:12:15 2024 +0000 initial blank_template template diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bd1a52d --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +.DS_Store +*.html +*.txt +*.xml +*.css +*.js +*.csv +requests.scroll \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..4442ed6 --- /dev/null +++ b/index.scroll @@ -0,0 +1,4 @@ +buildHtml +theme roboto + +Hello World my name is \ No newline at end of file