Spaces:
Running
Running
File size: 61,100 Bytes
d9b6b9b |
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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 |
<!DOCTYPE html>
<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">[email protected]</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="[email protected]">
</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:[email protected]" class="text-accent hover:underline">[email protected]</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> |