File size: 10,329 Bytes
8c7c695 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 | <!DOCTYPE html>
<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> |