Every single link leads to nowhere and the data feed appears to be dead… please fix
8c7c695 verified | <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Learning Center - ProfitPulse AI Trader</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| } | |
| .glass-effect { | |
| background: rgba(255, 255, 255, 0.1); | |
| backdrop-filter: blur(10px); | |
| border: 1px solid rgba(255, 255, 255, 0.2); | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
| } | |
| </style> | |
| </head> | |
| <body class="min-h-screen bg-gray-900 text-white"> | |
| <!-- Navigation --> | |
| <nav class="glass-effect fixed w-full z-50"> | |
| <div class="container mx-auto px-6 py-4"> | |
| <div class="flex justify-between items-center"> | |
| <div class="flex items-center space-x-2"> | |
| <div class="w-8 h-8 bg-gradient-to-r from-green-400 to-blue-500 rounded-full"></div> | |
| <span class="text-xl font-bold">ProfitPulse</span> | |
| </div> | |
| <div class="hidden md:flex space-x-8"> | |
| <a href="index.html#dashboard" class="hover:text-blue-300 transition-colors">Dashboard</a> | |
| <a href="index.html#analysis" class="hover:text-blue-300 transition-colors">Analysis</a> | |
| <a href="index.html#portfolio" class="hover:text-blue-300 transition-colors">Portfolio</a> | |
| <a href="index.html#settings" class="hover:text-blue-300 transition-colors">Settings</a> | |
| <a href="learning.html" class="hover:text-blue-300 transition-colors text-blue-300">Learning Center</a> | |
| </div> | |
| <div class="flex items-center space-x-4"> | |
| <button class="bg-gradient-to-r from-green-500 to-blue-600 px-6 py-2 rounded-full font-semibold hover:shadow-lg transition-all"> | |
| Connect Wallet | |
| </button> | |
| <button class="md:hidden"> | |
| <i data-feather="menu"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Learning Center Header --> | |
| <section class="pt-32 pb-20 gradient-bg"> | |
| <div class="container mx-auto px-6 text-center"> | |
| <h1 class="text-5xl md:text-6xl font-bold mb-6"> | |
| Learning Center | |
| </h1> | |
| <p class="text-xl md:text-2xl mb-8 text-gray-200"> | |
| Master the basics of trading with our comprehensive beginner's guide | |
| </p> | |
| </div> | |
| </section> | |
| <!-- Learning Modules --> | |
| <section class="py-20 bg-gray-800"> | |
| <div class="container mx-auto px-6"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Module 1 --> | |
| <div class="glass-effect rounded-2xl p-6 hover:scale-105 transition-transform cursor-pointer"> | |
| <div class="w-16 h-16 bg-gradient-to-r from-blue-400 to-cyan-500 rounded-2xl flex items-center justify-center mb-4"> | |
| <i data-feather="book-open" class="w-8 h-8 text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Stock Market Basics</h3> | |
| <p class="text-gray-300 mb-4">Learn what stocks are, how markets work, and basic terminology every beginner needs to know.</p> | |
| <div class="flex items-center justify-between"> | |
| <span class="text-sm text-gray-400">Beginner</span> | |
| <div class="flex items-center space-x-1"> | |
| <i data-feather="clock" class="w-4 h-4"></i> | |
| <span class="text-sm">30 min</span> | |
| </div> | |
| </div> | |
| <!-- Module 2 --> | |
| <div class="glass-effect rounded-2xl p-6 hover:scale-105 transition-transform cursor-pointer"> | |
| <div class="w-16 h-16 bg-gradient-to-r from-green-400 to-teal-500 rounded-2xl flex items-center justify-center mb-4"> | |
| <i data-feather="trending-up" class="w-8 h-8 text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Risk Management</h3> | |
| <p class="text-gray-300 mb-4">Discover how to protect your investments and manage potential losses effectively.</p> | |
| <div class="flex items-center justify-between"> | |
| <span class="text-sm text-gray-400">Essential</span> | |
| <div class="flex items-center space-x-1"> | |
| <i data-feather="clock" class="w-4 h-4"></i> | |
| <span class="text-sm">45 min</span> | |
| </div> | |
| </div> | |
| <!-- Module 3 --> | |
| <div class="glass-effect rounded-2xl p-6 hover:scale-105 transition-transform cursor-pointer"> | |
| <div class="w-16 h-16 bg-gradient-to-r from-purple-400 to-pink-500 rounded-2xl flex items-center justify-center mb-4"> | |
| <i data-feather="dollar-sign" class="w-8 h-8 text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Paper Trading Practice</h3> | |
| <p class="text-gray-300 mb-4">Practice trading with virtual money before risking your real capital.</p> | |
| <div class="flex items-center justify-between"> | |
| <span class="text-sm text-gray-400">Hands-on</span> | |
| <div class="flex items-center space-x-1"> | |
| <i data-feather="clock" class="w-4 h-4"></i> | |
| <span class="text-sm">60 min</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- FAQ Section --> | |
| <section class="py-20 bg-gray-900"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-4xl font-bold text-center mb-16">Frequently Asked Questions</h2> | |
| <div class="max-w-4xl mx-auto space-y-6"> | |
| <div class="glass-effect rounded-2xl p-6"> | |
| <h3 class="text-xl font-semibold mb-3">How much money do I need to start?</h3> | |
| <p class="text-gray-300">You can start with as little as $100. The key is to begin small and focus on learning rather than making money initially.</p> | |
| </div> | |
| <div class="glass-effect rounded-2xl p-6"> | |
| <h3 class="text-xl font-semibold mb-3">Is trading risky for beginners?</h3> | |
| <p class="text-gray-300">All trading involves risk, but with proper education and risk management, beginners can minimize potential losses.</p> | |
| </div> | |
| <div class="glass-effect rounded-2xl p-6"> | |
| <h3 class="text-xl font-semibold mb-3">How long does it take to learn?</h3> | |
| <p class="text-gray-300">Most beginners can grasp the basics in 2-4 weeks with consistent practice and learning.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 py-12 border-t border-gray-800"> | |
| <div class="container mx-auto px-6"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div> | |
| <div class="flex items-center space-x-2 mb-4"> | |
| <div class="w-8 h-8 bg-gradient-to-r from-green-400 to-blue-500 rounded-full"></div> | |
| <span class="text-xl font-bold">ProfitPulse</span> | |
| </div> | |
| <p class="text-gray-400">AI-powered trading intelligence for consistent profits.</p> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold mb-4">Platform</h4> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li><a href="index.html#dashboard" class="hover:text-white transition-colors">Dashboard</a></li> | |
| <li><a href="index.html#analysis" class="hover:text-white transition-colors">Analysis</a></li> | |
| <li><a href="index.html#portfolio" class="hover:text-white transition-colors">Portfolio</a></li> | |
| <li><a href="learning.html" class="hover:text-white transition-colors">Learning Center</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold mb-4">Legal</h4> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li><a href="#" class="hover:text-white transition-colors">Privacy Policy</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Terms of Service</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold mb-4">Connect</h4> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
| <i data-feather="twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
| <i data-feather="github"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
| <i data-feather="linkedin"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400"> | |
| <p>© 2024 ProfitPulse AI Trader. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| document.addEventListener('DOMContentLoaded', function() { | |
| feather.replace(); | |
| }); | |
| </script> | |
| </body> | |
| </html> |