Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>TN Medical Connect | Professional Network for Tamil Nadu Doctors</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"> | |
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
<style> | |
:root { | |
--primary: #1a365d; | |
--secondary: #2d3748; | |
--accent: #38b2ac; | |
--gold: #d69e2e; | |
--light: #f7fafc; | |
} | |
body { | |
font-family: 'Roboto', sans-serif; | |
background-color: var(--light); | |
color: var(--secondary); | |
line-height: 1.6; | |
} | |
.bg-primary { | |
background-color: var(--primary); | |
} | |
.text-accent { | |
color: var(--accent); | |
} | |
.bg-accent { | |
background-color: var(--accent); | |
} | |
.border-accent { | |
border-color: var(--accent); | |
} | |
.hover\:bg-accent:hover { | |
background-color: var(--accent); | |
} | |
.hover\:text-accent:hover { | |
color: var(--accent); | |
} | |
.btn-gold { | |
background-color: var(--gold); | |
color: white; | |
} | |
.btn-gold:hover { | |
background-color: #b7791f; | |
} | |
.fade-in { | |
animation: fadeIn 0.8s ease-in; | |
} | |
@keyframes fadeIn { | |
from { opacity: 0; } | |
to { opacity: 1; } | |
} | |
.section-divider { | |
height: 1px; | |
background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent); | |
} | |
.feature-icon { | |
width: 48px; | |
height: 48px; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
border-radius: 50%; | |
background-color: rgba(56, 178, 172, 0.1); | |
color: var(--accent); | |
margin-bottom: 1rem; | |
} | |
.verified-badge { | |
display: inline-flex; | |
align-items: center; | |
background-color: rgba(56, 178, 172, 0.1); | |
color: var(--accent); | |
padding: 0.25rem 0.5rem; | |
border-radius: 4px; | |
font-size: 0.75rem; | |
font-weight: 500; | |
} | |
.verified-badge i { | |
margin-right: 0.25rem; | |
} | |
/* Dashboard specific styles */ | |
.dashboard-sidebar { | |
width: 250px; | |
transition: all 0.3s; | |
} | |
.dashboard-content { | |
margin-left: 250px; | |
transition: all 0.3s; | |
} | |
.sidebar-collapsed .dashboard-sidebar { | |
width: 80px; | |
} | |
.sidebar-collapsed .dashboard-content { | |
margin-left: 80px; | |
} | |
.sidebar-item { | |
transition: all 0.2s; | |
} | |
.sidebar-item:hover { | |
background-color: rgba(56, 178, 172, 0.1); | |
} | |
.sidebar-item.active { | |
background-color: rgba(56, 178, 172, 0.2); | |
border-left: 3px solid var(--accent); | |
} | |
.email-item.unread { | |
background-color: rgba(56, 178, 172, 0.05); | |
border-left: 2px solid var(--accent); | |
} | |
/* Custom scrollbar */ | |
::-webkit-scrollbar { | |
width: 6px; | |
} | |
::-webkit-scrollbar-track { | |
background: rgba(0,0,0,0.05); | |
} | |
::-webkit-scrollbar-thumb { | |
background: rgba(56, 178, 172, 0.5); | |
border-radius: 3px; | |
} | |
/* Verification steps */ | |
.verification-steps { | |
counter-reset: step; | |
} | |
.verification-step { | |
position: relative; | |
counter-increment: step; | |
} | |
.verification-step:not(:last-child):after { | |
content: ''; | |
position: absolute; | |
left: 20px; | |
top: 40px; | |
height: calc(100% - 40px); | |
width: 1px; | |
background-color: rgba(0,0,0,0.1); | |
} | |
.verification-step:before { | |
content: counter(step); | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
width: 40px; | |
height: 40px; | |
border-radius: 50%; | |
background-color: rgba(56, 178, 172, 0.1); | |
color: var(--accent); | |
font-weight: 600; | |
margin-right: 1rem; | |
} | |
.verification-step.completed:before { | |
background-color: var(--accent); | |
color: white; | |
content: '✓'; | |
} | |
.verification-step.active:before { | |
background-color: var(--accent); | |
color: white; | |
box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.3); | |
} | |
</style> | |
</head> | |
<body class="min-h-screen flex flex-col"> | |
<!-- Public Navigation --> | |
<header class="bg-white shadow-sm sticky top-0 z-50" id="public-header"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="flex justify-between h-16 items-center"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0 flex items-center"> | |
<i class="fas fa-heartbeat text-primary text-2xl mr-2"></i> | |
<span class="text-xl font-bold text-primary">TN Medical Connect</span> | |
</div> | |
</div> | |
<div class="hidden md:flex items-center space-x-8"> | |
<a href="#about" class="text-gray-600 hover:text-accent transition-colors font-medium">About</a> | |
<a href="#features" class="text-gray-600 hover:text-accent transition-colors font-medium">Features</a> | |
<a href="#contact" class="text-gray-600 hover:text-accent transition-colors font-medium">Contact</a> | |
<a href="#" class="text-gray-600 hover:text-accent transition-colors font-medium">Doctor Login</a> | |
<a href="#register" class="btn-gold px-4 py-2 rounded-md font-medium transition-colors">Register</a> | |
</div> | |
<div class="md:hidden flex items-center"> | |
<button id="menu-btn" class="text-gray-600 focus:outline-none"> | |
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path> | |
</svg> | |
</button> | |
</div> | |
</div> | |
</div> | |
<!-- Mobile menu --> | |
<div id="mobile-menu" class="hidden md:hidden bg-white border-t"> | |
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> | |
<a href="#about" class="block px-3 py-2 rounded-md text-base font-medium text-gray-600 hover:bg-gray-50">About</a> | |
<a href="#features" class="block px-3 py-2 rounded-md text-base font-medium text-gray-600 hover:bg-gray-50">Features</a> | |
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-600 hover:bg-gray-50">Contact</a> | |
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-600 hover:bg-gray-50">Doctor Login</a> | |
<a href="#register" class="block px-3 py-2 rounded-md text-base font-medium btn-gold text-white">Register</a> | |
</div> | |
</div> | |
</header> | |
<!-- Dashboard Navigation (Hidden by default) --> | |
<div id="dashboard-header" class="hidden bg-white shadow-sm sticky top-0 z-40"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="flex justify-between h-16 items-center"> | |
<div class="flex items-center"> | |
<button id="sidebar-toggle" class="text-gray-600 mr-4 focus:outline-none"> | |
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path> | |
</svg> | |
</button> | |
<div class="flex-shrink-0 flex items-center"> | |
<span class="text-lg font-bold text-primary">Doctor Dashboard</span> | |
</div> | |
</div> | |
<div class="flex items-center space-x-4"> | |
<button class="text-gray-600 hover:text-accent relative"> | |
<i class="fas fa-envelope text-xl"></i> | |
<span class="absolute -top-1 -right-1 bg-accent text-white text-xs rounded-full h-5 w-5 flex items-center justify-center">3</span> | |
</button> | |
<button class="text-gray-600 hover:text-accent relative"> | |
<i class="fas fa-bell text-xl"></i> | |
<span class="absolute -top-1 -right-1 bg-accent text-white text-xs rounded-full h-5 w-5 flex items-center justify-center">2</span> | |
</button> | |
<div class="relative"> | |
<button id="profile-dropdown-btn" class="flex items-center space-x-2 focus:outline-none"> | |
<div class="h-8 w-8 rounded-full bg-gray-300 flex items-center justify-center"> | |
<i class="fas fa-user text-gray-600"></i> | |
</div> | |
<span class="text-gray-700 font-medium">Dr. Kumar</span> | |
<i class="fas fa-chevron-down text-gray-500 text-xs"></i> | |
</button> | |
<div id="profile-dropdown" class="hidden absolute right-0 mt-2 w-48 bg-white rounded-md shadow-lg py-1 z-50"> | |
<a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">My Profile</a> | |
<a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100">Settings</a> | |
<a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 border-t border-gray-100">Sign Out</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Dashboard Sidebar (Hidden by default) --> | |
<div id="dashboard-sidebar" class="hidden fixed top-0 left-0 h-full bg-white shadow-md dashboard-sidebar pt-16 z-30"> | |
<div class="h-full overflow-y-auto py-4"> | |
<nav> | |
<div class="px-4 space-y-1"> | |
<a href="#" class="sidebar-item active flex items-center px-4 py-3 text-gray-700"> | |
<i class="fas fa-home text-lg w-8"></i> | |
<span class="ml-3">Dashboard</span> | |
</a> | |
<a href="#" class="sidebar-item flex items-center px-4 py-3 text-gray-700"> | |
<i class="fas fa-envelope text-lg w-8"></i> | |
<span class="ml-3">Email</span> | |
<span class="ml-auto bg-accent text-white text-xs px-2 py-1 rounded-full">3</span> | |
</a> | |
<a href="#" class="sidebar-item flex items-center px-4 py-3 text-gray-700"> | |
<i class="fas fa-users text-lg w-8"></i> | |
<span class="ml-3">Networking</span> | |
</a> | |
<a href="#" class="sidebar-item flex items-center px-4 py-3 text-gray-700"> | |
<i class="fas fa-book-open text-lg w-8"></i> | |
<span class="ml-3">Research & Grants</span> | |
</a> | |
<a href="#" class="sidebar-item flex items-center px-4 py-3 text-gray-700"> | |
<i class="fas fa-briefcase text-lg w-8"></i> | |
<span class="ml-3">Careers</span> | |
</a> | |
<a href="#" class="sidebar-item flex items-center px-4 py-3 text-gray-700"> | |
<i class="fas fa-podcast text-lg w-8"></i> | |
<span class="ml-3">Podcasts/Webinars</span> | |
</a> | |
<div class="border-t border-gray-200 mt-4 pt-4"> | |
<a href="#" class="sidebar-item flex items-center px-4 py-3 text-gray-700"> | |
<i class="fas fa-cog text-lg w-8"></i> | |
<span class="ml-3">Settings</span> | |
</a> | |
</div> | |
</div> | |
</nav> | |
</div> | |
</div> | |
<!-- Dashboard Content (Hidden by default) --> | |
<div id="dashboard-content" class="hidden dashboard-content pt-16"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8"> | |
<!-- Breadcrumbs --> | |
<div class="flex items-center text-sm text-gray-600 mb-6"> | |
<a href="#" class="hover:text-accent">Dashboard</a> | |
<span class="mx-2">/</span> | |
<span class="text-gray-500">Home</span> | |
</div> | |
<!-- Welcome Banner --> | |
<div class="bg-white rounded-lg shadow-sm p-6 mb-8 border border-gray-100"> | |
<div class="flex flex-col md:flex-row md:items-center md:justify-between"> | |
<div> | |
<h2 class="text-2xl font-bold text-primary mb-2">Welcome, Dr. Kumar</h2> | |
<p class="text-gray-600">You have 3 unread messages, 2 upcoming webinars, and 5 new research opportunities.</p> | |
</div> | |
<div class="mt-4 md:mt-0"> | |
<div class="flex items-center"> | |
<div class="w-48 bg-gray-200 rounded-full h-2.5"> | |
<div class="bg-accent h-2.5 rounded-full" style="width: 75%"></div> | |
</div> | |
<span class="ml-3 text-sm text-gray-600">75% profile complete</span> | |
</div> | |
<button class="mt-2 text-sm text-accent hover:underline">Complete your profile</button> | |
</div> | |
</div> | |
</div> | |
<!-- Quick Stats --> | |
<div class="grid md:grid-cols-3 gap-6 mb-8"> | |
<div class="bg-white rounded-lg shadow-sm p-6 border border-gray-100"> | |
<div class="flex items-center"> | |
<div class="p-3 rounded-full bg-blue-50 text-blue-600 mr-4"> | |
<i class="fas fa-envelope text-xl"></i> | |
</div> | |
<div> | |
<p class="text-sm text-gray-500">Unread Messages</p> | |
<p class="text-2xl font-bold text-primary">3</p> | |
</div> | |
</div> | |
</div> | |
<div class="bg-white rounded-lg shadow-sm p-6 border border-gray-100"> | |
<div class="flex items-center"> | |
<div class="p-3 rounded-full bg-green-50 text-green-600 mr-4"> | |
<i class="fas fa-calendar-alt text-xl"></i> | |
</div> | |
<div> | |
<p class="text-sm text-gray-500">Upcoming Events</p> | |
<p class="text-2xl font-bold text-primary">2</p> | |
</div> | |
</div> | |
</div> | |
<div class="bg-white rounded-lg shadow-sm p-6 border border-gray-100"> | |
<div class="flex items-center"> | |
<div class="p-3 rounded-full bg-purple-50 text-purple-600 mr-4"> | |
<i class="fas fa-book-open text-xl"></i> | |
</div> | |
<div> | |
<p class="text-sm text-gray-500">New Research</p> | |
<p class="text-2xl font-bold text-primary">5</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Quick Actions --> | |
<div class="mb-8"> | |
<h3 class="text-lg font-semibold text-primary mb-4">Quick Actions</h3> | |
<div class="grid grid-cols-2 md:grid-cols-4 gap-4"> | |
<a href="#" class="bg-white rounded-lg shadow-sm p-4 border border-gray-100 hover:border-accent transition-colors text-center"> | |
<div class="text-accent mb-2"> | |
<i class="fas fa-file-alt text-2xl"></i> | |
</div> | |
<span class="text-sm font-medium">Apply for Grant</span> | |
</a> | |
<a href="#" class="bg-white rounded-lg shadow-sm p-4 border border-gray-100 hover:border-accent transition-colors text-center"> | |
<div class="text-accent mb-2"> | |
<i class="fas fa-comments text-2xl"></i> | |
</div> | |
<span class="text-sm font-medium">Join Discussion</span> | |
</a> | |
<a href="#" class="bg-white rounded-lg shadow-sm p-4 border border-gray-100 hover:border-accent transition-colors text-center"> | |
<div class="text-accent mb-2"> | |
<i class="fas fa-question-circle text-2xl"></i> | |
</div> | |
<span class="text-sm font-medium">Post Question</span> | |
</a> | |
<a href="#" class="bg-white rounded-lg shadow-sm p-4 border border-gray-100 hover:border-accent transition-colors text-center"> | |
<div class="text-accent mb-2"> | |
<i class="fas fa-podcast text-2xl"></i> | |
</div> | |
<span class="text-sm font-medium">Start Podcast</span> | |
</a> | |
</div> | |
</div> | |
<!-- Recent Activity --> | |
<div class="bg-white rounded-lg shadow-sm p-6 border border-gray-100"> | |
<div class="flex items-center justify-between mb-6"> | |
<h3 class="text-lg font-semibold text-primary">Recent Activity</h3> | |
<a href="#" class="text-sm text-accent hover:underline">View All</a> | |
</div> | |
<div class="space-y-4"> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-500 mr-4"> | |
<i class="fas fa-envelope"></i> | |
</div> | |
<div class="flex-1 min-w-0"> | |
<p class="text-sm font-medium text-gray-900">New message from Dr. Patel</p> | |
<p class="text-sm text-gray-500">Regarding the upcoming cardiology conference...</p> | |
<p class="text-xs text-gray-400 mt-1">2 hours ago</p> | |
</div> | |
<div class="ml-4 flex-shrink-0"> | |
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-100 text-green-800"> | |
Unread | |
</span> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-500 mr-4"> | |
<i class="fas fa-calendar-alt"></i> | |
</div> | |
<div class="flex-1 min-w-0"> | |
<p class="text-sm font-medium text-gray-900">Webinar reminder: Advances in Neurology</p> | |
<p class="text-sm text-gray-500">Tomorrow at 3:00 PM IST</p> | |
<p class="text-xs text-gray-400 mt-1">5 hours ago</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-500 mr-4"> | |
<i class="fas fa-book-open"></i> | |
</div> | |
<div class="flex-1 min-w-0"> | |
<p class="text-sm font-medium text-gray-900">New research published in your field</p> | |
<p class="text-sm text-gray-500">"Impact of new surgical techniques on patient recovery"</p> | |
<p class="text-xs text-gray-400 mt-1">1 day ago</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Email Interface (Hidden by default) --> | |
<div id="email-interface" class="hidden dashboard-content pt-16"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8"> | |
<!-- Breadcrumbs --> | |
<div class="flex items-center text-sm text-gray-600 mb-6"> | |
<a href="#" class="hover:text-accent">Dashboard</a> | |
<span class="mx-2">/</span> | |
<a href="#" class="hover:text-accent">Email</a> | |
<span class="mx-2">/</span> | |
<span class="text-gray-500">Inbox</span> | |
</div> | |
<div class="flex flex-col md:flex-row"> | |
<!-- Email Folders --> | |
<div class="w-full md:w-64 flex-shrink-0 mb-6 md:mb-0 md:mr-6"> | |
<div class="bg-white rounded-lg shadow-sm border border-gray-100 overflow-hidden"> | |
<div class="p-4 border-b border-gray-100"> | |
<button class="w-full btn-gold py-2 rounded-md text-sm font-medium"> | |
<i class="fas fa-plus mr-2"></i> Compose | |
</button> | |
</div> | |
<div class="divide-y divide-gray-100"> | |
<a href="#" class="flex items-center px-4 py-3 text-sm font-medium text-accent bg-blue-50"> | |
<i class="fas fa-inbox mr-3"></i> | |
<span>Inbox</span> | |
<span class="ml-auto bg-accent text-white text-xs px-2 py-1 rounded-full">3</span> | |
</a> | |
<a href="#" class="flex items-center px-4 py-3 text-sm font-medium text-gray-700 hover:bg-gray-50"> | |
<i class="fas fa-paper-plane mr-3"></i> | |
<span>Sent</span> | |
</a> | |
<a href="#" class="flex items-center px-4 py-3 text-sm font-medium text-gray-700 hover:bg-gray-50"> | |
<i class="fas fa-trash mr-3"></i> | |
<span>Trash</span> | |
</a> | |
<div class="p-4"> | |
<p class="text-xs font-medium text-gray-500 uppercase tracking-wider mb-2">Labels</p> | |
<div class="space-y-1"> | |
<a href="#" class="flex items-center text-sm text-gray-700 hover:text-accent"> | |
<span class="w-3 h-3 rounded-full bg-red-500 mr-2"></span> | |
<span>Important</span> | |
</a> | |
<a href="#" class="flex items-center text-sm text-gray-700 hover:text-accent"> | |
<span class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></span> | |
<span>Personal</span> | |
</a> | |
<a href="#" class="flex items-center text-sm text-gray-700 hover:text-accent"> | |
<span class="w-3 h-3 rounded-full bg-green-500 mr-2"></span> | |
<span>Work</span> | |
</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Email List --> | |
<div class="flex-1 bg-white rounded-lg shadow-sm border border-gray-100 overflow-hidden"> | |
<div class="p-4 border-b border-gray-100 flex items-center justify-between"> | |
<div class="flex items-center"> | |
<input type="checkbox" class="h-4 w-4 text-accent rounded border-gray-300"> | |
<button class="ml-4 text-gray-500 hover:text-gray-700"> | |
<i class="fas fa-redo"></i> | |
</button> | |
<button class="ml-2 text-gray-500 hover:text-gray-700"> | |
<i class="fas fa-trash"></i> | |
</button> | |
</div> | |
<div class="flex items-center"> | |
<span class="text-sm text-gray-500 mr-4">1-3 of 15</span> | |
<button class="text-gray-500 hover:text-gray-700"> | |
<i class="fas fa-chevron-left"></i> | |
</button> | |
<button class="ml-2 text-gray-500 hover:text-gray-700"> | |
<i class="fas fa-chevron-right"></i> | |
</button> | |
</div> | |
</div> | |
<div class="divide-y divide-gray-100"> | |
<!-- Email Item 1 --> | |
<div class="email-item unread flex items-start px-4 py-3 hover:bg-gray-50 cursor-pointer"> | |
<div class="flex items-center mr-4"> | |
<input type="checkbox" class="h-4 w-4 text-accent rounded border-gray-300"> | |
<i class="fas fa-star ml-3 text-gray-300 hover:text-yellow-400"></i> | |
</div> | |
<div class="flex-1 min-w-0"> | |
<div class="flex items-center justify-between"> | |
<p class="text-sm font-medium text-gray-900 truncate">Dr. Rajesh Patel</p> | |
<p class="text-xs text-gray-500 ml-2 whitespace-nowrap">10:30 AM</p> | |
</div> | |
<p class="text-sm font-medium text-gray-900">Cardiology Conference Invitation</p> | |
<p class="text-sm text-gray-500 truncate">Dear Dr. Kumar, I would like to invite you to speak at the upcoming Tamil Nadu Cardiology Conference...</p> | |
</div> | |
</div> | |
<!-- Email Item 2 --> | |
<div class="email-item unread flex items-start px-4 py-3 hover:bg-gray-50 cursor-pointer"> | |
<div class="flex items-center mr-4"> | |
<input type="checkbox" class="h-4 w-4 text-accent rounded border-gray-300"> | |
<i class="fas fa-star ml-3 text-gray-300 hover:text-yellow-400"></i> | |
</div> | |
<div class="flex-1 min-w-0"> | |
<div class="flex items-center justify-between"> | |
<p class="text-sm font-medium text-gray-900 truncate">TN Medical Research Foundation</p> | |
<p class="text-xs text-gray-500 ml-2 whitespace-nowrap">Yesterday</p> | |
</div> | |
<p class="text-sm font-medium text-gray-900">Your Grant Application Status</p> | |
<p class="text-sm text-gray-500 truncate">We are pleased to inform you that your grant application has been approved for the next stage of review...</p> | |
</div> | |
</div> | |
<!-- Email Item 3 --> | |
<div class="email-item unread flex items-start px-4 py-3 hover:bg-gray-50 cursor-pointer"> | |
<div class="flex items-center mr-4"> | |
<input type="checkbox" class="h-4 w-4 text-accent rounded border-gray-300"> | |
<i class="fas fa-star ml-3 text-gray-300 hover:text-yellow-400"></i> | |
</div> | |
<div class="flex-1 min-w-0"> | |
<div class="flex items-center justify-between"> | |
<p class="text-sm font-medium text-gray-900 truncate">Dr. Priya Sharma</p> | |
<p class="text-xs text-gray-500 ml-2 whitespace-nowrap">2 days ago</p> | |
</div> | |
<p class="text-sm font-medium text-gray-900">Patient Case Discussion</p> | |
<p class="text-sm text-gray-500 truncate">Hello Dr. Kumar, I have a complex case I'd like to discuss with you regarding a 45-year-old male with...</p> | |
</div> | |
</div> | |
<!-- Email Item 4 --> | |
<div class="email-item flex items-start px-4 py-3 hover:bg-gray-50 cursor-pointer"> | |
<div class="flex items-center mr-4"> | |
<input type="checkbox" class="h-4 w-4 text-accent rounded border-gray-300"> | |
<i class="fas fa-star ml-3 text-gray-300 hover:text-yellow-400"></i> | |
</div> | |
<div class="flex-1 min-w-0"> | |
<div class="flex items-center justify-between"> | |
<p class="text-sm font-medium text-gray-900 truncate">TN Medical Connect</p> | |
<p class="text-xs text-gray-500 ml-2 whitespace-nowrap">3 days ago</p> | |
</div> | |
<p class="text-sm font-medium text-gray-900">Monthly Newsletter - June 2023</p> | |
<p class="text-sm text-gray-500 truncate">In this month's newsletter: New features on TN Medical Connect, upcoming webinars, and research opportunities...</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Verification Steps (Hidden by default) --> | |
<div id="verification-steps" class="hidden max-w-3xl mx-auto px-4 sm:px-6 lg:px-8 py-16"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl font-bold text-primary mb-4">Doctor Verification</h2> | |
<p class="text-gray-600">Complete these steps to verify your medical credentials and access all platform features.</p> | |
</div> | |
<div class="bg-white rounded-lg shadow-sm p-8 border border-gray-100"> | |
<div class="verification-steps space-y-8"> | |
<!-- Step 1 --> | |
<div class="verification-step completed flex items-start"> | |
<div class="flex-1"> | |
<h3 class="text-lg font-semibold text-primary mb-2">TNMC License Verification</h3> | |
<p class="text-gray-600 mb-4">We've successfully verified your Tamil Nadu Medical Council registration number.</p> | |
<div class="bg-gray-50 p-4 rounded-md"> | |
<div class="grid grid-cols-2 gap-4"> | |
<div> | |
<p class="text-xs font-medium text-gray-500 uppercase tracking-wider">TNMC Number</p> | |
<p class="font-medium">TNMC123456</p> | |
</div> | |
<div> | |
<p class="text-xs font-medium text-gray-500 uppercase tracking-wider">Status</p> | |
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-100 text-green-800"> | |
Verified | |
</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Step 2 --> | |
<div class="verification-step active flex items-start"> | |
<div class="flex-1"> | |
<h3 class="text-lg font-semibold text-primary mb-2">Professional Information</h3> | |
<p class="text-gray-600 mb-4">Please provide your professional details to complete your profile.</p> | |
<form class="space-y-4"> | |
<div class="grid grid-cols-1 md:grid-cols-2 gap-4"> | |
<div> | |
<label for="first-name" class="block text-sm font-medium text-gray-700 mb-1">First Name</label> | |
<input type="text" id="first-name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-2 focus:ring-accent focus:border-accent outline-none transition duration-300" value="Rajesh"> | |
</div> | |
<div> | |
<label for="last-name" class="block text-sm font-medium text-gray-700 mb-1">Last Name</label> | |
<input type="text" id="last-name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-2 focus:ring-accent focus:border-accent outline-none transition duration-300" value="Kumar"> | |
</div> | |
</div> | |
<div> | |
<label for="specialty" class="block text-sm font-medium text-gray-700 mb-1">Primary Specialty</label> | |
<select id="specialty" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-2 focus:ring-accent focus:border-accent outline-none transition duration-300"> | |
<option value="">Select your specialty</option> | |
<option value="cardiology" selected>Cardiology</option> | |
<option value="neurology">Neurology</option> | |
<option value="pediatrics">Pediatrics</option> | |
<option value="surgery">General Surgery</option> | |
<option value="orthopedics">Orthopedics</option> | |
</select> | |
</div> | |
<div> | |
<label for="hospital" class="block text-sm font-medium text-gray-700 mb-1">Hospital Affiliation</label> | |
<input type="text" id="hospital" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-2 focus:ring-accent focus:border-accent outline-none transition duration-300" placeholder="Enter hospital or clinic name"> | |
</div> | |
<div> | |
<label for="years" class="block text-sm font-medium text-gray-700 mb-1">Years of Practice</label> | |
<input type="number" id="years" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-2 focus:ring-accent focus:border-accent outline-none transition duration-300" placeholder="Enter number of years"> | |
</div> | |
<div class="pt-4"> | |
<button type="submit" class="btn-gold px-6 py-3 rounded-md font-medium shadow-sm hover:shadow-md transition-all">Save & Continue</button> | |
</div> | |
</form> | |
</div> | |
</div> | |
<!-- Step 3 --> | |
<div class="verification-step flex items-start"> | |
<div class="flex-1"> | |
<h3 class="text-lg font-semibold text-primary mb-2">Account Setup</h3> | |
<p class="text-gray-600">Create your password and review terms to complete registration.</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Registration Success (Hidden by default) --> | |
<div id="registration-success" class="hidden max-w-2xl mx-auto px-4 sm:px-6 lg:px-8 py-16 text-center"> | |
<div class="bg-white rounded-lg shadow-sm p-12 border border-gray-100"> | |
<div class="w-20 h-20 bg-green-100 rounded-full flex items-center justify-center mx-auto mb-6"> | |
<i class="fas fa-check text-green-600 text-3xl"></i> | |
</div> | |
<h2 class="text-2xl font-bold text-primary mb-4">Registration Complete</h2> | |
<p class="text-gray-600 mb-6">Your account has been successfully created and verified.</p> | |
<p class="text-gray-700 font-medium mb-8"> | |
Your official TN Medical Connect email address is:<br> | |
<span class="text-accent text-xl">dr.rajeshkumar@tnmedicalconnect.com</span> | |
</p> | |
<button id="go-to-dashboard" class="btn-gold px-8 py-3 rounded-md font-medium shadow-sm hover:shadow-md transition-all"> | |
Go to Dashboard | |
</button> | |
</div> | |
</div> | |
<!-- Public Content (Visible by default) --> | |
<div id="public-content"> | |
<!-- Hero Section --> | |
<section class="bg-white fade-in"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16 md:py-24"> | |
<div class="md:flex items-center"> | |
<div class="md:w-1/2 mb-12 md:mb-0"> | |
<h1 class="text-4xl md:text-5xl font-bold text-primary mb-6">Connecting Tamil Nadu Doctors With Global Opportunities</h1> | |
<p class="text-lg text-gray-600 mb-8 max-w-lg">A verified, secure space for medical professionals to collaborate, research, and grow their careers.</p> | |
<div class="flex space-x-4"> | |
<a href="#register" class="btn-gold px-6 py-3 rounded-md font-medium shadow-sm hover:shadow-md transition-all">Register Now</a> | |
<a href="#features" class="px-6 py-3 border border-gray-300 text-gray-700 rounded-md hover:bg-gray-50 transition-colors font-medium">Learn More</a> | |
</div> | |
</div> | |
<div class="md:w-1/2 flex justify-center"> | |
<div class="w-full max-w-md"> | |
<img src="https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
alt="Medical professionals collaborating" | |
class="rounded-lg shadow-md w-full h-auto object-cover"> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<div class="section-divider"></div> | |
<!-- Features Section --> | |
<section id="features" class="bg-white py-16 fade-in"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl font-bold text-primary mb-4">Professional Features for Medical Excellence</h2> | |
<p class="text-gray-600 max-w-2xl mx-auto">Designed to support Tamil Nadu doctors in their practice and career advancement</p> | |
</div> | |
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8"> | |
<!-- Feature 1 --> | |
<div class="bg-gray-50 p-8 rounded-lg hover:shadow-md transition-shadow"> | |
<div class="feature-icon"> | |
<i class="fas fa-envelope text-xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold text-primary mb-3">Verified Doctor's Email</h3> | |
<p class="text-gray-600">Professional email address with TNMC verification to establish credibility with colleagues and institutions.</p> | |
</div> | |
<!-- Feature 2 --> | |
<div class="bg-gray-50 p-8 rounded-lg hover:shadow-md transition-shadow"> | |
<div class="feature-icon"> | |
<i class="fas fa-users text-xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold text-primary mb-3">Professional Network</h3> | |
<p class="text-gray-600">Connect with specialists across Tamil Nadu through secure discussion forums and direct messaging.</p> | |
</div> | |
<!-- Feature 3 --> | |
<div class="bg-gray-50 p-8 rounded-lg hover:shadow-md transition-shadow"> | |
<div class="feature-icon"> | |
<i class="fas fa-book-open text-xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold text-primary mb-3">Research Resources</h3> | |
<p class="text-gray-600">Access to international journals, research papers, and grant opportunities curated for your specialty.</p> | |
</div> | |
<!-- Feature 4 --> | |
<div class="bg-gray-50 p-8 rounded-lg hover:shadow-md transition-shadow"> | |
<div class="feature-icon"> | |
<i class="fas fa-chart-line text-xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold text-primary mb-3">Career Advancement</h3> | |
<p class="text-gray-600">Exclusive job listings, webinar invitations, and collaboration projects to grow your professional impact.</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<div class="section-divider"></div> | |
<!-- About Section --> | |
<section id="about" class="bg-gray-50 py-16 fade-in"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="md:flex items-center"> | |
<div class="md:w-1/2 mb-12 md:mb-0 md:pr-12"> | |
<h2 class="text-3xl font-bold text-primary mb-6">About TN Medical Connect</h2> | |
<p class="text-gray-600 mb-6">Founded in 2023, TN Medical Connect is the premier professional network for verified medical practitioners across Tamil Nadu. Our mission is to bridge the gap between local expertise and global medical communities.</p> | |
<p class="text-gray-600 mb-8">We provide a secure, verified platform where doctors can collaborate, access resources, and advance their careers while maintaining the highest standards of professionalism and data security.</p> | |
<div class="flex items-center"> | |
<span class="verified-badge"> | |
<i class="fas fa-shield-alt"></i> | |
<span>TNMC Verified Platform</span> | |
</span> | |
</div> | |
</div> | |
<div class="md:w-1/2"> | |
<img src="https://images.unsplash.com/photo-1530026186672-2cd00ffc50fe?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
alt="Medical team discussion" | |
class="rounded-lg shadow-md w-full h-auto object-cover"> | |
</div> | |
</div> | |
</div> | |
</section> | |
<div class="section-divider"></div> | |
<!-- Registration Section --> | |
<section id="register" class="bg-white py-16 fade-in"> | |
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="bg-primary rounded-lg shadow-lg overflow-hidden"> | |
<div class="md:flex"> | |
<div class="md:w-1/2 p-8 md:p-12 bg-primary text-white"> | |
<h2 class="text-2xl font-bold mb-4">Get Your Verified Doctor ID</h2> | |
<p class="text-gray-300 mb-6">Join thousands of Tamil Nadu medical professionals who trust our platform for their professional growth.</p> | |
<ul class="space-y-3 mb-8"> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-accent mt-1 mr-2"></i> | |
<span>TNMC-verified professional identity</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-accent mt-1 mr-2"></i> | |
<span>Secure collaboration environment</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-accent mt-1 mr-2"></i> | |
<span>Access to exclusive resources</span> | |
</li> | |
</ul> | |
<div class="flex items-center"> | |
<span class="verified-badge bg-white/10"> | |
<i class="fas fa-lock"></i> | |
<span>256-bit encrypted</span> | |
</span> | |
</div> | |
</div> | |
<div class="md:w-1/2 p-8 md:p-12 bg-white"> | |
<h3 class="text-xl font-semibold text-primary mb-6">Create Your Account</h3> | |
<form id="registration-form"> | |
<div class="mb-4"> | |
<label for="full-name" class="block text-sm font-medium text-gray-700 mb-1">Full Name</label> | |
<input type="text" id="full-name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-2 focus:ring-accent focus:border-accent outline-none transition duration-300" placeholder="Dr. Firstname Lastname"> | |
</div> | |
<div class="mb-4"> | |
<label for="tnmc-id" class="block text-sm font-medium text-gray-700 mb-1">TNMC Registration Number</label> | |
<input type="text" id="tnmc-id" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-2 focus:ring-accent focus:border-accent outline-none transition duration-300" placeholder="TNMC123456"> | |
</div> | |
<div class="mb-4"> | |
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email Address</label> | |
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-2 focus:ring-accent focus:border-accent outline-none transition duration-300" placeholder="your@email.com"> | |
</div> | |
<div class="mb-6"> | |
<label for="specialty" class="block text-sm font-medium text-gray-700 mb-1">Primary Specialty</label> | |
<select id="specialty" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-2 focus:ring-accent focus:border-accent outline-none transition duration-300"> | |
<option value="">Select your specialty</option> | |
<option value="cardiology">Cardiology</option> | |
<option value="neurology">Neurology</option> | |
<option value="pediatrics">Pediatrics</option> | |
<option value="surgery">General Surgery</option> | |
<option value="orthopedics">Orthopedics</option> | |
</select> | |
</div> | |
<button type="submit" class="w-full btn-gold py-3 rounded-md font-medium shadow-sm hover:shadow-md transition-all">Complete Registration</button> | |
</form> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<div class="section-divider"></div> | |
<!-- Contact Section --> | |
<section id="contact" class="bg-gray-50 py-16 fade-in"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl font-bold text-primary mb-4">Contact Us</h2> | |
<p class="text-gray-600 max-w-2xl mx-auto">Have questions about our platform? Our support team is here to help.</p> | |
</div> | |
<div class="grid md:grid-cols-3 gap-8"> | |
<div class="bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition-shadow"> | |
<div class="text-accent mb-4"> | |
<i class="fas fa-envelope text-2xl"></i> | |
</div> | |
<h3 class="text-lg font-semibold text-primary mb-2">Email Support</h3> | |
<p class="text-gray-600 mb-2">For general inquiries and platform information</p> | |
<a href="mailto:support@tnmedicalconnect.com" class="text-accent hover:underline">support@tnmedicalconnect.com</a> | |
</div> | |
<div class="bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition-shadow"> | |
<div class="text-accent mb-4"> | |
<i class="fas fa-phone-alt text-2xl"></i> | |
</div> | |
<h3 class="text-lg font-semibold text-primary mb-2">Phone Support</h3> | |
<p class="text-gray-600 mb-2">Available Monday-Friday, 9AM-5PM IST</p> | |
<a href="tel:+914412345678" class="text-accent hover:underline">+91 44 1234 5678</a> | |
</div> | |
<div class="bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition-shadow"> | |
<div class="text-accent mb-4"> | |
<i class="fas fa-question-circle text-2xl"></i> | |
</div> | |
<h3 class="text-lg font-semibold text-primary mb-2">FAQ & Help Center</h3> | |
<p class="text-gray-600 mb-2">Find answers to common questions</p> | |
<a href="#" class="text-accent hover:underline">Visit Help Center</a> | |
</div> | |
</div> | |
</div> | |
</section> | |
</div> | |
<!-- Footer --> | |
<footer class="bg-primary text-white py-12"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="grid md:grid-cols-4 gap-8"> | |
<div class="md:col-span-2"> | |
<div class="flex items-center mb-4"> | |
<i class="fas fa-heartbeat text-2xl mr-2"></i> | |
<span class="text-xl font-bold">TN Medical Connect</span> | |
</div> | |
<p class="text-gray-300 mb-4">The professional network for verified Tamil Nadu medical practitioners.</p> | |
<div class="flex space-x-4"> | |
<a href="#" class="text-gray-300 hover:text-white transition-colors"> | |
<i class="fab fa-twitter"></i> | |
</a> | |
<a href="#" class="text-gray-300 hover:text-white transition-colors"> | |
<i class="fab fa-linkedin"></i> | |
</a> | |
<a href="#" class="text-gray-300 hover:text-white transition-colors"> | |
<i class="fab fa-facebook"></i> | |
</a> | |
</div> | |
</div> | |
<div> | |
<h3 class="text-sm font-semibold uppercase tracking-wider mb-4">Quick Links</h3> | |
<ul class="space-y-2"> | |
<li><a href="#about" class="text-gray-300 hover:text-white transition-colors">About</a></li> | |
<li><a href="#features" class="text-gray-300 hover:text-white transition-colors">Features</a></li> | |
<li><a href="#register" class="text-gray-300 hover:text-white transition-colors">Register</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-white transition-colors">Login</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-sm font-semibold uppercase tracking-wider mb-4">Legal</h3> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-300 hover:text-white transition-colors">Privacy Policy</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-white transition-colors">Terms of Use</a></li> | |
<li><a href="#" class="text-gray-300 hover:text-white transition-colors">Cookie Policy</a></li> | |
</ul> | |
</div> | |
</div> | |
<div class="mt-12 pt-8 border-t border-gray-800 text-sm text-gray-400"> | |
<p>© 2023 TN Medical Connect. All rights reserved.</p> | |
<p class="mt-2">TNMC verification does not imply endorsement of individual practitioners by the Tamil Nadu Medical Council.</p> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Mobile menu toggle | |
document.getElementById('menu-btn').addEventListener('click', function() { | |
const menu = document.getElementById('mobile-menu'); | |
menu.classList.toggle('hidden'); | |
}); | |
// Profile dropdown toggle | |
document.getElementById('profile-dropdown-btn').addEventListener('click', function() { | |
const dropdown = document.getElementById('profile-dropdown'); | |
dropdown.classList.toggle('hidden'); | |
}); | |
// Sidebar toggle | |
document.getElementById('sidebar-toggle').addEventListener('click', function() { | |
document.body.classList.toggle('sidebar-collapsed'); | |
}); | |
// Smooth scrolling for anchor links | |
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
anchor.addEventListener('click', function (e) { | |
e.preventDefault(); | |
const targetId = this.getAttribute('href'); | |
if (targetId === '#') return; | |
const targetElement = document.querySelector(targetId); | |
if (targetElement) { | |
targetElement.scrollIntoView({ | |
behavior: 'smooth' | |
}); | |
// Close mobile menu if open | |
const mobileMenu = document.getElementById('mobile-menu'); | |
if (!mobileMenu.classList.contains('hidden')) { | |
mobileMenu.classList.add('hidden'); | |
} | |
} | |
}); | |
}); | |
// Form validation for registration | |
const registrationForm = document.querySelector('#registration-form'); | |
if (registrationForm) { | |
registrationForm.addEventListener('submit', function(e) { | |
e.preventDefault(); | |
// Simple validation | |
const fullName = document.getElementById('full-name').value; | |
const tnmcId = document.getElementById('tnmc-id').value; | |
const email = document.getElementById('email').value; | |
const specialty = document.getElementById('specialty').value; | |
if (!fullName || !tnmcId || !email || !specialty) { | |
alert('Please fill in all required fields.'); | |
return; | |
} | |
// Hide public content and show verification steps | |
document.getElementById('public-content').classList.add('hidden'); | |
document.getElementById('public-header').classList.add('hidden'); | |
document.getElementById('verification-steps').classList.remove('hidden'); | |
}); | |
} | |
// Go to dashboard button | |
document.getElementById('go-to-dashboard').addEventListener('click', function() { | |
document.getElementById('verification-steps').classList.add('hidden'); | |
document.getElementById('registration-success').classList.add('hidden'); | |
// Show dashboard | |
document.getElementById('dashboard-header').classList.remove('hidden'); | |
document.getElementById('dashboard-sidebar').classList.remove('hidden'); | |
document.getElementById('dashboard-content').classList.remove('hidden'); | |
}); | |
// Demo login button (for demonstration purposes) | |
document.querySelector('a[href="#"]').addEventListener('click', function(e) { | |
if (this.textContent.includes('Login')) { | |
e.preventDefault(); | |
// Hide public content and show dashboard | |
document.getElementById('public-content').classList.add('hidden'); | |
document.getElementById('public-header').classList.add('hidden'); | |
// Show dashboard | |
document.getElementById('dashboard-header').classList.remove('hidden'); | |
document.getElementById('dashboard-sidebar').classList.remove('hidden'); | |
document.getElementById('dashboard-content').classList.remove('hidden'); | |
} | |
}); | |
// Animation observer for fade-in effects | |
const fadeElements = document.querySelectorAll('.fade-in'); | |
const observer = new IntersectionObserver((entries) => { | |
entries.forEach(entry => { | |
if (entry.isIntersecting) { | |
entry.target.style.opacity = 1; | |
} | |
}); | |
}, { threshold: 0.1 }); | |
fadeElements.forEach(el => { | |
el.style.opacity = 0; | |
observer.observe(el); | |
}); | |
</script> | |
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=rainbowhunt/tnmed" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |