| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>LearnHub - Online Course Platform</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
| <script> |
| tailwind.config = { |
| theme: { |
| extend: { |
| colors: { |
| primary: '#4F46E5', |
| secondary: '#10B981', |
| dark: '#1F2937', |
| light: '#F9FAFB', |
| }, |
| fontFamily: { |
| sans: ['Inter', 'sans-serif'], |
| }, |
| } |
| } |
| } |
| </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; |
| } |
| |
| .gradient-bg { |
| background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%); |
| } |
| |
| .course-card:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
| } |
| |
| .course-card { |
| transition: all 0.3s ease; |
| } |
| |
| .sidebar { |
| transition: all 0.3s ease; |
| } |
| |
| @media (max-width: 768px) { |
| .sidebar { |
| transform: translateX(-100%); |
| } |
| .sidebar.active { |
| transform: translateX(0); |
| } |
| } |
| </style> |
| </head> |
| <body class="bg-gray-50"> |
| |
| <nav class="bg-white shadow-sm"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="flex justify-between h-16"> |
| <div class="flex"> |
| <div class="flex-shrink-0 flex items-center"> |
| <i class="fas fa-graduation-cap text-primary text-2xl mr-2"></i> |
| <span class="text-xl font-bold text-dark">LearnHub</span> |
| </div> |
| <div class="hidden sm:ml-6 sm:flex sm:space-x-8"> |
| <a href="#" class="border-primary text-dark inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Home</a> |
| <a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Courses</a> |
| <a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Instructors</a> |
| <a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">About</a> |
| </div> |
| </div> |
| <div class="hidden sm:ml-6 sm:flex sm:items-center"> |
| <button class="bg-white p-1 rounded-full text-gray-400 hover:text-gray-500 focus:outline-none"> |
| <span class="sr-only">Search</span> |
| <i class="fas fa-search"></i> |
| </button> |
| <button class="ml-4 bg-white p-1 rounded-full text-gray-400 hover:text-gray-500 focus:outline-none"> |
| <span class="sr-only">Notifications</span> |
| <i class="fas fa-bell"></i> |
| </button> |
| <div class="ml-3 relative"> |
| <div> |
| <button id="user-menu" class="flex text-sm rounded-full focus:outline-none"> |
| <img class="h-8 w-8 rounded-full" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt=""> |
| </button> |
| </div> |
| </div> |
| <button class="ml-4 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-primary hover:bg-indigo-700 focus:outline-none"> |
| Sign In |
| </button> |
| </div> |
| <div class="-mr-2 flex items-center sm:hidden"> |
| <button id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none"> |
| <span class="sr-only">Open main menu</span> |
| <i class="fas fa-bars"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div id="mobile-menu" class="sm:hidden hidden"> |
| <div class="pt-2 pb-3 space-y-1"> |
| <a href="#" class="bg-indigo-50 border-primary text-primary block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Home</a> |
| <a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Courses</a> |
| <a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Instructors</a> |
| <a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">About</a> |
| </div> |
| <div class="pt-4 pb-3 border-t border-gray-200"> |
| <div class="flex items-center px-4"> |
| <div class="flex-shrink-0"> |
| <img class="h-10 w-10 rounded-full" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt=""> |
| </div> |
| <div class="ml-3"> |
| <div class="text-base font-medium text-gray-800">John Doe</div> |
| <div class="text-sm font-medium text-gray-500">john@example.com</div> |
| </div> |
| </div> |
| <div class="mt-3 space-y-1"> |
| <a href="#" class="block px-4 py-2 text-base font-medium text-gray-500 hover:text-gray-800 hover:bg-gray-100">Your Profile</a> |
| <a href="#" class="block px-4 py-2 text-base font-medium text-gray-500 hover:text-gray-800 hover:bg-gray-100">Settings</a> |
| <a href="#" class="block px-4 py-2 text-base font-medium text-gray-500 hover:text-gray-800 hover:bg-gray-100">Sign out</a> |
| </div> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <div class="gradient-bg"> |
| <div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8"> |
| <div class="text-center"> |
| <h1 class="text-4xl font-extrabold tracking-tight text-white sm:text-5xl lg:text-6xl"> |
| Learn New Skills Online |
| </h1> |
| <p class="mt-6 max-w-lg mx-auto text-xl text-indigo-100"> |
| Choose from over 1,000 courses taught by industry experts. |
| </p> |
| <div class="mt-10"> |
| <div class="max-w-md mx-auto sm:max-w-none sm:flex sm:justify-center"> |
| <div class="space-y-4 sm:space-y-0 sm:mx-auto sm:inline-grid sm:grid-cols-2 sm:gap-5"> |
| <a href="#" class="flex items-center justify-center px-4 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-indigo-700 bg-white hover:bg-indigo-50 sm:px-8"> |
| Browse Courses |
| </a> |
| <a href="#" class="flex items-center justify-center px-4 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-indigo-500 bg-opacity-60 hover:bg-opacity-70 sm:px-8"> |
| Become Instructor |
| </a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="py-12 bg-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="lg:text-center"> |
| <h2 class="text-base text-primary font-semibold tracking-wide uppercase">Courses</h2> |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> |
| Featured Courses |
| </p> |
| <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> |
| Learn from the best instructors around the world |
| </p> |
| </div> |
|
|
| <div class="mt-10"> |
| <div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3"> |
| |
| <div class="course-card bg-white rounded-lg shadow-md overflow-hidden"> |
| <div class="relative pb-48 overflow-hidden"> |
| <img class="absolute inset-0 h-full w-full object-cover" src="https://images.unsplash.com/photo-1542626991-cbc4e32524cc?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60" alt=""> |
| </div> |
| <div class="p-6"> |
| <div class="flex items-center"> |
| <span class="inline-flex px-2 py-1 text-xs font-semibold leading-4 text-green-800 bg-green-100 rounded-full">Beginner</span> |
| <span class="ml-2 text-xs text-gray-500">12 hours</span> |
| </div> |
| <div class="mt-4"> |
| <h3 class="text-lg font-medium text-gray-900">Web Development Fundamentals</h3> |
| <p class="mt-2 text-sm text-gray-500">Learn HTML, CSS, and JavaScript from scratch and build your first website.</p> |
| </div> |
| <div class="mt-6 flex items-center"> |
| <div class="flex-shrink-0"> |
| <img class="h-10 w-10 rounded-full" src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt=""> |
| </div> |
| <div class="ml-3"> |
| <p class="text-sm font-medium text-gray-900">Jane Cooper</p> |
| <div class="flex space-x-1 text-sm text-gray-500"> |
| <span>4.9</span> |
| <span class="text-yellow-400"> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star-half-alt"></i> |
| </span> |
| <span>(128)</span> |
| </div> |
| </div> |
| <div class="ml-auto text-lg font-medium text-primary">$49.99</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="course-card bg-white rounded-lg shadow-md overflow-hidden"> |
| <div class="relative pb-48 overflow-hidden"> |
| <img class="absolute inset-0 h-full w-full object-cover" src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60" alt=""> |
| </div> |
| <div class="p-6"> |
| <div class="flex items-center"> |
| <span class="inline-flex px-2 py-1 text-xs font-semibold leading-4 text-yellow-800 bg-yellow-100 rounded-full">Intermediate</span> |
| <span class="ml-2 text-xs text-gray-500">18 hours</span> |
| </div> |
| <div class="mt-4"> |
| <h3 class="text-lg font-medium text-gray-900">Data Science with Python</h3> |
| <p class="mt-2 text-sm text-gray-500">Master data analysis, visualization, and machine learning with Python.</p> |
| </div> |
| <div class="mt-6 flex items-center"> |
| <div class="flex-shrink-0"> |
| <img class="h-10 w-10 rounded-full" src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt=""> |
| </div> |
| <div class="ml-3"> |
| <p class="text-sm font-medium text-gray-900">Alex Morgan</p> |
| <div class="flex space-x-1 text-sm text-gray-500"> |
| <span>4.8</span> |
| <span class="text-yellow-400"> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="far fa-star"></i> |
| </span> |
| <span>(95)</span> |
| </div> |
| </div> |
| <div class="ml-auto text-lg font-medium text-primary">$79.99</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="course-card bg-white rounded-lg shadow-md overflow-hidden"> |
| <div class="relative pb-48 overflow-hidden"> |
| <img class="absolute inset-0 h-full w-full object-cover" src="https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60" alt=""> |
| </div> |
| <div class="p-6"> |
| <div class="flex items-center"> |
| <span class="inline-flex px-2 py-1 text-xs font-semibold leading-4 text-red-800 bg-red-100 rounded-full">Advanced</span> |
| <span class="ml-2 text-xs text-gray-500">25 hours</span> |
| </div> |
| <div class="mt-4"> |
| <h3 class="text-lg font-medium text-gray-900">Advanced React Patterns</h3> |
| <p class="mt-2 text-sm text-gray-500">Take your React skills to the next level with advanced patterns and techniques.</p> |
| </div> |
| <div class="mt-6 flex items-center"> |
| <div class="flex-shrink-0"> |
| <img class="h-10 w-10 rounded-full" src="https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt=""> |
| </div> |
| <div class="ml-3"> |
| <p class="text-sm font-medium text-gray-900">Michael Johnson</p> |
| <div class="flex space-x-1 text-sm text-gray-500"> |
| <span>5.0</span> |
| <span class="text-yellow-400"> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| </span> |
| <span>(210)</span> |
| </div> |
| </div> |
| <div class="ml-auto text-lg font-medium text-primary">$99.99</div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="mt-10 text-center"> |
| <a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-primary hover:bg-indigo-700"> |
| View All Courses |
| <i class="fas fa-arrow-right ml-2"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-gray-50 pt-12 sm:pt-16"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="max-w-4xl mx-auto text-center"> |
| <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl"> |
| Trusted by learners worldwide |
| </h2> |
| <p class="mt-3 text-xl text-gray-500 sm:mt-4"> |
| Join thousands of students who have transformed their careers with our courses. |
| </p> |
| </div> |
| </div> |
| <div class="mt-10 pb-12 bg-white sm:pb-16"> |
| <div class="relative"> |
| <div class="absolute inset-0 h-1/2 bg-gray-50"></div> |
| <div class="relative max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="max-w-4xl mx-auto"> |
| <div class="rounded-lg bg-white shadow-lg sm:grid sm:grid-cols-3"> |
| <div class="flex flex-col border-b border-gray-100 p-6 text-center sm:border-0 sm:border-r"> |
| <dt class="order-2 mt-2 text-lg leading-6 font-medium text-gray-500"> |
| Students Enrolled |
| </dt> |
| <dd class="order-1 text-5xl font-extrabold text-primary"> |
| 50K+ |
| </dd> |
| </div> |
| <div class="flex flex-col border-t border-b border-gray-100 p-6 text-center sm:border-0 sm:border-l sm:border-r"> |
| <dt class="order-2 mt-2 text-lg leading-6 font-medium text-gray-500"> |
| Courses Available |
| </dt> |
| <dd class="order-1 text-5xl font-extrabold text-primary"> |
| 1K+ |
| </dd> |
| </div> |
| <div class="flex flex-col border-t border-gray-100 p-6 text-center sm:border-0 sm:border-l"> |
| <dt class="order-2 mt-2 text-lg leading-6 font-medium text-gray-500"> |
| Expert Instructors |
| </dt> |
| <dd class="order-1 text-5xl font-extrabold text-primary"> |
| 200+ |
| </dd> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white"> |
| <div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8"> |
| <div class="lg:max-w-2xl lg:mx-auto lg:text-center"> |
| <h2 class="text-3xl font-extrabold tracking-tight text-gray-900 sm:text-4xl"> |
| What our students say |
| </h2> |
| <p class="mt-4 text-gray-500"> |
| Don't just take our word for it. Here's what some of our students have to say about their learning experience. |
| </p> |
| </div> |
| <div class="mt-16 space-y-16 lg:mt-20 lg:space-y-20"> |
| <div class="lg:grid lg:grid-cols-12 lg:gap-8"> |
| <div class="lg:col-span-5"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0 inline-flex rounded-full border-2 border-white"> |
| <img class="h-12 w-12 rounded-full" src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt=""> |
| </div> |
| <div class="ml-4"> |
| <h3 class="text-lg font-medium text-gray-900">Sarah Johnson</h3> |
| <p class="text-gray-500">Web Developer at TechCorp</p> |
| </div> |
| </div> |
| </div> |
| <div class="mt-6 lg:mt-0 lg:col-span-7"> |
| <div class="text-base text-gray-500"> |
| <p> |
| "The Web Development course completely transformed my career. I went from knowing nothing about coding to landing my first developer job in just 6 months. The instructors are incredibly knowledgeable and the community support is amazing." |
| </p> |
| </div> |
| <div class="mt-4 flex items-center"> |
| <div class="flex-shrink-0 text-yellow-400"> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| </div> |
| <p class="ml-2 text-sm font-medium text-gray-900">5.0 rating</p> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="lg:grid lg:grid-cols-12 lg:gap-8"> |
| <div class="lg:col-span-5"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0 inline-flex rounded-full border-2 border-white"> |
| <img class="h-12 w-12 rounded-full" src="https://images.unsplash.com/photo-1519244703995-f4e0f30006d5?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt=""> |
| </div> |
| <div class="ml-4"> |
| <h3 class="text-lg font-medium text-gray-900">Michael Chen</h3> |
| <p class="text-gray-500">Data Scientist at DataWorks</p> |
| </div> |
| </div> |
| </div> |
| <div class="mt-6 lg:mt-0 lg:col-span-7"> |
| <div class="text-base text-gray-500"> |
| <p> |
| "As someone with a non-technical background, I was intimidated by data science. But the Python for Data Science course broke everything down into manageable chunks. The hands-on projects were especially valuable for building my portfolio." |
| </p> |
| </div> |
| <div class="mt-4 flex items-center"> |
| <div class="flex-shrink-0 text-yellow-400"> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star-half-alt"></i> |
| </div> |
| <p class="ml-2 text-sm font-medium text-gray-900">4.5 rating</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-primary"> |
| <div class="max-w-2xl mx-auto text-center py-16 px-4 sm:py-20 sm:px-6 lg:px-8"> |
| <h2 class="text-3xl font-extrabold text-white sm:text-4xl"> |
| <span class="block">Ready to start learning?</span> |
| <span class="block">Enroll in your first course today.</span> |
| </h2> |
| <p class="mt-4 text-lg leading-6 text-indigo-200"> |
| Join thousands of students who have transformed their careers with our courses. |
| </p> |
| <a href="#" class="mt-8 w-full inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-primary bg-white hover:bg-indigo-50 sm:w-auto"> |
| Get started |
| </a> |
| </div> |
| </div> |
|
|
| |
| <footer class="bg-dark"> |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8"> |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8"> |
| <div> |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">LearnHub</h3> |
| <ul class="mt-4 space-y-4"> |
| <li> |
| <a href="#" class="text-base text-gray-300 hover:text-white">About Us</a> |
| </li> |
| <li> |
| <a href="#" class="text-base text-gray-300 hover:text-white">Careers</a> |
| </li> |
| <li> |
| <a href="#" class="text-base text-gray-300 hover:text-white">Press</a> |
| </li> |
| </ul> |
| </div> |
| <div> |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Products</h3> |
| <ul class="mt-4 space-y-4"> |
| <li> |
| <a href="#" class="text-base text-gray-300 hover:text-white">Courses</a> |
| </li> |
| <li> |
| <a href="#" class="text-base text-gray-300 hover:text-white">Features</a> |
| </li> |
| <li> |
| <a href="#" class="text-base text-gray-300 hover:text-white">Pricing</a> |
| </li> |
| </ul> |
| </div> |
| <div> |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Resources</h3> |
| <ul class="mt-4 space-y-4"> |
| <li> |
| <a href="#" class="text-base text-gray-300 hover:text-white">Blog</a> |
| </li> |
| <li> |
| <a href="#" class="text-base text-gray-300 hover:text-white">Help Center</a> |
| </li> |
| <li> |
| <a href="#" class="text-base text-gray-300 hover:text-white">Community</a> |
| </li> |
| </ul> |
| </div> |
| <div> |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Legal</h3> |
| <ul class="mt-4 space-y-4"> |
| <li> |
| <a href="#" class="text-base text-gray-300 hover:text-white">Privacy</a> |
| </li> |
| <li> |
| <a href="#" class="text-base text-gray-300 hover:text-white">Terms</a> |
| </li> |
| <li> |
| <a href="#" class="text-base text-gray-300 hover:text-white">Cookie Policy</a> |
| </li> |
| </ul> |
| </div> |
| </div> |
| <div class="mt-8 border-t border-gray-700 pt-8 md:flex md:items-center md:justify-between"> |
| <div class="flex space-x-6 md:order-2"> |
| <a href="#" class="text-gray-400 hover:text-gray-300"> |
| <span class="sr-only">Facebook</span> |
| <i class="fab fa-facebook-f"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-gray-300"> |
| <span class="sr-only">Instagram</span> |
| <i class="fab fa-instagram"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-gray-300"> |
| <span class="sr-only">Twitter</span> |
| <i class="fab fa-twitter"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-gray-300"> |
| <span class="sr-only">LinkedIn</span> |
| <i class="fab fa-linkedin-in"></i> |
| </a> |
| </div> |
| <p class="mt-8 text-base text-gray-400 md:mt-0 md:order-1"> |
| © 2023 LearnHub, Inc. All rights reserved. |
| </p> |
| </div> |
| </div> |
| </footer> |
|
|
| |
| <div id="admin-panel" class="fixed inset-0 overflow-hidden hidden z-50"> |
| <div class="absolute inset-0 overflow-hidden"> |
| <div class="absolute inset-0 bg-gray-500 bg-opacity-75 transition-opacity" aria-hidden="true"></div> |
| <div class="fixed inset-y-0 right-0 pl-10 max-w-full flex"> |
| <div class="w-screen max-w-md"> |
| <div class="h-full flex flex-col bg-white shadow-xl overflow-y-scroll"> |
| <div class="flex-1 py-6 overflow-y-auto px-4 sm:px-6"> |
| <div class="flex items-start justify-between"> |
| <h2 class="text-lg font-medium text-gray-900">Admin Panel</h2> |
| <div class="ml-3 h-7 flex items-center"> |
| <button id="close-admin-panel" class="bg-white rounded-md text-gray-400 hover:text-gray-500 focus:outline-none"> |
| <span class="sr-only">Close panel</span> |
| <i class="fas fa-times"></i> |
| </button> |
| </div> |
| </div> |
|
|
| <div class="mt-8"> |
| <div class="flow-root"> |
| <ul class="-my-6 divide-y divide-gray-200"> |
| <li class="py-6 flex"> |
| <div class="ml-4 flex-1 flex flex-col"> |
| <div> |
| <div class="flex justify-between text-base font-medium text-gray-900"> |
| <h3>Dashboard</h3> |
| </div> |
| </div> |
| </div> |
| </li> |
| <li class="py-6 flex"> |
| <div class="ml-4 flex-1 flex flex-col"> |
| <div> |
| <div class="flex justify-between text-base font-medium text-gray-900"> |
| <h3>Courses Management</h3> |
| </div> |
| </div> |
| </div> |
| </li> |
| <li class="py-6 flex"> |
| <div class="ml-4 flex-1 flex flex-col"> |
| <div> |
| <div class="flex justify-between text-base font-medium text-gray-900"> |
| <h3>Users Management</h3> |
| </div> |
| </div> |
| </div> |
| </li> |
| <li class="py-6 flex"> |
| <div class="ml-4 flex-1 flex flex-col"> |
| <div> |
| <div class="flex justify-between text-base font-medium text-gray-900"> |
| <h3>Payments</h3> |
| </div> |
| </div> |
| </div> |
| </li> |
| <li class="py-6 flex"> |
| <div class="ml-4 flex-1 flex flex-col"> |
| <div> |
| <div class="flex justify-between text-base font-medium text-gray-900"> |
| <h3>Reports</h3> |
| </div> |
| </div> |
| </div> |
| </li> |
| <li class="py-6 flex"> |
| <div class="ml-4 flex-1 flex flex-col"> |
| <div> |
| <div class="flex justify-between text-base font-medium text-gray-900"> |
| <h3>Settings</h3> |
| </div> |
| </div> |
| </div> |
| </li> |
| </ul> |
| </div> |
| </div> |
| </div> |
| <div class="border-t border-gray-200 py-6 px-4 sm:px-6"> |
| <div class="mt-6"> |
| <a href="#" class="flex justify-center items-center px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-red-600 hover:bg-red-700"> |
| Logout |
| </a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div id="payment-modal" class="fixed z-10 inset-0 overflow-y-auto hidden"> |
| <div class="flex items-end justify-center min-h-screen pt-4 px-4 pb-20 text-center sm:block sm:p-0"> |
| <div class="fixed inset-0 transition-opacity" aria-hidden="true"> |
| <div class="absolute inset-0 bg-gray-500 opacity-75"></div> |
| </div> |
| <span class="hidden sm:inline-block sm:align-middle sm:h-screen" aria-hidden="true">​</span> |
| <div class="inline-block align-bottom bg-white rounded-lg px-4 pt-5 pb-4 text-left overflow-hidden shadow-xl transform transition-all sm:my-8 sm:align-middle sm:max-w-lg sm:w-full sm:p-6"> |
| <div> |
| <div class="mx-auto flex items-center justify-center h-12 w-12 rounded-full bg-green-100"> |
| <i class="fas fa-lock text-green-600"></i> |
| </div> |
| <div class="mt |
| </html> |