File size: 4,279 Bytes
935ac9d 4d45ff8 935ac9d | 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 | <!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> |