Spaces:
Running
Running
| <html lang="en" class="dark"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Spadak Code Learn | یادگیری توسعه فرانتاند | Master Frontend Development</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="components/navbar.js"></script> | |
| <script src="components/footer.js"></script> | |
| <script> | |
| tailwind.config = { | |
| darkMode: 'class', | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: { | |
| 500: '#f97316', | |
| }, | |
| secondary: { | |
| 500: '#f59e0b', | |
| } | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| .hero-gradient { | |
| background: linear-gradient(135deg, rgba(249,115,22,0.15) 0%, rgba(0,0,0,0) 70%); | |
| } | |
| .card-hover:hover { | |
| transform: translateY(-8px); | |
| box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.25); | |
| transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); | |
| } | |
| .scroll-snap { | |
| scroll-snap-type: y mandatory; | |
| } | |
| .scroll-snap > section { | |
| scroll-snap-align: start; | |
| } | |
| .tech-card { | |
| background: linear-gradient(145deg, #374151, #1f2937); | |
| border: 1px solid rgba(249, 115, 22, 0.1); | |
| } | |
| .feature-card { | |
| background: linear-gradient(145deg, #374151, #1f2937); | |
| border: 1px solid rgba(249, 115, 22, 0.1); | |
| } | |
| .nav-glass { | |
| background: rgba(17, 24, 39, 0.8); | |
| backdrop-filter: blur(16px); | |
| border-bottom: 1px solid rgba(249, 115, 22, 0.2); | |
| } | |
| .gradient-text { | |
| background: linear-gradient(135deg, #f97316, #f59e0b, #eab308); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| } | |
| .pulse-glow { | |
| animation: pulse-glow 2s infinite; | |
| } | |
| @keyframes pulse-glow { | |
| 0%, 100% { | |
| box-shadow: 0 0 20px rgba(249, 115, 22, 0.4); | |
| } | |
| 50% { | |
| box-shadow: 0 0 30px rgba(249, 115, 22, 0.8); | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-900 text-gray-100 min-h-screen scroll-snap"> | |
| <custom-navbar></custom-navbar> | |
| <!-- Hero Section --> | |
| <section class="min-h-screen flex items-center hero-gradient pt-16"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-24"> | |
| <div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center"> | |
| <div class="mb-12 lg:mb-0"> | |
| <h1 class="text-4xl md:text-5xl font-extrabold tracking-tight text-white"> | |
| <span class="block">حرفهای خود را متحول کنید | Transform Your Career with</span> | |
| <span class="block text-orange-500 bg-gradient-to-r from-orange-500 to-amber-500 bg-clip-text text-transparent">Spadak Code Learn</span> | |
| </h1> | |
| <p class="mt-3 text-base text-gray-300 sm:mt-5 sm:text-lg sm:max-w-xl md:mt-5 md:text-xl"> | |
| پلتفرم یادگیری تعاملی که در آن HTML، CSS، JavaScript، React و فریمورکهای مدرن را از طریق چالشهای کدنویسی و پروژههای واقعی تسلط پیدا میکنید | Interactive learning platform where you master HTML, CSS, JavaScript, React, and modern frameworks through hands-on coding challenges and real projects. | |
| </p> | |
| <div class="mt-8 flex flex-col sm:flex-row gap-4"> | |
| <a href="#" class="px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-orange-500 hover:bg-orange-600 md:py-4 md:text-lg md:px-10 transition-colors duration-200"> | |
| شروع یادگیری | Start Learning | |
| </a> | |
| <a href="#" class="px-8 py-3 border border-transparent text-base font-medium rounded-md text-orange-500 bg-gray-800 hover:bg-gray-700 md:py-4 md:text-lg md:px-10 transition-colors duration-200"> | |
| کشف دورهها | Explore Courses | |
| </a> | |
| </div> | |
| </div> | |
| <div class="relative"> | |
| <div class="relative bg-gray-800 rounded-xl p-4 shadow-xl"> | |
| <div class="flex items-center bg-gray-700 rounded-t-lg px-4 py-2"> | |
| <div class="flex space-x-2"> | |
| <div class="w-3 h-3 rounded-full bg-red-500"></div> | |
| <div class="w-3 h-3 rounded-full bg-amber-500"></div> | |
| <div class="w-3 h-3 rounded-full bg-green-500"></div> | |
| </div> | |
| <div class="text-xs text-gray-400 ml-4">tutorial.js</div> | |
| </div> | |
| <pre class="text-xs md:text-sm p-4 overflow-x-auto text-gray-100 font-mono"> | |
| <span class="text-purple-400">import</span> { useState } <span class="text-purple-400">from</span> <span class="text-amber-400">'react'</span>; | |
| <span class="text-purple-400">export default</span> <span class="text-blue-400">function</span> <span class="text-yellow-300">Counter</span>() { | |
| <span class="text-purple-400">const</span> [count, setCount] = useState(<span class="text-amber-400">0</span>); | |
| <span class="text-purple-400">return</span> ( | |
| <div className=<span class="text-amber-400">"flex items-center space-x-4"</span>> | |
| <button | |
| onClick={<span class="text-blue-400">()</span> <span class="text-purple-400">=></span> setCount(count - <span class="text-amber-400">1</span>)} | |
| className=<span class="text-amber-400">"px-4 py-2 bg-orange-500 text-white rounded"</span> | |
| > | |
| Decrement | |
| </button> | |
| <span className=<span class="text-amber-400">"text-xl"</span>>{count}</span> | |
| <button | |
| onClick={<span class="text-blue-400">()</span> <span class="text-purple-400">=></span> setCount(count + <span class="text-amber-400">1</span>)} | |
| className=<span class="text-amber-400">"px-4 py-2 bg-orange-500 text-white rounded"</span> | |
| > | |
| Increment | |
| </button> | |
| </div> | |
| ); | |
| }</pre> | |
| <div class="absolute -bottom-4 -right-4 bg-gray-900 p-4 rounded-lg shadow-lg border border-gray-700"> | |
| <div class="flex items-center space-x-2"> | |
| <div class="w-8 h-8 rounded-full bg-orange-500 flex items-center justify-center"> | |
| <i data-feather="play" class="w-4 h-4 text-white"></i> | |
| </div> | |
| <span class="text-sm font-medium">Run Code</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Technologies Section --> | |
| <section class="min-h-screen bg-gray-800 flex items-center py-16"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-extrabold text-white sm:text-4xl"> | |
| <span class="block">تسلط بر مهارتهای | Master In-Demand</span> | |
| <span class="block text-orange-500 bg-gradient-to-r from-orange-500 to-amber-500 bg-clip-text text-transparent">فنی مورد نیاز | Tech Skills</span> | |
| </h2> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-300 mx-auto"> | |
| از صفر تا آماده کار | From zero to job-ready. با برنامه درسی ساختار یافته ما همه آنچه برای تبدیل شدن به یک توسعهدهنده حرفهای نیاز دارید را یاد بگیرید | Learn everything you need to become a professional developer with our structured curriculum. | |
| </p> | |
| </div> | |
| <div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-8"> | |
| <div class="tech-card rounded-xl p-8 flex flex-col items-center transition-all duration-300 card-hover"> | |
| <div class="w-20 h-20 bg-gradient-to-br from-orange-500/20 to-amber-500/20 rounded-full flex items-center justify-center mb-6 border border-orange-500/30"> | |
| <i data-feather="file-text" class="text-orange-500 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-white mb-3">HTML5</h3> | |
| <p class="text-gray-300 text-center text-sm leading-relaxed">نشانهگذاری معنایی مدرن برای محتوای وب قابل دسترس | Modern semantic markup for accessible web content</p> | |
| </div> | |
| <div class="bg-gray-700 rounded-lg p-6 flex flex-col items-center transition-transform duration-300 card-hover"> | |
| <div class="w-16 h-16 bg-gray-600 rounded-full flex items-center justify-center mb-4"> | |
| <i data-feather="layers" class="text-orange-500 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-white mb-2">CSS3</h3> | |
| <p class="text-gray-300 text-center text-sm">سبکدهی و چیدمان برای وبسایتهای مدرن | Styling and layout for modern websites</p> | |
| </div> | |
| <div class="bg-gray-700 rounded-lg p-6 flex flex-col items-center transition-transform duration-300 card-hover"> | |
| <div class="w-16 h-16 bg-gray-600 rounded-full flex items-center justify-center mb-4"> | |
| <i data-feather="code" class="text-orange-500 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-white mb-2">JavaScript</h3> | |
| <p class="text-gray-300 text-center text-sm">زبان وب | The language of the web</p> | |
| </div> | |
| <div class="bg-gray-700 rounded-lg p-6 flex flex-col items-center transition-transform duration-300 card-hover"> | |
| <div class="w-16 h-16 bg-gray-600 rounded-full flex items-center justify-center mb-4"> | |
| <i data-feather="react" class="text-orange-500 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-white mb-2">React</h3> | |
| <p class="text-gray-300 text-center text-sm">محبوبترین کتابخانه فرانتاند | The most popular frontend library</p> | |
| </div> | |
| <div class="bg-gray-700 rounded-lg p-6 flex flex-col items-center transition-transform duration-300 card-hover"> | |
| <div class="w-16 h-16 bg-gray-600 rounded-full flex items-center justify-center mb-4"> | |
| <i data-feather="arrow-right-circle" class="text-orange-500 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-white mb-2">Next.js</h3> | |
| <p class="text-gray-300 text-center text-sm">فریمورک React برای تولید | React framework for production</p> | |
| </div> | |
| <div class="bg-gray-700 rounded-lg p-6 flex flex-col items-center transition-transform duration-300 card-hover"> | |
| <div class="w-16 h-16 bg-gray-600 rounded-full flex items-center justify-center mb-4"> | |
| <i data-feather="zap" class="text-orange-500 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-white mb-2">Svelte</h3> | |
| <p class="text-gray-300 text-center text-sm">برنامههای وب تقویت شده سایبرنتیک | Cybernetically enhanced web apps</p> | |
| </div> | |
| <div class="bg-gray-700 rounded-lg p-6 flex flex-col items-center transition-transform duration-300 card-hover"> | |
| <div class="w-16 h-16 bg-gray-600 rounded-full flex items-center justify-center mb-4"> | |
| <i data-feather="package" class="text-orange-500 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-white mb-2">Node.js</h3> | |
| <p class="text-gray-300 text-center text-sm">JavaScript runtime environment</p> | |
| </div> | |
| <div class="bg-gray-700 rounded-lg p-6 flex flex-col items-center transition-transform duration-300 card-hover"> | |
| <div class="w-16 h-16 bg-gray-600 rounded-full flex items-center justify-center mb-4"> | |
| <i data-feather="git-merge" class="text-orange-500 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-white mb-2">Git & GitHub</h3> | |
| <p class="text-gray-300 text-center text-sm">Version control and collaboration</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section class="min-h-screen bg-gray-900 flex items-center py-16"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="text-3xl font-extrabold text-white sm:text-4xl"> | |
| <span class="block">Why Choose</span> | |
| <span class="block text-orange-500 bg-gradient-to-r from-orange-500 to-amber-500 bg-clip-text text-transparent">Spadak Code Learn?</span> | |
| </h2> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-300 lg:mx-auto"> | |
| Experience the future of coding education with our innovative platform and community-driven approach. | |
| </p> | |
| </div> | |
| <div class="mt-20"> | |
| <div class="space-y-10 lg:space-y-0 lg:grid lg:grid-cols-3 lg:gap-x-8 lg:gap-y-10"> | |
| <div class="feature-card rounded-2xl p-8 transition-all duration-300 card-hover border border-gray-600/50"> | |
| <div class="flex items-center justify-center h-14 w-14 rounded-xl bg-gradient-to-br from-orange-500 to-amber-500 text-white mb-6 pulse-glow"> | |
| <i data-feather="monitor" class="w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-white mb-4">Interactive Coding</h3> | |
| <p class="text-base text-gray-300 leading-relaxed"> | |
| Code directly in your browser with our advanced IDE. Get instant feedback and learn faster. | |
| </p> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl p-8 transition-transform duration-300 card-hover"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-orange-500 text-white mb-4"> | |
| <i data-feather="book-open" class="w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-lg leading-6 font-medium text-white mb-2">Project-Based Learning</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Build real-world projects that you can add to your portfolio and show to employers. | |
| </p> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl p-8 transition-transform duration-300 card-hover"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-orange-500 text-white mb-4"> | |
| <i data-feather="users" class="w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-lg leading-6 font-medium text-white mb-2">Community Support</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Join our active community of learners and get help when you're stuck. | |
| </p> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl p-8 transition-transform duration-300 card-hover"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-orange-500 text-white mb-4"> | |
| <i data-feather="clock" class="w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-lg leading-6 font-medium text-white mb-2">Self-Paced Learning</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Learn at your own pace with our structured curriculum. No deadlines, no pressure. | |
| </p> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl p-8 transition-transform duration-300 card-hover"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-orange-500 text-white mb-4"> | |
| <i data-feather="award" class="w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-lg leading-6 font-medium text-white mb-2">Certification</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Earn certificates to showcase your skills to potential employers. | |
| </p> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl p-8 transition-transform duration-300 card-hover"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-orange-500 text-white mb-4"> | |
| <i data-feather="briefcase" class="w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-lg leading-6 font-medium text-white mb-2">Career Guidance</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Get career advice and interview preparation to land your dream job. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="bg-gray-800 py-16"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="bg-gradient-to-r from-orange-500 to-amber-500 rounded-2xl shadow-2xl overflow-hidden transform hover:scale-[1.02] transition-transform duration-300"> | |
| <div class="px-6 py-12 sm:px-16 sm:py-20 lg:py-24 lg:px-24"> | |
| <div class="lg:flex lg:items-center lg:justify-between"> | |
| <div class="lg:w-0 lg:flex-1"> | |
| <h2 class="text-4xl font-extrabold text-white"> | |
| Ready to launch your tech career? | |
| </h2> | |
| <p class="mt-4 max-w-3xl text-xl text-amber-100"> | |
| Join 50,000+ developers who transformed their lives with Spadak Code Learn. | |
| </p> | |
| </div> | |
| <div class="mt-8 lg:mt-0 lg:ml-8"> | |
| <a href="#" class="inline-flex items-center justify-center px-8 py-4 border border-transparent text-lg font-bold rounded-xl text-orange-500 bg-white hover:bg-gray-50 hover:scale-105 transition-all duration-200 shadow-lg"> | |
| Start Learning Now | |
| <i data-feather="arrow-right" class="ml-3 w-5 h-5"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <custom-footer></custom-footer> | |
| <script src="script.js"></script> | |
| <script> | |
| feather.replace(); | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function (e) { | |
| e.preventDefault(); | |
| const target = document.querySelector(this.getAttribute('href')); | |
| if (target) { | |
| const offsetTop = target.getBoundingClientRect().top + window.pageYOffset - 80; | |
| window.scrollTo({ | |
| top: offsetTop, | |
| behavior: 'smooth' | |
| }); | |
| } | |
| }); | |
| }); | |
| // Add scroll animation for cards | |
| 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); | |
| // Observe all cards for animation | |
| document.querySelectorAll('.tech-card, .feature-card').forEach(card => { | |
| card.style.opacity = '0'; | |
| card.style.transform = 'translateY(20px)'; | |
| card.style.transition = 'all 0.6s ease-out'; | |
| observer.observe(card); | |
| }); | |
| // Add hover effects for interactive elements | |
| document.querySelectorAll('a, button').forEach(element => { | |
| element.addEventListener('mouseenter', function() { | |
| this.style.transform = 'translateY(-2px)'; | |
| }); | |
| element.addEventListener('mouseleave', function() { | |
| this.style.transform = 'translateY(0)'; | |
| }); | |
| }); | |
| </script> | |
| </body> | |
| </html> | |