Spaces:
Running
Running
<!-- Global Grants 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">Global Grants</a> | |
<a href="#" class="hover:underline">Fellowships</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">🌐 Global Grants & Fellowships</h2> | |
<p class="text-gray-600 mb-6">Discover international grants and fellowships (UK, Australia, and beyond) and learn how to apply for them.</p> | |
<div class="space-y-4"> | |
<!-- Grant 1 --> | |
<details class="border border-gray-300 rounded-lg"> | |
<summary class="cursor-pointer select-none focus:outline-none focus:ring-2 focus:ring-primary px-4 py-2 text-gray-800 font-semibold"> | |
Wellcome Trust Research Fellowship (UK) | |
</summary> | |
<div class="px-4 py-2 text-sm text-gray-700 bg-gray-50"> | |
<p><strong>Description:</strong> A prestigious grant for biomedical research offered by the UK-based Wellcome Trust.</p> | |
<p><strong>How to Apply:</strong></p> | |
<ul class="list-decimal list-inside mb-2"> | |
<li>Ensure your research proposal aligns with Wellcome's focus areas.</li> | |
<li>Obtain an endorsement from a host institution in the UK.</li> | |
<li>Submit an online application through the Wellcome portal before the deadline.</li> | |
</ul> | |
<p><strong>Deadline:</strong> Oct 1, 2025</p> | |
</div> | |
</details> | |
<!-- Grant 2 --> | |
<details class="border border-gray-300 rounded-lg"> | |
<summary class="cursor-pointer select-none focus:outline-none focus:ring-2 focus:ring-primary px-4 py-2 text-gray-800 font-semibold"> | |
Australia NHMRC Early Career Fellowship | |
</summary> | |
<div class="px-4 py-2 text-sm text-gray-700 bg-gray-50"> | |
<p><strong>Description:</strong> National Health and Medical Research Council (Australia) fellowship for early-career researchers in health and medicine.</p> | |
<p><strong>How to Apply:</strong></p> | |
<ul class="list-decimal list-inside mb-2"> | |
<li>Prepare a detailed research proposal and CV highlighting publications.</li> | |
<li>Find an Australian host institution willing to support your application.</li> | |
<li>Apply via the NHMRC online system, following their guidelines for international applicants.</li> | |
</ul> | |
<p><strong>Deadline:</strong> Mar 2025 (Round 1)</p> | |
</div> | |
</details> | |
<!-- Grant 3 --> | |
<details class="border border-gray-300 rounded-lg"> | |
<summary class="cursor-pointer select-none focus:outline-none focus:ring-2 focus:ring-primary px-4 py-2 text-gray-800 font-semibold"> | |
NIH Fogarty Global Health Grant (USA) | |
</summary> | |
<div class="px-4 py-2 text-sm text-gray-700 bg-gray-50"> | |
<p><strong>Description:</strong> US National Institutes of Health (NIH) grant via the Fogarty International Center for health research projects in low-and-middle-income countries.</p> | |
<p><strong>How to Apply:</strong></p> | |
<ul class="list-decimal list-inside mb-2"> | |
<li>Identify a focus area (e.g., infectious disease, maternal health) that Fogarty supports.</li> | |
<li>Partner with a US institution or investigator if required (for collaborative grants).</li> | |
<li>Submit your proposal through the NIH grant application system (grants.gov) by the specified date.</li> | |
</ul> | |
<p><strong>Deadline:</strong> Varies by program (typically mid-2025)</p> | |
</div> | |
</details> | |
<!-- Additional grants can be listed similarly --> | |
</div> | |
<!-- Guidance Note --> | |
<div class="mt-6 p-4 bg-blue-50 border-l-4 border-blue-400 text-sm text-blue-900"> | |
Note: Always review the official guidelines for each grant. Our <a href="#" class="text-primary font-medium hover:underline">Resources page</a> provides tips on writing grant proposals and obtaining recommendation letters. | |
</div> | |
</main> | |
<!-- Footer --> | |
<footer class="bg-gray-100"> | |
<div class="max-w-7xl mx-auto px-4 py-5 text-sm text-gray-600"> | |
© 2025 TN Medical Connect · <a href="#" class="text-primary hover:underline">Contact for Assistance</a> | |
</div> | |
</footer> | |
</div> | |