Spaces:
Running
Running
<!-- Careers in Tamil Nadu Page --> | |
<div class="min-h-screen flex flex-col bg-white" x-data="{ tab: 'gov' }"> | |
<!-- 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">Careers</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"> | |
<!-- Page Title --> | |
<h2 class="text-3xl font-bold text-gray-800 mb-4">πΌ Careers in Tamil Nadu</h2> | |
<p class="text-gray-600 mb-6">Explore the latest job opportunities in government and private hospitals across Tamil Nadu.</p> | |
<!-- Toggle Tabs for Gov/Private --> | |
<div class="mb-6"> | |
<button class="px-4 py-2 text-sm font-medium rounded-t-md focus:outline-none" | |
:class="tab === 'gov' ? 'bg-primary text-white' : 'bg-gray-200 text-gray-600'" | |
@click="tab = 'gov'">Government Jobs</button> | |
<button class="px-4 py-2 text-sm font-medium rounded-t-md focus:outline-none" | |
:class="tab === 'private' ? 'bg-primary text-white' : 'bg-gray-200 text-gray-600'" | |
@click="tab = 'private'">Private Jobs</button> | |
</div> | |
<!-- Government Jobs List --> | |
<div x-show="tab === 'gov'"> | |
<!-- Example job listing --> | |
<div class="p-4 mb-4 bg-gray-50 border border-gray-200 rounded-lg flex flex-col md:flex-row md:justify-between md:items-center"> | |
<div> | |
<h3 class="text-lg font-semibold text-gray-800">Junior Resident β Madurai Medical College</h3> | |
<p class="text-sm text-gray-600">Madurai, TN · Posted Jan 2025</p> | |
</div> | |
<a href="#" class="mt-2 md:mt-0 inline-block bg-primary text-white text-sm font-medium px-4 py-2 rounded hover:bg-opacity-90">View Details</a> | |
</div> | |
<div class="p-4 mb-4 bg-gray-50 border border-gray-200 rounded-lg flex flex-col md:flex-row md:justify-between md:items-center"> | |
<div> | |
<h3 class="text-lg font-semibold text-gray-800">Assistant Surgeon β Govt. General Hospital</h3> | |
<p class="text-sm text-gray-600">Chennai, TN · Posted Dec 2024</p> | |
</div> | |
<a href="#" class="mt-2 md:mt-0 inline-block bg-primary text-white text-sm font-medium px-4 py-2 rounded hover:bg-opacity-90">View Details</a> | |
</div> | |
<!-- More government job cards... --> | |
<p class="text-sm text-gray-500">Showing Government hospital openings. (Total: 12 jobs)</p> | |
</div> | |
<!-- Private Jobs List --> | |
<div x-show="tab === 'private'"> | |
<div class="p-4 mb-4 bg-gray-50 border border-gray-200 rounded-lg flex flex-col md:flex-row md:justify-between md:items-center"> | |
<div> | |
<h3 class="text-lg font-semibold text-gray-800">Senior Resident β CMC Vellore</h3> | |
<p class="text-sm text-gray-600">Vellore, TN · Posted Jan 2025</p> | |
</div> | |
<a href="#" class="mt-2 md:mt-0 inline-block bg-primary text-white text-sm font-medium px-4 py-2 rounded hover:bg-opacity-90">View Details</a> | |
</div> | |
<div class="p-4 mb-4 bg-gray-50 border border-gray-200 rounded-lg flex flex-col md:flex-row md:justify-between md:items-center"> | |
<div> | |
<h3 class="text-lg font-semibold text-gray-800">Consultant Cardiologist β Apollo Hospitals</h3> | |
<p class="text-sm text-gray-600">Chennai, TN · Posted Dec 2024</p> | |
</div> | |
<a href="#" class="mt-2 md:mt-0 inline-block bg-primary text-white text-sm font-medium px-4 py-2 rounded hover:bg-opacity-90">View Details</a> | |
</div> | |
<!-- More private job cards... --> | |
<p class="text-sm text-gray-500">Showing Private sector openings. (Total: 8 jobs)</p> | |
</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">Advertise Jobs</a> | |
</div> | |
</footer> | |
</div> | |
<!-- Include Alpine.js for tab functionality (if not already globally included) --> | |
<script src="https://unpkg.com/alpinejs" defer></script> | |