File size: 89,837 Bytes
0d7c551 |
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 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NeonCRM - Modern CRM Solution</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">
<style>
.sidebar {
transition: all 0.3s ease;
}
.sidebar.collapsed {
width: 70px;
}
.sidebar.collapsed .nav-text {
display: none;
}
.sidebar.collapsed .logo-text {
display: none;
}
.sidebar.collapsed .user-info {
display: none;
}
.content {
transition: all 0.3s ease;
}
.content.expanded {
margin-left: 70px;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.deal-progress {
height: 8px;
border-radius: 4px;
}
.deal-progress-bar {
height: 100%;
border-radius: 4px;
}
.notification-badge {
position: absolute;
top: -5px;
right: -5px;
font-size: 10px;
min-width: 18px;
height: 18px;
}
.active-nav-item {
background-color: rgba(99, 102, 241, 0.1);
border-left: 3px solid #6366f1;
}
.tab-active {
border-bottom: 2px solid #6366f1;
color: #6366f1;
}
.chart-container {
position: relative;
height: 300px;
}
.contact-avatar {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
color: white;
}
.deal-stage {
width: 12px;
height: 12px;
border-radius: 50%;
display: inline-block;
margin-right: 5px;
}
.task-checkbox:checked + .task-label {
text-decoration: line-through;
color: #9ca3af;
}
</style>
</head>
<body class="bg-gray-50">
<div class="flex h-screen overflow-hidden">
<!-- Sidebar -->
<div id="sidebar" class="sidebar bg-white shadow-lg w-64 h-full fixed flex flex-col">
<div class="p-4 flex items-center">
<div class="bg-indigo-600 text-white p-2 rounded-lg">
<i class="fas fa-bolt text-xl"></i>
</div>
<span class="logo-text ml-3 text-xl font-bold text-gray-800">NeonCRM</span>
</div>
<div class="user-info px-4 py-3 border-b border-gray-200">
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/44.jpg" class="w-10 h-10 rounded-full" alt="User">
<div class="ml-3">
<p class="text-sm font-medium text-gray-800">Sarah Johnson</p>
<p class="text-xs text-gray-500">Admin</p>
</div>
</div>
</div>
<nav class="flex-1 overflow-y-auto py-4">
<div class="px-2 space-y-1">
<a href="#" id="dashboard-nav" class="active-nav-item flex items-center px-4 py-3 text-sm font-medium text-gray-900 rounded-md hover:bg-gray-100 group">
<i class="fas fa-tachometer-alt text-gray-500 group-hover:text-indigo-600 mr-3"></i>
<span class="nav-text">Dashboard</span>
</a>
<a href="#" id="contacts-nav" class="flex items-center px-4 py-3 text-sm font-medium text-gray-900 rounded-md hover:bg-gray-100 group">
<i class="fas fa-users text-gray-500 group-hover:text-indigo-600 mr-3"></i>
<span class="nav-text">Contacts</span>
</a>
<a href="#" id="companies-nav" class="flex items-center px-4 py-3 text-sm font-medium text-gray-900 rounded-md hover:bg-gray-100 group">
<i class="fas fa-building text-gray-500 group-hover:text-indigo-600 mr-3"></i>
<span class="nav-text">Companies</span>
</a>
<a href="#" id="deals-nav" class="flex items-center px-4 py-3 text-sm font-medium text-gray-900 rounded-md hover:bg-gray-100 group">
<i class="fas fa-handshake text-gray-500 group-hover:text-indigo-600 mr-3"></i>
<span class="nav-text">Deals</span>
<span class="ml-auto inline-block px-2 py-0.5 text-xs font-medium rounded-full bg-indigo-100 text-indigo-800">5</span>
</a>
<a href="#" id="tasks-nav" class="flex items-center px-4 py-3 text-sm font-medium text-gray-900 rounded-md hover:bg-gray-100 group">
<i class="fas fa-tasks text-gray-500 group-hover:text-indigo-600 mr-3"></i>
<span class="nav-text">Tasks</span>
</a>
<a href="#" id="reports-nav" class="flex items-center px-4 py-3 text-sm font-medium text-gray-900 rounded-md hover:bg-gray-100 group">
<i class="fas fa-chart-bar text-gray-500 group-hover:text-indigo-600 mr-3"></i>
<span class="nav-text">Reports</span>
</a>
</div>
<div class="px-2 mt-8">
<p class="px-4 text-xs font-semibold text-gray-500 uppercase tracking-wider">Settings</p>
<div class="mt-2 space-y-1">
<a href="#" class="flex items-center px-4 py-3 text-sm font-medium text-gray-900 rounded-md hover:bg-gray-100 group">
<i class="fas fa-cog text-gray-500 group-hover:text-indigo-600 mr-3"></i>
<span class="nav-text">Settings</span>
</a>
<a href="#" class="flex items-center px-4 py-3 text-sm font-medium text-gray-900 rounded-md hover:bg-gray-100 group">
<i class="fas fa-question-circle text-gray-500 group-hover:text-indigo-600 mr-3"></i>
<span class="nav-text">Help</span>
</a>
</div>
</div>
</nav>
<div class="p-4 border-t border-gray-200">
<button id="toggle-sidebar" class="w-full flex items-center justify-center text-gray-500 hover:text-indigo-600">
<i class="fas fa-chevron-left"></i>
<span class="nav-text ml-2">Collapse</span>
</button>
</div>
</div>
<!-- Main Content -->
<div id="content" class="content flex-1 flex flex-col overflow-hidden ml-64">
<!-- Top Navigation -->
<header class="bg-white shadow-sm z-10">
<div class="px-6 py-3 flex items-center justify-between">
<div class="flex items-center">
<h1 class="text-lg font-semibold text-gray-900" id="page-title">Dashboard</h1>
</div>
<div class="flex items-center space-x-4">
<div class="relative">
<button class="p-1 text-gray-500 hover:text-gray-700 focus:outline-none">
<i class="fas fa-search"></i>
</button>
</div>
<div class="relative">
<button id="notifications-btn" class="p-1 text-gray-500 hover:text-gray-700 focus:outline-none relative">
<i class="fas fa-bell"></i>
<span class="notification-badge bg-red-500 text-white rounded-full flex items-center justify-center">3</span>
</button>
<div id="notifications-dropdown" class="hidden absolute right-0 mt-2 w-80 bg-white rounded-md shadow-lg py-1 z-50">
<div class="px-4 py-2 border-b border-gray-200">
<p class="text-sm font-medium text-gray-900">Notifications</p>
</div>
<div class="max-h-60 overflow-y-auto">
<a href="#" class="block px-4 py-3 text-sm text-gray-700 hover:bg-gray-100 border-b border-gray-100">
<div class="flex items-start">
<div class="flex-shrink-0 bg-indigo-100 p-2 rounded-full">
<i class="fas fa-handshake text-indigo-600"></i>
</div>
<div class="ml-3">
<p class="font-medium">New deal added</p>
<p class="text-xs text-gray-500">Acme Corp - $12,000</p>
</div>
</div>
</a>
<a href="#" class="block px-4 py-3 text-sm text-gray-700 hover:bg-gray-100 border-b border-gray-100">
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 p-2 rounded-full">
<i class="fas fa-tasks text-blue-600"></i>
</div>
<div class="ml-3">
<p class="font-medium">Task overdue</p>
<p class="text-xs text-gray-500">Follow up with client</p>
</div>
</div>
</a>
<a href="#" class="block px-4 py-3 text-sm text-gray-700 hover:bg-gray-100">
<div class="flex items-start">
<div class="flex-shrink-0 bg-green-100 p-2 rounded-full">
<i class="fas fa-users text-green-600"></i>
</div>
<div class="ml-3">
<p class="font-medium">New contact added</p>
<p class="text-xs text-gray-500">John Smith from TechCorp</p>
</div>
</div>
</a>
</div>
<div class="px-4 py-2 border-t border-gray-200">
<a href="#" class="text-xs font-medium text-indigo-600 hover:text-indigo-900">View all notifications</a>
</div>
</div>
</div>
<div class="relative">
<button id="user-menu-btn" class="flex items-center text-sm focus:outline-none">
<img src="https://randomuser.me/api/portraits/women/44.jpg" class="w-8 h-8 rounded-full" alt="User">
<span class="ml-2 text-gray-700 text-sm font-medium hidden md:inline-block">Sarah J.</span>
</button>
<div id="user-menu-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">Your 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">Sign out</a>
</div>
</div>
</div>
</div>
</header>
<!-- Main Content Area -->
<main class="flex-1 overflow-y-auto p-6 bg-gray-50">
<!-- Dashboard Screen -->
<div id="dashboard-screen" class="screen">
<div class="mb-6 flex justify-between items-center">
<h2 class="text-2xl font-bold text-gray-800">Welcome back, Sarah!</h2>
<button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-lg text-sm font-medium flex items-center">
<i class="fas fa-plus mr-2"></i> Add New
</button>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-6">
<div class="bg-white p-6 rounded-xl shadow-sm card-hover transition duration-300">
<div class="flex items-center justify-between">
<div>
<p class="text-sm font-medium text-gray-500">Total Contacts</p>
<p class="text-2xl font-bold text-gray-800 mt-1">248</p>
</div>
<div class="bg-indigo-100 p-3 rounded-lg">
<i class="fas fa-users text-indigo-600 text-xl"></i>
</div>
</div>
<div class="mt-4">
<p class="text-xs text-gray-500 flex items-center">
<span class="text-green-500 mr-1"><i class="fas fa-arrow-up"></i> 12%</span>
vs last month
</p>
</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm card-hover transition duration-300">
<div class="flex items-center justify-between">
<div>
<p class="text-sm font-medium text-gray-500">Active Deals</p>
<p class="text-2xl font-bold text-gray-800 mt-1">18</p>
</div>
<div class="bg-blue-100 p-3 rounded-lg">
<i class="fas fa-handshake text-blue-600 text-xl"></i>
</div>
</div>
<div class="mt-4">
<p class="text-xs text-gray-500 flex items-center">
<span class="text-green-500 mr-1"><i class="fas fa-arrow-up"></i> 5%</span>
vs last month
</p>
</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm card-hover transition duration-300">
<div class="flex items-center justify-between">
<div>
<p class="text-sm font-medium text-gray-500">Deal Value</p>
<p class="text-2xl font-bold text-gray-800 mt-1">$124,500</p>
</div>
<div class="bg-green-100 p-3 rounded-lg">
<i class="fas fa-dollar-sign text-green-600 text-xl"></i>
</div>
</div>
<div class="mt-4">
<p class="text-xs text-gray-500 flex items-center">
<span class="text-red-500 mr-1"><i class="fas fa-arrow-down"></i> 8%</span>
vs last month
</p>
</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm card-hover transition duration-300">
<div class="flex items-center justify-between">
<div>
<p class="text-sm font-medium text-gray-500">Tasks Due</p>
<p class="text-2xl font-bold text-gray-800 mt-1">7</p>
</div>
<div class="bg-purple-100 p-3 rounded-lg">
<i class="fas fa-tasks text-purple-600 text-xl"></i>
</div>
</div>
<div class="mt-4">
<p class="text-xs text-gray-500 flex items-center">
<span class="text-green-500 mr-1"><i class="fas fa-arrow-up"></i> 3%</span>
vs last month
</p>
</div>
</div>
</div>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-6">
<div class="bg-white p-6 rounded-xl shadow-sm lg:col-span-2">
<div class="flex justify-between items-center mb-4">
<h3 class="text-lg font-semibold text-gray-800">Deal Pipeline</h3>
<div class="flex space-x-2">
<button class="px-3 py-1 text-xs bg-gray-100 hover:bg-gray-200 rounded">Week</button>
<button class="px-3 py-1 text-xs bg-indigo-600 text-white rounded">Month</button>
<button class="px-3 py-1 text-xs bg-gray-100 hover:bg-gray-200 rounded">Year</button>
</div>
</div>
<div class="chart-container">
<canvas id="dealChart"></canvas>
</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm">
<div class="flex justify-between items-center mb-4">
<h3 class="text-lg font-semibold text-gray-800">Recent Activities</h3>
<a href="#" class="text-sm text-indigo-600 hover:text-indigo-800">View All</a>
</div>
<div class="space-y-4">
<div class="flex items-start">
<div class="flex-shrink-0 bg-indigo-100 p-2 rounded-full">
<i class="fas fa-handshake text-indigo-600 text-sm"></i>
</div>
<div class="ml-3">
<p class="text-sm font-medium text-gray-800">New deal added</p>
<p class="text-xs text-gray-500">Acme Corp - $12,000</p>
<p class="text-xs text-gray-400 mt-1">2 hours ago</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 p-2 rounded-full">
<i class="fas fa-tasks text-blue-600 text-sm"></i>
</div>
<div class="ml-3">
<p class="text-sm font-medium text-gray-800">Task completed</p>
<p class="text-xs text-gray-500">Follow up with client</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 bg-green-100 p-2 rounded-full">
<i class="fas fa-users text-green-600 text-sm"></i>
</div>
<div class="ml-3">
<p class="text-sm font-medium text-gray-800">New contact added</p>
<p class="text-xs text-gray-500">John Smith from TechCorp</p>
<p class="text-xs text-gray-400 mt-1">1 day ago</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-purple-100 p-2 rounded-full">
<i class="fas fa-file-alt text-purple-600 text-sm"></i>
</div>
<div class="ml-3">
<p class="text-sm font-medium text-gray-800">New document uploaded</p>
<p class="text-xs text-gray-500">Contract_AcmeCorp.pdf</p>
<p class="text-xs text-gray-400 mt-1">2 days ago</p>
</div>
</div>
</div>
</div>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
<div class="bg-white p-6 rounded-xl shadow-sm">
<div class="flex justify-between items-center mb-4">
<h3 class="text-lg font-semibold text-gray-800">Upcoming Tasks</h3>
<a href="#" class="text-sm text-indigo-600 hover:text-indigo-800">View All</a>
</div>
<div class="space-y-4">
<div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
<div class="flex items-center">
<input type="checkbox" class="rounded text-indigo-600 focus:ring-indigo-500">
<div class="ml-3">
<p class="text-sm font-medium text-gray-800">Follow up with Acme Corp</p>
<p class="text-xs text-gray-500">Due tomorrow</p>
</div>
</div>
<div class="flex items-center">
<span class="bg-indigo-100 text-indigo-800 text-xs px-2 py-1 rounded">Deal</span>
</div>
</div>
<div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
<div class="flex items-center">
<input type="checkbox" class="rounded text-indigo-600 focus:ring-indigo-500">
<div class="ml-3">
<p class="text-sm font-medium text-gray-800">Prepare quarterly report</p>
<p class="text-xs text-gray-500">Due in 2 days</p>
</div>
</div>
<div class="flex items-center">
<span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">Report</span>
</div>
</div>
<div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
<div class="flex items-center">
<input type="checkbox" class="rounded text-indigo-600 focus:ring-indigo-500">
<div class="ml-3">
<p class="text-sm font-medium text-gray-800">Call potential client</p>
<p class="text-xs text-gray-500">Due in 3 days</p>
</div>
</div>
<div class="flex items-center">
<span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">Contact</span>
</div>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm">
<div class="flex justify-between items-center mb-4">
<h3 class="text-lg font-semibold text-gray-800">Top Deals</h3>
<a href="#" class="text-sm text-indigo-600 hover:text-indigo-800">View All</a>
</div>
<div class="space-y-4">
<div class="p-3 bg-gray-50 rounded-lg">
<div class="flex justify-between items-center mb-2">
<p class="text-sm font-medium text-gray-800">Acme Corporation</p>
<p class="text-sm font-bold text-indigo-600">$24,000</p>
</div>
<div class="mb-2">
<div class="deal-progress bg-gray-200 w-full">
<div class="deal-progress-bar bg-indigo-600" style="width: 75%"></div>
</div>
</div>
<div class="flex justify-between text-xs text-gray-500">
<span>75% complete</span>
<span>Expected close: May 15</span>
</div>
</div>
<div class="p-3 bg-gray-50 rounded-lg">
<div class="flex justify-between items-center mb-2">
<p class="text-sm font-medium text-gray-800">TechStart Inc.</p>
<p class="text-sm font-bold text-indigo-600">$18,500</p>
</div>
<div class="mb-2">
<div class="deal-progress bg-gray-200 w-full">
<div class="deal-progress-bar bg-indigo-600" style="width: 50%"></div>
</div>
</div>
<div class="flex justify-between text-xs text-gray-500">
<span>50% complete</span>
<span>Expected close: June 1</span>
</div>
</div>
<div class="p-3 bg-gray-50 rounded-lg">
<div class="flex justify-between items-center mb-2">
<p class="text-sm font-medium text-gray-800">Global Solutions</p>
<p class="text-sm font-bold text-indigo-600">$32,000</p>
</div>
<div class="mb-2">
<div class="deal-progress bg-gray-200 w-full">
<div class="deal-progress-bar bg-indigo-600" style="width: 30%"></div>
</div>
</div>
<div class="flex justify-between text-xs text-gray-500">
<span>30% complete</span>
<span>Expected close: June 15</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Contacts Screen -->
<div id="contacts-screen" class="screen hidden">
<div class="mb-6 flex justify-between items-center">
<h2 class="text-2xl font-bold text-gray-800">Contacts</h2>
<button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-lg text-sm font-medium flex items-center">
<i class="fas fa-plus mr-2"></i> Add Contact
</button>
</div>
<div class="bg-white rounded-xl shadow-sm overflow-hidden mb-6">
<div class="p-4 border-b border-gray-200 flex justify-between items-center">
<div class="relative w-64">
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
<i class="fas fa-search text-gray-400"></i>
</div>
<input type="text" class="block w-full pl-10 pr-3 py-2 border border-gray-300 rounded-md leading-5 bg-white placeholder-gray-500 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm" placeholder="Search contacts...">
</div>
<div class="flex space-x-2">
<button class="px-3 py-1 text-sm bg-gray-100 hover:bg-gray-200 rounded-md flex items-center">
<i class="fas fa-filter mr-2 text-gray-500"></i>
<span>Filter</span>
</button>
<button class="px-3 py-1 text-sm bg-gray-100 hover:bg-gray-200 rounded-md flex items-center">
<i class="fas fa-sort mr-2 text-gray-500"></i>
<span>Sort</span>
</button>
</div>
</div>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Name</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Company</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Email</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Phone</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Last Contact</th>
<th scope="col" class="px-6 py-3 text-right text-xs font-medium text-gray-500 uppercase tracking-wider">Actions</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<div class="contact-avatar bg-indigo-600 rounded-full mr-3">JD</div>
<div>
<div class="text-sm font-medium text-gray-900">John Doe</div>
<div class="text-sm text-gray-500">Sales Manager</div>
</div>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">Acme Corporation</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">john.doe@acme.com</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">(555) 123-4567</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">2 days ago</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
<div class="flex justify-end space-x-2">
<button class="text-indigo-600 hover:text-indigo-900">
<i class="fas fa-eye"></i>
</button>
<button class="text-blue-600 hover:text-blue-900">
<i class="fas fa-edit"></i>
</button>
<button class="text-red-600 hover:text-red-900">
<i class="fas fa-trash"></i>
</button>
</div>
</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<div class="contact-avatar bg-green-600 rounded-full mr-3">SM</div>
<div>
<div class="text-sm font-medium text-gray-900">Sarah Miller</div>
<div class="text-sm text-gray-500">Marketing Director</div>
</div>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">TechStart Inc.</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">sarah.m@techstart.com</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">(555) 987-6543</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">1 week ago</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
<div class="flex justify-end space-x-2">
<button class="text-indigo-600 hover:text-indigo-900">
<i class="fas fa-eye"></i>
</button>
<button class="text-blue-600 hover:text-blue-900">
<i class="fas fa-edit"></i>
</button>
<button class="text-red-600 hover:text-red-900">
<i class="fas fa-trash"></i>
</button>
</div>
</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<div class="contact-avatar bg-purple-600 rounded-full mr-3">RJ</div>
<div>
<div class="text-sm font-medium text-gray-900">Robert Johnson</div>
<div class="text-sm text-gray-500">CTO</div>
</div>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">Global Solutions</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">robert.j@global.com</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">(555) 456-7890</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">3 days ago</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
<div class="flex justify-end space-x-2">
<button class="text-indigo-600 hover:text-indigo-900">
<i class="fas fa-eye"></i>
</button>
<button class="text-blue-600 hover:text-blue-900">
<i class="fas fa-edit"></i>
</button>
<button class="text-red-600 hover:text-red-900">
<i class="fas fa-trash"></i>
</button>
</div>
</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<div class="contact-avatar bg-yellow-600 rounded-full mr-3">EW</div>
<div>
<div class="text-sm font-medium text-gray-900">Emily Wilson</div>
<div class="text-sm text-gray-500">Product Manager</div>
</div>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">Innovate Co.</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">emily.w@innovate.com</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">(555) 789-0123</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">1 day ago</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
<div class="flex justify-end space-x-2">
<button class="text-indigo-600 hover:text-indigo-900">
<i class="fas fa-eye"></i>
</button>
<button class="text-blue-600 hover:text-blue-900">
<i class="fas fa-edit"></i>
</button>
<button class="text-red-600 hover:text-red-900">
<i class="fas fa-trash"></i>
</button>
</div>
</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<div class="contact-avatar bg-red-600 rounded-full mr-3">MB</div>
<div>
<div class="text-sm font-medium text-gray-900">Michael Brown</div>
<div class="text-sm text-gray-500">CEO</div>
</div>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">NextGen Tech</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">michael.b@nextgen.com</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">(555) 234-5678</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">5 days ago</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
<div class="flex justify-end space-x-2">
<button class="text-indigo-600 hover:text-indigo-900">
<i class="fas fa-eye"></i>
</button>
<button class="text-blue-600 hover:text-blue-900">
<i class="fas fa-edit"></i>
</button>
<button class="text-red-600 hover:text-red-900">
<i class="fas fa-trash"></i>
</button>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="px-6 py-4 border-t border-gray-200 flex items-center justify-between">
<div class="text-sm text-gray-500">
Showing <span class="font-medium">1</span> to <span class="font-medium">5</span> of <span class="font-medium">24</span> results
</div>
<div class="flex space-x-2">
<button class="px-3 py-1 border border-gray-300 rounded-md text-sm font-medium text-gray-700 bg-white hover:bg-gray-50">
Previous
</button>
<button class="px-3 py-1 border border-gray-300 rounded-md text-sm font-medium text-white bg-indigo-600 hover:bg-indigo-700">
1
</button>
<button class="px-3 py-1 border border-gray-300 rounded-md text-sm font-medium text-gray-700 bg-white hover:bg-gray-50">
2
</button>
<button class="px-3 py-1 border border-gray-300 rounded-md text-sm font-medium text-gray-700 bg-white hover:bg-gray-50">
3
</button>
<button class="px-3 py-1 border border-gray-300 rounded-md text-sm font-medium text-gray-700 bg-white hover:bg-gray-50">
Next
</button>
</div>
</div>
</div>
</div>
<!-- Companies Screen -->
<div id="companies-screen" class="screen hidden">
<div class="mb-6 flex justify-between items-center">
<h2 class="text-2xl font-bold text-gray-800">Companies</h2>
<button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-lg text-sm font-medium flex items-center">
<i class="fas fa-plus mr-2"></i> Add Company
</button>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="bg-white rounded-xl shadow-sm overflow-hidden hover:shadow-md transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-indigo-100 p-3 rounded-lg mr-4">
<i class="fas fa-building text-indigo-600 text-xl"></i>
</div>
<div>
<h3 class="text-lg font-semibold text-gray-800">Acme Corporation</h3>
<p class="text-sm text-gray-500">Technology</p>
</div>
</div>
<div class="space-y-2">
<div class="flex items-center text-sm text-gray-600">
<i class="fas fa-users mr-2 text-gray-400"></i>
<span>24 contacts</span>
</div>
<div class="flex items-center text-sm text-gray-600">
<i class="fas fa-handshake mr-2 text-gray-400"></i>
<span>5 active deals</span>
</div>
<div class="flex items-center text-sm text-gray-600">
<i class="fas fa-dollar-sign mr-2 text-gray-400"></i>
<span>$124,500 pipeline</span>
</div>
</div>
</div>
<div class="px-6 py-3 bg-gray-50 border-t border-gray-200 flex justify-end space-x-2">
<button class="text-indigo-600 hover:text-indigo-900 text-sm font-medium">
View
</button>
<button class="text-blue-600 hover:text-blue-900 text-sm font-medium">
Edit
</button>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm overflow-hidden hover:shadow-md transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-3 rounded-lg mr-4">
<i class="fas fa-building text-blue-600 text-xl"></i>
</div>
<div>
<h3 class="text-lg font-semibold text-gray-800">TechStart Inc.</h3>
<p class="text-sm text-gray-500">Software</p>
</div>
</div>
<div class="space-y-2">
<div class="flex items-center text-sm text-gray-600">
<i class="fas fa-users mr-2 text-gray-400"></i>
<span>18 contacts</span>
</div>
<div class="flex items-center text-sm text-gray-600">
<i class="fas fa-handshake mr-2 text-gray-400"></i>
<span>3 active deals</span>
</div>
<div class="flex items-center text-sm text-gray-600">
<i class="fas fa-dollar-sign mr-2 text-gray-400"></i>
<span>$87,000 pipeline</span>
</div>
</div>
</div>
<div class="px-6 py-3 bg-gray-50 border-t border-gray-200 flex justify-end space-x-2">
<button class="text-indigo-600 hover:text-indigo-900 text-sm font-medium">
View
</button>
<button class="text-blue-600 hover:text-blue-900 text-sm font-medium">
Edit
</button>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm overflow-hidden hover:shadow-md transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-green-100 p-3 rounded-lg mr-4">
<i class="fas fa-building text-green-600 text-xl"></i>
</div>
<div>
<h3 class="text-lg font-semibold text-gray-800">Global Solutions</h3>
<p class="text-sm text-gray-500">Consulting</p>
</div>
</div>
<div class="space-y-2">
<div class="flex items-center text-sm text-gray-600">
<i class="fas fa-users mr-2 text-gray-400"></i>
<span>32 contacts</span>
</div>
<div class="flex items-center text-sm text-gray-600">
<i class="fas fa-handshake mr-2 text-gray-400"></i>
<span>7 active deals</span>
</div>
<div class="flex items-center text-sm text-gray-600">
<i class="fas fa-dollar-sign mr-2 text-gray-400"></i>
<span>$210,000 pipeline</span>
</div>
</div>
</div>
<div class="px-6 py-3 bg-gray-50 border-t border-gray-200 flex justify-end space-x-2">
<button class="text-indigo-600 hover:text-indigo-900 text-sm font-medium">
View
</button>
<button class="text-blue-600 hover:text-blue-900 text-sm font-medium">
Edit
</button>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm overflow-hidden hover:shadow-md transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-purple-100 p-3 rounded-lg mr-4">
<i class="fas fa-building text-purple-600 text-xl"></i>
</div>
<div>
<h3 class="text-lg font-semibold text-gray-800">Innovate Co.</h3>
<p class="text-sm text-gray-500">Design</p>
</div>
</div>
<div class="space-y-2">
<div class="flex items-center text-sm text-gray-600">
<i class="fas fa-users mr-2 text-gray-400"></i>
<span>12 contacts</span>
</div>
<div class="flex items-center text-sm text-gray-600">
<i class="fas fa-handshake mr-2 text-gray-400"></i>
<span>2 active deals</span>
</div>
<div class="flex items-center text-sm text-gray-600">
<i class="fas fa-dollar-sign mr-2 text-gray-400"></i>
<span>$45,000 pipeline</span>
</div>
</div>
</div>
<div class="px-6 py-3 bg-gray-50 border-t border-gray-200 flex justify-end space-x-2">
<button class="text-indigo-600 hover:text-indigo-900 text-sm font-medium">
View
</button>
<button class="text-blue-600 hover:text-blue-900 text-sm font-medium">
Edit
</button>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm overflow-hidden hover:shadow-md transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<div class="bg-yellow-100 p-3 rounded-lg mr-4">
<i class="fas fa-building text-yellow-600 text-xl"></i>
</div>
<div>
<h3 class="text-lg font-semibold text-gray-800">NextGen Tech</h3>
<p class="text-sm text-gray-500">AI</p>
</div>
</div>
<div class="space-y-2">
<div class="flex items-center text-sm text-gray-600">
<i class="fas fa-users mr-2 text-gray-400"></i>
<span>8 contacts</span>
</div>
<div class="flex items-center text-sm text-gray-600">
<i class="fas fa-handshake mr-2 text-gray-400"></i>
<span>1 active deal</span>
</div>
<div class="flex items-center text-sm text-gray-600">
<i class="fas fa-dollar-sign mr-2 text-gray-400"></i>
<span>$32,000 pipeline</span>
</div>
</div>
</div>
<div class="px-6 py-3 bg-gray-50 border-t border-gray-200 flex justify-end space-x-2">
<button class="text-indigo-600 hover:text-indigo-900 text-sm font-medium">
View
</button>
<button class="text-blue-600 hover:text-blue-900 text-sm font-medium">
Edit
</button>
</div>
</div>
<div class="bg-white rounded-xl shadow-sm overflow-hidden hover:shadow-md transition duration-300">
<div class="p-6 flex flex-col items-center justify-center h-full">
<div class="bg-gray-100 p-4 rounded-full mb-3">
<i class="fas fa-plus text-gray-400 text-xl"></i>
</div>
<h3 class="text-lg font-semibold text-gray-800 mb-1">Add New Company</h3>
<p class="text-sm text-gray-500 text-center">Click here to add a new company to your CRM</p>
</div>
</div>
</div>
</div>
<!-- Deals Screen -->
<div id="deals-screen" class="screen hidden">
<div class="mb-6 flex justify-between items-center">
<h2 class="text-2xl font-bold text-gray-800">Deals</h2>
<button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-lg text-sm font-medium flex items-center">
<i class="fas fa-plus mr-2"></i> Add Deal
</button>
</div>
<div class="bg-white rounded-xl shadow-sm overflow-hidden mb-6">
<div class="border-b border-gray-200">
<nav class="flex -mb-px">
<button class="tab-active py-4 px-6 text-sm font-medium text-center border-b-2 border-indigo-500">
All Deals
</button>
<button class="py-4 px-6 text-sm font-medium text-center text-gray-500 hover:text-gray-700 border-b-2 border-transparent hover:border-gray-300">
My Deals
</button>
<button class="py-4 px-6 text-sm font-medium text-center text-gray-500 hover:text-gray-700 border-b-2 border-transparent hover:border-gray-300">
Hot
</button>
<button class="py-4 px-6 text-sm font-medium text-center text-gray-500 hover:text-gray-700 border-b-2 border-transparent hover:border-gray-300">
Won
</button>
<button class="py-4 px-6 text-sm font-medium text-center text-gray-500 hover:text-gray-700 border-b-2 border-transparent hover:border-gray-300">
Lost
</button>
</nav>
</div>
<div class="p-4 border-b border-gray-200 flex justify-between items-center">
<div class="relative w-64">
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
<i class="fas fa-search text-gray-400"></i>
</div>
<input type="text" class="block w-full pl-10 pr-3 py-2 border border-gray-300 rounded-md leading-5 bg-white placeholder-gray-500 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm" placeholder="Search deals...">
</div>
<div class="flex space-x-2">
<button class="px-3 py-1 text-sm bg-gray-100 hover:bg-gray-200 rounded-md flex items-center">
<i class="fas fa-filter mr-2 text-gray-500"></i>
<span>Filter</span>
</button>
<button class="px-3 py-1 text-sm bg-gray-100 hover:bg-gray-200 rounded-md flex items-center">
<i class="fas fa-sort mr-2 text-gray-500"></i>
<span>Sort</span>
</button>
</div>
</div>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Deal Name</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Company</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Amount</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Stage</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Expected Close</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Owner</th>
<th scope="col" class="px-6 py-3 text-right text-xs font-medium text-gray-500 uppercase tracking-wider">Actions</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-gray-900">Enterprise Software</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">Acme Corporation</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-bold text-gray-900">$24,000</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<span class="deal-stage bg-indigo-500"></span>
<span class="text-sm text-gray-900">Proposal</span>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">May 15, 2023</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/44.jpg" class="w-6 h-6 rounded-full mr-2" alt="User">
<span class="text-sm text-gray-900">Sarah J.</span>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
<div class="flex justify-end space-x-2">
<button class="text-indigo-600 hover:text-indigo-900">
<i class="fas fa-eye"></i>
</button>
<button class="text-blue-600 hover:text-blue-900">
<i class="fas fa-edit"></i>
</button>
</div>
</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-gray-900">Marketing Services</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">TechStart Inc.</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-bold text-gray-900">$18,500</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<span class="deal-stage bg-blue-500"></span>
<span class="text-sm text-gray-900">Negotiation</span>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">June 1, 2023</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-6 h-6 rounded-full mr-2" alt="User">
<span class="text-sm text-gray-900">Mike T.</span>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
<div class="flex justify-end space-x-2">
<button class="text-indigo-600 hover:text-indigo-900">
<i class="fas fa-eye"></i>
</button>
<button class="text-blue-600 hover:text-blue-900">
<i class="fas fa-edit"></i>
</button>
</div>
</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-gray-900">Consulting Project</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">Global Solutions</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-bold text-gray-900">$32,000</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<span class="deal-stage bg-green-500"></span>
<span class="text-sm text-gray-900">Discovery</span>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">June 15, 2023</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/68.jpg" class="w-6 h-6 rounded-full mr-2" alt="User">
<span class="text-sm text-gray-900">Lisa M.</span>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
<div class="flex justify-end space-x-2">
<button class="text-indigo-600 hover:text-indigo-900">
<i class="fas fa-eye"></i>
</button>
<button class="text-blue-600 hover:text-blue-900">
<i class="fas fa-edit"></i>
</button>
</div>
</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-gray-900">Website Redesign</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">Innovate Co.</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-bold text-gray-900">$12,500</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<span class="deal-stage bg-yellow-500"></span>
<span class="text-sm text-gray-900">Qualification</span>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">May 30, 2023</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/75.jpg" class="w-6 h-6 rounded-full mr-2" alt="User">
<span class="text-sm text-gray-900">David K.</span>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
<div class="flex justify-end space-x-2">
<button class="text-indigo-600 hover:text-indigo-900">
<i class="fas fa-eye"></i>
</button>
<button class="text-blue-600 hover:text-blue-900">
<i class="fas fa-edit"></i>
</button>
</div>
</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-gray-900">AI Implementation</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">NextGen Tech</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-bold text-gray-900">$37,500</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<span class="deal-stage bg-purple-500"></span>
<span class="text-sm text-gray-900">Closed Won</span>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">May 5, 2023</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/44.jpg" class="w-6 h-6 rounded-full mr-2" alt="User">
<span class="text-sm text-gray-900">Sarah J.</span>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
<div class="flex justify-end space-x-2">
<button class="text-indigo-600 hover:text-indigo-900">
<i class="fas fa-eye"></i>
</button>
<button class="text-blue-600 hover:text-blue-900">
<i class="fas fa-edit"></i>
</button>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="px-6 py-4 border-t border-gray-200 flex items-center justify-between">
<div class="text-sm text-gray-500">
Showing <span class="font-medium">1</span> to <span class="font-medium">5</span> of <span class="font-medium">18</span> results
</div>
<div class="flex space-x-2">
<button class="px-3 py-1 border border-gray-300 rounded-md text-sm font-medium text-gray-700 bg-white hover:bg-gray-50">
Previous
</button>
<button class="px-3 py-1 border border-gray-300 rounded-md text-sm font-medium text-white bg-indigo-600 hover:bg-indigo-700">
1
</button>
<button class="px-3 py-1 border border-gray-300 rounded-md text-sm font-medium text-gray-700 bg-white hover:bg-gray-50">
2
</button>
<button class="px-3 py-1 border border-gray-300 rounded-md text-sm font-medium text-gray-700 bg-white hover:bg-gray-50">
3
</button>
<button class="px-3 py-1 border border-gray-300 rounded-md text-sm font-medium text-gray-700 bg-white hover:bg-gray-50">
Next
</button>
</div>
</div>
</div>
</div>
<!-- Tasks Screen -->
<div id="tasks-screen" class="screen hidden">
<div class="mb-6 flex justify-between items-center">
<h2 class="text-2xl font-bold text-gray-800">Tasks</h2>
<button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-lg text-sm font-medium flex items-center">
<i class="fas fa-plus mr-2"></i> Add Task
</button>
</div>
<div class="bg-white rounded-xl shadow-sm overflow-hidden mb-6">
<div class="border-b border-gray-200">
<nav class="flex -mb-px">
<button class="tab-active py-4 px-6 text-sm font-medium text-center border-b-2 border-indigo-500">
All Tasks
</button>
<button class="py-4 px-6 text-sm font-medium text-center text-gray-500 hover:text-gray-700 border-b-2 border-transparent hover:border-gray-300">
Today
</button>
<button class="py-4 px-6 text-sm font-medium text-center text-gray-500 hover:text-gray-700 border-b-2 border-transparent hover:border-gray-300">
Upcoming
</button>
<button class="py-4 px-6 text-sm font-medium text-center text-gray-500 hover:text-gray-700 border-b-2 border-transparent hover:border-gray-300">
Overdue
</button>
<button class="py-4 px-6 text-sm font-medium text-center text-gray-500 hover:text-gray-700 border-b-2 border-transparent hover:border-gray-300">
Completed
</button>
</nav>
</div>
<div class="p-4 border-b border-gray-200 flex justify-between items-center">
<div class="relative w-64">
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
<i class="fas fa-search text-gray-400"></i>
</div>
<input type="text" class="block w-full pl-10 pr-3 py-2 border border-gray-300 rounded-md leading-5 bg-white placeholder-gray-500 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm" placeholder="Search tasks...">
</div>
<div class="flex space-x-2">
<button class="px-3 py-1 text-sm bg-gray-100 hover:bg-gray-200 rounded-md flex items-center">
<i class="fas fa-filter mr-2 text-gray-500"></i>
<span>Filter</span>
</button>
<button class="px-3 py-1 text-sm bg-gray-100 hover:bg-gray-200 rounded-md flex items-center">
<i class="fas fa-sort mr-2 text-gray-500"></i>
<span>Sort</span>
</button>
</div>
</div>
<div class="divide-y divide-gray-200">
<div class="p-4 hover:bg-gray-50">
<div class="flex items-center justify-between">
<div class="flex items-center">
<input type="checkbox" class="task-checkbox rounded text-indigo-600 focus:ring-indigo-500">
<label class="task-label ml-3">
<p class="text-sm font-medium text-gray-800">Follow up with Acme Corp about proposal</p>
<p class="text-xs text-gray-500">Due tomorrow</p>
</label>
</div>
<div class="flex items-center space-x-3">
<span class="bg-indigo-100 text-indigo-800 text-xs px-2 py-1 rounded">Deal</span>
<img src="https://randomuser.me/api/portraits/women/44.jpg" class="w-6 h-6 rounded-full" alt="User">
</div>
</div>
</div>
<div class="p-4 hover:bg-gray-50">
<div class="flex items-center justify-between">
<div class="flex items-center">
<input type="checkbox" class="task-checkbox rounded text-indigo-600 focus:ring-indigo-500">
<label class="task-label ml-3">
<p class="text-sm font-medium text-gray-800">Prepare quarterly sales report</p>
<p class="text-xs text-gray-500">Due in 2 days</p>
</label>
</div>
<div class="flex items-center space-x-3">
<span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">Report</span>
<img src="https://randomuser.me/api/portraits/men/32.jpg" class="w-6 h-6 rounded-full" alt="User">
</div>
</div>
</div>
<div class="p-4 hover:bg-gray-50">
<div class="flex items-center justify-between">
<div class="flex items-center">
<input type="checkbox" class="task-checkbox rounded text-indigo-600 focus:ring-indigo-500">
<label class="task-label ml-3">
<p class="text-sm font-medium text-gray-800">Schedule meeting with TechStart team</p>
<p class="text-xs text-gray-500">Due today</p>
</label>
</div>
<div class="flex items-center space-x-3">
<span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">Meeting</span>
<img src="https://random
</html> |