File size: 4,013 Bytes
fb33344
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!-- CPD Courses Page -->
<div class="min-h-screen flex flex-col bg-white">
  <!-- Header -->
  <header class="bg-primary text-white">
    <div class="max-w-7xl mx-auto px-4 py-3 flex items-center justify-between">
      <h1 class="text-2xl font-bold">TN Medical Connect</h1>
      <nav class="space-x-4 text-sm">
        <a href="#" class="hover:underline">Home</a>
        <a href="#" class="hover:underline font-semibold">CPD Courses</a>
        <a href="#" class="hover:underline">Medical Books</a>
        <!-- ...other nav links -->
      </nav>
    </div>
  </header>

  <!-- Main Content -->
  <main class="flex-1 max-w-7xl mx-auto px-4 py-6">
    <h2 class="text-3xl font-bold text-gray-800 mb-4">🎓 CPD Courses</h2>
    <p class="text-gray-600 mb-6">Continue your professional development with online courses. We’ve curated content from Coursera, Udemy, and more – with special discounts and free courses for our community.</p>

    <!-- Courses Grid -->
    <div class="grid gap-6 md:grid-cols-2 lg:grid-cols-3">
      <!-- Course Card 1 -->
      <div class="border border-gray-200 rounded-lg p-4 shadow-sm flex flex-col">
        <h3 class="text-lg font-semibold text-gray-800">COVID-19 Contact Tracing</h3>
        <p class="text-sm text-gray-500">Platform: Coursera</p>
        <p class="text-sm text-gray-700 mt-2 flex-1">Learn the basics of contact tracing for COVID-19, taught by experts at Johns Hopkins University.</p>
        <span class="text-green-700 text-xs font-bold mt-2">FREE</span>
        <a href="#" class="mt-3 bg-primary text-white text-sm font-medium text-center px-3 py-2 rounded hover:bg-opacity-90">Enroll Now</a>
      </div>
      <!-- Course Card 2 -->
      <div class="border border-gray-200 rounded-lg p-4 shadow-sm flex flex-col">
        <h3 class="text-lg font-semibold text-gray-800">Diabetes Essentials</h3>
        <p class="text-sm text-gray-500">Platform: Udemy</p>
        <p class="text-sm text-gray-700 mt-2 flex-1">Comprehensive guide to managing diabetes, for patients and healthcare providers alike.</p>
        <span class="text-blue-700 text-xs font-bold mt-2">50% OFF</span>
        <a href="#" class="mt-3 bg-primary text-white text-sm font-medium text-center px-3 py-2 rounded hover:bg-opacity-90">Enroll Now</a>
      </div>
      <!-- Course Card 3 -->
      <div class="border border-gray-200 rounded-lg p-4 shadow-sm flex flex-col">
        <h3 class="text-lg font-semibold text-gray-800">Medical AI and Machine Learning</h3>
        <p class="text-sm text-gray-500">Platform: Coursera</p>
        <p class="text-sm text-gray-700 mt-2 flex-1">An introduction to AI in healthcare, covering machine learning applications in medicine (offered by Stanford University).</p>
        <span class="text-green-700 text-xs font-bold mt-2">FREE</span>
        <a href="#" class="mt-3 bg-primary text-white text-sm font-medium text-center px-3 py-2 rounded hover:bg-opacity-90">Enroll Now</a>
      </div>
      <!-- Course Card 4 -->
      <div class="border border-gray-200 rounded-lg p-4 shadow-sm flex flex-col">
        <h3 class="text-lg font-semibold text-gray-800">Emergency Medicine Crash Course</h3>
        <p class="text-sm text-gray-500">Platform: Udemy</p>
        <p class="text-sm text-gray-700 mt-2 flex-1">Quick refresher on emergency protocols and life support, ideal for general practitioners and ER staff.</p>
        <span class="text-blue-700 text-xs font-bold mt-2">30% OFF</span>
        <a href="#" class="mt-3 bg-primary text-white text-sm font-medium text-center px-3 py-2 rounded hover:bg-opacity-90">Enroll Now</a>
      </div>
      <!-- Additional course cards as needed -->
    </div>
  </main>

  <!-- Footer -->
  <footer class="bg-gray-100">
    <div class="max-w-7xl mx-auto px-4 py-5 text-xs text-gray-600">
      © 2025 TN Medical Connect &middot; <a href="#" class="text-primary hover:underline">Request a Course</a>
    </div>
  </footer>
</div>