| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Python Pathfinder - Learn Python Smartly</title> |
| <link rel="stylesheet" href="style.css"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| </head> |
| <body class="bg-gray-50 min-h-screen"> |
| <custom-navbar></custom-navbar> |
| |
| <main class="container mx-auto px-4 py-8"> |
| <section class="hero bg-gradient-to-r from-blue-600 to-indigo-700 rounded-xl p-8 text-white mb-12"> |
| <div class="max-w-3xl"> |
| <h1 class="text-4xl font-bold mb-4">Python Pathfinder</h1> |
| <p class="text-xl mb-6">Your personalized journey to mastering Python, Java, and CS fundamentals</p> |
| <a href="/assessment.html" class="bg-white text-blue-600 px-6 py-3 rounded-lg font-medium hover:bg-blue-50 transition">Take Pre-Assessment</a> |
| </div> |
| </section> |
|
|
| <section class="features grid md:grid-cols-3 gap-8 mb-12"> |
| <div class="bg-white p-6 rounded-xl shadow-md"> |
| <i data-feather="layers" class="text-blue-500 mb-4" width="40" height="40"></i> |
| <h3 class="text-xl font-semibold mb-2">Adaptive Learning</h3> |
| <p class="text-gray-600">Get customized learning paths based on your pre-assessment results.</p> |
| </div> |
| <div class="bg-white p-6 rounded-xl shadow-md"> |
| <i data-feather="code" class="text-blue-500 mb-4" width="40" height="40"></i> |
| <h3 class="text-xl font-semibold mb-2">Multi-Language</h3> |
| <p class="text-gray-600">Learn how Python interacts with Java and CS concepts.</p> |
| </div> |
| <div class="bg-white p-6 rounded-xl shadow-md"> |
| <i data-feather="award" class="text-blue-500 mb-4" width="40" height="40"></i> |
| <h3 class="text-xl font-semibold mb-2">Progress Tracking</h3> |
| <p class="text-gray-600">Track your learning journey with milestones and achievements.</p> |
| </div> |
| </section> |
|
|
| <section class="testimonials mb-12"> |
| <h2 class="text-2xl font-bold mb-6 text-gray-800">What Our Learners Say</h2> |
| <div class="grid md:grid-cols-2 gap-6"> |
| <div class="bg-white p-6 rounded-xl shadow-md"> |
| <div class="flex items-center mb-4"> |
| <img src="http://static.photos/people/200x200/1" alt="Learner" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h4 class="font-medium">Sarah Johnson</h4> |
| <p class="text-gray-500 text-sm">Data Science Student</p> |
| </div> |
| </div> |
| <p class="text-gray-600">"The adaptive learning path helped me focus on exactly what I needed to improve. I went from beginner to confident Python programmer in just 3 months!"</p> |
| </div> |
| <div class="bg-white p-6 rounded-xl shadow-md"> |
| <div class="flex items-center mb-4"> |
| <img src="http://static.photos/people/200x200/2" alt="Learner" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h4 class="font-medium">Michael Chen</h4> |
| <p class="text-gray-500 text-sm">Software Engineer</p> |
| </div> |
| </div> |
| <p class="text-gray-600">"The Java-Python integration modules were exactly what I needed for my backend development work. The platform's structure is brilliant."</p> |
| </div> |
| </div> |
| </section> |
| </main> |
|
|
| <custom-footer></custom-footer> |
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| <script src="components/sidebar.js"></script> |
| <script src="script.js"></script> |
| <script>feather.replace();</script> |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> |
| </body> |
| </html> |