Spaces:
Running
Running
File size: 81,563 Bytes
1366041 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GSE Courier Delivery Service | Reliable Shipping Solutions</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>
/* Custom CSS */
.hero-gradient {
background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}
.tracking-input:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.status-pending {
background-color: #f59e0b;
}
.status-in-transit {
background-color: #3b82f6;
}
.status-delivered {
background-color: #10b981;
}
.status-failed {
background-color: #ef4444;
}
.nav-link:hover::after {
content: '';
display: block;
width: 100%;
height: 2px;
background-color: #3b82f6;
margin-top: 2px;
}
.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Header/Navigation -->
<header class="bg-white shadow-sm sticky top-0 z-50">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center">
<div class="w-12 h-12 bg-blue-600 rounded-full flex items-center justify-center text-white font-bold text-xl mr-3">
GSE
</div>
<h1 class="text-xl font-bold text-blue-800">GSE COURIER DELIVERY SERVICE</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#home" class="nav-link text-blue-800 font-medium">Home</a>
<a href="#services" class="nav-link text-gray-600 hover:text-blue-800 font-medium">Services</a>
<a href="#track" class="nav-link text-gray-600 hover:text-blue-800 font-medium">Track Shipment</a>
<a href="#about" class="nav-link text-gray-600 hover:text-blue-800 font-medium">About Us</a>
<a href="#contact" class="nav-link text-gray-600 hover:text-blue-800 font-medium">Contact</a>
</nav>
<div class="hidden md:block">
<a href="#request" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md font-medium transition duration-300">
Request Pickup
</a>
</div>
<button class="md:hidden text-gray-600 focus:outline-none">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</header>
<!-- Mobile Menu (hidden by default) -->
<div class="md:hidden hidden bg-white shadow-lg absolute w-full z-40" id="mobileMenu">
<div class="container mx-auto px-4 py-3 flex flex-col space-y-3">
<a href="#home" class="text-blue-800 font-medium py-2 border-b border-gray-100">Home</a>
<a href="#services" class="text-gray-600 hover:text-blue-800 font-medium py-2 border-b border-gray-100">Services</a>
<a href="#track" class="text-gray-600 hover:text-blue-800 font-medium py-2 border-b border-gray-100">Track Shipment</a>
<a href="#about" class="text-gray-600 hover:text-blue-800 font-medium py-2 border-b border-gray-100">About Us</a>
<a href="#contact" class="text-gray-600 hover:text-blue-800 font-medium py-2 border-b border-gray-100">Contact</a>
<a href="#request" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md font-medium text-center transition duration-300 my-2">
Request Pickup
</a>
</div>
</div>
<!-- Hero Section -->
<section id="home" class="hero-gradient text-white py-16 md:py-24">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Fast & Reliable Courier Services</h1>
<p class="text-xl mb-8 text-blue-100">Delivering your packages with care and precision across the region. Trust GSE for all your shipping needs.</p>
<div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4">
<a href="#request" class="bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-md font-bold text-center transition duration-300">
Request Pickup <i class="fas fa-arrow-right ml-2"></i>
</a>
<a href="#services" class="bg-transparent border-2 border-white hover:bg-white hover:text-blue-600 px-6 py-3 rounded-md font-bold text-center transition duration-300">
Our Services
</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Courier Delivery"
class="rounded-lg shadow-2xl max-w-full h-auto">
</div>
</div>
</div>
</section>
<!-- Tracking Section -->
<section id="track" class="py-12 bg-gray-50">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto bg-white rounded-xl shadow-md overflow-hidden p-6 md:p-8">
<h2 class="text-2xl md:text-3xl font-bold text-center mb-6 text-blue-800">Track Your Shipment</h2>
<div class="flex flex-col md:flex-row items-center">
<div class="w-full md:w-3/4 mb-4 md:mb-0 md:mr-4">
<div class="relative">
<input type="text"
id="trackingNumber"
placeholder="Enter your tracking number"
class="w-full px-4 py-3 border border-gray-300 rounded-md tracking-input focus:border-blue-500 transition duration-300">
<button class="absolute right-2 top-2 text-gray-400 hover:text-gray-600">
<i class="fas fa-search"></i>
</button>
</div>
</div>
<button id="trackButton" class="w-full md:w-1/4 bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-md font-medium transition duration-300">
Track Now
</button>
</div>
<!-- Tracking Results (hidden by default) -->
<div id="trackingResults" class="mt-8 hidden">
<div class="bg-gray-50 p-6 rounded-lg">
<div class="flex justify-between items-center mb-4">
<h3 class="text-lg font-semibold">Shipment #GS123456789</h3>
<span class="px-3 py-1 rounded-full text-white font-medium status-in-transit">In Transit</span>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
<div>
<h4 class="font-medium text-gray-500 mb-2">Sender Information</h4>
<p class="font-semibold">John Smith</p>
<p>123 Business Ave, Suite 45</p>
<p>New York, NY 10001</p>
<p>Phone: (555) 123-4567</p>
</div>
<div>
<h4 class="font-medium text-gray-500 mb-2">Recipient Information</h4>
<p class="font-semibold">Sarah Johnson</p>
<p>456 Commerce St, Apt 3B</p>
<p>Boston, MA 02108</p>
<p>Phone: (555) 987-6543</p>
</div>
</div>
<div class="mb-6">
<h4 class="font-medium text-gray-500 mb-2">Package Details</h4>
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<div>
<p class="text-sm text-gray-500">Weight</p>
<p class="font-semibold">5.2 kg</p>
</div>
<div>
<p class="text-sm text-gray-500">Dimensions</p>
<p class="font-semibold">30x20x15 cm</p>
</div>
<div>
<p class="text-sm text-gray-500">Service</p>
<p class="font-semibold">Next-Day Delivery</p>
</div>
<div>
<p class="text-sm text-gray-500">Est. Delivery</p>
<p class="font-semibold">June 15, 2023</p>
</div>
</div>
</div>
<h4 class="font-medium text-gray-500 mb-4">Shipment Progress</h4>
<div class="relative">
<!-- Timeline -->
<div class="absolute left-4 top-0 bottom-0 w-0.5 bg-blue-200"></div>
<!-- Timeline Items -->
<div class="relative mb-8 pl-10">
<div class="absolute left-0 top-0 w-8 h-8 rounded-full bg-blue-600 flex items-center justify-center text-white">
<i class="fas fa-check"></i>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm">
<p class="font-semibold">Shipment Created</p>
<p class="text-sm text-gray-500">June 12, 2023 - 10:15 AM</p>
<p class="text-sm mt-1">Your shipment has been registered in our system.</p>
</div>
</div>
<div class="relative mb-8 pl-10">
<div class="absolute left-0 top-0 w-8 h-8 rounded-full bg-blue-600 flex items-center justify-center text-white">
<i class="fas fa-check"></i>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm">
<p class="font-semibold">Picked Up</p>
<p class="text-sm text-gray-500">June 12, 2023 - 2:30 PM</p>
<p class="text-sm mt-1">Your package has been collected by our courier.</p>
</div>
</div>
<div class="relative mb-8 pl-10">
<div class="absolute left-0 top-0 w-8 h-8 rounded-full bg-blue-600 flex items-center justify-center text-white">
<i class="fas fa-truck"></i>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm">
<p class="font-semibold">In Transit</p>
<p class="text-sm text-gray-500">June 13, 2023 - 9:45 AM</p>
<p class="text-sm mt-1">Your package is on its way to the destination city.</p>
</div>
</div>
<div class="relative pl-10">
<div class="absolute left-0 top-0 w-8 h-8 rounded-full bg-gray-200 flex items-center justify-center text-gray-500">
<i class="fas fa-truck-loading"></i>
</div>
<div class="bg-gray-50 p-4 rounded-lg">
<p class="font-semibold">Out for Delivery</p>
<p class="text-sm text-gray-500">Estimated: June 15, 2023</p>
<p class="text-sm mt-1">Your package will be delivered today.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-blue-800 mb-4">Our Services</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">We offer a comprehensive range of courier services tailored to meet your business and personal shipping needs.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service Card 1 -->
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300 hover:shadow-lg">
<div class="h-48 bg-blue-100 flex items-center justify-center">
<i class="fas fa-bolt text-blue-600 text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-blue-800">Same-Day Delivery</h3>
<p class="text-gray-600 mb-4">Get your packages delivered within the same day for urgent shipments within the metropolitan area.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Guanteed delivery by 9 PM</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Real-time tracking</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Signature confirmation</span>
</li>
</ul>
<a href="#request" class="text-blue-600 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Service Card 2 -->
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300 hover:shadow-lg">
<div class="h-48 bg-green-100 flex items-center justify-center">
<i class="fas fa-clock text-green-600 text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-blue-800">Next-Day Delivery</h3>
<p class="text-gray-600 mb-4">Reliable next-day delivery service for time-sensitive shipments across our regional network.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Delivery by 5 PM next business day</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Coverage across 50+ cities</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Free first-attempt delivery</span>
</li>
</ul>
<a href="#request" class="text-blue-600 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Service Card 3 -->
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300 hover:shadow-lg">
<div class="h-48 bg-purple-100 flex items-center justify-center">
<i class="fas fa-boxes text-purple-600 text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-blue-800">Bulk Consignment</h3>
<p class="text-gray-600 mb-4">Specialized service for businesses requiring regular bulk shipments with customized solutions.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Dedicated account manager</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Volume discounts available</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Scheduled pickups</span>
</li>
</ul>
<a href="#request" class="text-blue-600 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Service Card 4 -->
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300 hover:shadow-lg">
<div class="h-48 bg-yellow-100 flex items-center justify-center">
<i class="fas fa-temperature-low text-yellow-600 text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-blue-800">Temperature-Controlled</h3>
<p class="text-gray-600 mb-4">Specialized service for perishable goods, pharmaceuticals, and other temperature-sensitive items.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Refrigerated and frozen options</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>24/7 temperature monitoring</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Compliance with industry standards</span>
</li>
</ul>
<a href="#request" class="text-blue-600 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Service Card 5 -->
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300 hover:shadow-lg">
<div class="h-48 bg-red-100 flex items-center justify-center">
<i class="fas fa-gem text-red-600 text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-blue-800">High-Value Shipments</h3>
<p class="text-gray-600 mb-4">Secure transportation for valuable items with enhanced security measures and insurance options.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Discreet packaging available</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Armed escorts upon request</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Full insurance coverage</span>
</li>
</ul>
<a href="#request" class="text-blue-600 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Service Card 6 -->
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300 hover:shadow-lg">
<div class="h-48 bg-indigo-100 flex items-center justify-center">
<i class="fas fa-globe-americas text-indigo-600 text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3 text-blue-800">International Shipping</h3>
<p class="text-gray-600 mb-4">Comprehensive international shipping solutions with customs clearance and documentation assistance.</p>
<ul class="space-y-2 mb-4">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Door-to-door service</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Customs documentation handled</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Competitive international rates</span>
</li>
</ul>
<a href="#request" class="text-blue-600 font-medium inline-flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Request Pickup Section -->
<section id="request" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto bg-white rounded-xl shadow-md overflow-hidden">
<div class="md:flex">
<div class="md:w-1/2 bg-blue-600 text-white p-8 md:p-12">
<h2 class="text-2xl font-bold mb-4">Request a Pickup</h2>
<p class="mb-6">Fill out the form to schedule a pickup for your shipment. Our courier will collect your package at your preferred time.</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-500 rounded-full p-2">
<i class="fas fa-phone-alt text-white"></i>
</div>
<div class="ml-3">
<p class="text-sm font-medium text-blue-100">Need immediate assistance?</p>
<p class="text-lg font-semibold">(555) 123-4567</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-500 rounded-full p-2">
<i class="fas fa-clock text-white"></i>
</div>
<div class="ml-3">
<p class="text-sm font-medium text-blue-100">Operating Hours</p>
<p class="text-lg font-semibold">Mon-Fri: 8AM - 8PM</p>
<p class="text-lg font-semibold">Sat: 9AM - 5PM</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-500 rounded-full p-2">
<i class="fas fa-map-marker-alt text-white"></i>
</div>
<div class="ml-3">
<p class="text-sm font-medium text-blue-100">Service Area</p>
<p class="text-lg font-semibold">50+ cities across the region</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 p-8 md:p-12">
<h3 class="text-xl font-bold mb-6 text-blue-800">Pickup Request Form</h3>
<form id="pickupForm">
<div class="mb-4">
<label for="serviceType" class="block text-sm font-medium text-gray-700 mb-1">Service Type</label>
<select id="serviceType" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500">
<option value="">Select a service</option>
<option value="same-day">Same-Day Delivery</option>
<option value="next-day">Next-Day Delivery</option>
<option value="bulk">Bulk Consignment</option>
<option value="temperature">Temperature-Controlled</option>
<option value="high-value">High-Value Shipment</option>
<option value="international">International Shipping</option>
</select>
</div>
<div class="mb-4">
<label for="pickupDate" class="block text-sm font-medium text-gray-700 mb-1">Preferred Pickup Date</label>
<input type="date" id="pickupDate" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500">
</div>
<div class="mb-4">
<label for="pickupTime" class="block text-sm font-medium text-gray-700 mb-1">Preferred Pickup Time</label>
<select id="pickupTime" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500">
<option value="morning">Morning (8AM - 12PM)</option>
<option value="afternoon">Afternoon (12PM - 5PM)</option>
<option value="evening">Evening (5PM - 8PM)</option>
</select>
</div>
<div class="mb-4">
<label for="senderName" class="block text-sm font-medium text-gray-700 mb-1">Your Name</label>
<input type="text" id="senderName" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="John Smith">
</div>
<div class="mb-4">
<label for="senderPhone" class="block text-sm font-medium text-gray-700 mb-1">Phone Number</label>
<input type="tel" id="senderPhone" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="(555) 123-4567">
</div>
<div class="mb-4">
<label for="senderAddress" class="block text-sm font-medium text-gray-700 mb-1">Pickup Address</label>
<textarea id="senderAddress" rows="2" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="123 Business Ave, Suite 45"></textarea>
</div>
<div class="mb-6">
<label for="specialInstructions" class="block text-sm font-medium text-gray-700 mb-1">Special Instructions</label>
<textarea id="specialInstructions" rows="2" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="Any specific instructions for our courier"></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-md font-medium transition duration-300">
Submit Request
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- About Us Section -->
<section id="about" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<h2 class="text-3xl font-bold text-blue-800 mb-6">About GSE Courier Delivery Service</h2>
<p class="text-gray-600 mb-6 text-lg">Founded in 2010, GSE Courier Delivery Service has grown from a local delivery provider to a regional leader in logistics solutions. Our commitment to reliability, speed, and customer service has earned us a reputation as a trusted partner for businesses and individuals alike.</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 rounded-full p-2">
<i class="fas fa-bullseye text-blue-600"></i>
</div>
<div class="ml-3">
<h3 class="text-lg font-semibold text-gray-800">Our Mission</h3>
<p class="text-gray-600">To provide exceptional courier services that connect businesses and individuals through reliable, efficient, and secure delivery solutions.</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 rounded-full p-2">
<i class="fas fa-eye text-blue-600"></i>
</div>
<div class="ml-3">
<h3 class="text-lg font-semibold text-gray-800">Our Vision</h3>
<p class="text-gray-600">To be the preferred logistics partner in our region by continuously innovating and exceeding customer expectations.</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 rounded-full p-2">
<i class="fas fa-heart text-blue-600"></i>
</div>
<div class="ml-3">
<h3 class="text-lg font-semibold text-gray-800">Our Values</h3>
<p class="text-gray-600">Reliability, Integrity, Customer Focus, Innovation, and Teamwork form the foundation of everything we do.</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-gray-50 p-8 rounded-xl">
<h3 class="text-xl font-bold mb-6 text-blue-800">Why Choose GSE?</h3>
<div class="space-y-6">
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-600 text-white">
<i class="fas fa-shield-alt"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Secure Handling</h4>
<p class="mt-2 text-gray-600">All shipments are handled with care and tracked throughout the delivery process.</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-600 text-white">
<i class="fas fa-tachometer-alt"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Fast Delivery</h4>
<p class="mt-2 text-gray-600">Our optimized routes and dedicated team ensure your packages arrive on time, every time.</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-600 text-white">
<i class="fas fa-headset"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">24/7 Support</h4>
<p class="mt-2 text-gray-600">Our customer service team is available around the clock to assist with any inquiries.</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-600 text-white">
<i class="fas fa-map-marked-alt"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Wide Coverage</h4>
<p class="mt-2 text-gray-600">We serve over 50 cities across the region with plans for continuous expansion.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="py-16 bg-blue-600 text-white">
<div class="container mx-auto px-4">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
<div>
<div class="text-4xl md:text-5xl font-bold mb-2">13+</div>
<div class="text-sm md:text-base font-medium uppercase tracking-wider">Years in Business</div>
</div>
<div>
<div class="text-4xl md:text-5xl font-bold mb-2">50+</div>
<div class="text-sm md:text-base font-medium uppercase tracking-wider">Cities Served</div>
</div>
<div>
<div class="text-4xl md:text-5xl font-bold mb-2">250K+</div>
<div class="text-sm md:text-base font-medium uppercase tracking-wider">Deliveries Made</div>
</div>
<div>
<div class="text-4xl md:text-5xl font-bold mb-2">98%</div>
<div class="text-sm md:text-base font-medium uppercase tracking-wider">On-Time Rate</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-blue-800 mb-4">What Our Clients Say</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Don't just take our word for it - hear from some of our satisfied customers.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah Johnson">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Sarah Johnson</h4>
<p class="text-gray-500">ABC Corporation</p>
</div>
</div>
<div class="text-gray-600">
<p>"We've been using GSE for our urgent document deliveries for over 3 years. Their same-day service is incredibly reliable and has never let us down. The tracking system gives us peace of mind knowing exactly where our important packages are at all times."</p>
</div>
<div class="mt-4 flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Michael Chen</h4>
<p class="text-gray-500">Fresh Foods Co.</p>
</div>
</div>
<div class="text-gray-600">
<p>"As a perishable goods supplier, we need a courier that understands temperature control. GSE's refrigerated service has been a game-changer for our business. Their drivers are professional and their equipment is top-notch. Our product arrives in perfect condition every time."</p>
</div>
<div class="mt-4 flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/65.jpg" alt="Lisa Rodriguez">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Lisa Rodriguez</h4>
<p class="text-gray-500">Jewelry Designs</p>
</div>
</div>
<div class="text-gray-600">
<p>"Shipping high-value jewelry items was always stressful until we found GSE. Their high-value shipment service with armed escorts gives us complete confidence. The insurance options are comprehensive and their customer service team is always available to answer questions."</p>
</div>
<div class="mt-4 flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto">
<h2 class="text-3xl font-bold text-center text-blue-800 mb-12">Contact Us</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<h3 class="text-xl font-semibold mb-4 text-gray-800">Get in Touch</h3>
<p class="text-gray-600 mb-6">Have questions about our services or need assistance with an existing shipment? Our team is here to help.</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 rounded-full p-2">
<i class="fas fa-map-marker-alt text-blue-600"></i>
</div>
<div class="ml-3">
<p class="text-sm font-medium text-gray-500">Headquarters</p>
<p class="text-base font-semibold text-gray-900">123 Logistics Plaza, Suite 500</p>
<p class="text-base font-semibold text-gray-900">New York, NY 10001</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 rounded-full p-2">
<i class="fas fa-phone-alt text-blue-600"></i>
</div>
<div class="ml-3">
<p class="text-sm font-medium text-gray-500">Phone</p>
<p class="text-base font-semibold text-gray-900">(555) 123-4567</p>
<p class="text-sm text-gray-500">24/7 Customer Support</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 rounded-full p-2">
<i class="fas fa-envelope text-blue-600"></i>
</div>
<div class="ml-3">
<p class="text-sm font-medium text-gray-500">Email</p>
<p class="text-base font-semibold text-gray-900">info@gsecourier.com</p>
<p class="text-sm text-gray-500">Response within 2 hours</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 rounded-full p-2">
<i class="fas fa-clock text-blue-600"></i>
</div>
<div class="ml-3">
<p class="text-sm font-medium text-gray-500">Operating Hours</p>
<p class="text-base font-semibold text-gray-900">Monday - Friday: 8AM - 8PM</p>
<p class="text-base font-semibold text-gray-900">Saturday: 9AM - 5PM</p>
<p class="text-base font-semibold text-gray-900">Sunday: Closed</p>
</div>
</div>
</div>
</div>
<div>
<h3 class="text-xl font-semibold mb-4 text-gray-800">Send Us a Message</h3>
<form id="contactForm">
<div class="mb-4">
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Your Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="John Smith">
</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-blue-500 focus:border-blue-500" placeholder="john@example.com">
</div>
<div class="mb-4">
<label for="subject" class="block text-sm font-medium text-gray-700 mb-1">Subject</label>
<input type="text" id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="How can we help?">
</div>
<div class="mb-4">
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="Your message here..."></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-md font-medium transition duration-300">
Send Message
</button>
</form>
</div>
</div>
<div class="mt-12 bg-gray-50 p-6 rounded-xl">
<h3 class="text-xl font-semibold mb-4 text-gray-800">Service Area Map</h3>
<div class="h-64 bg-gray-200 rounded-lg flex items-center justify-center">
<i class="fas fa-map-marked-alt text-4xl text-gray-400"></i>
</div>
<p class="mt-4 text-gray-600 text-center">We currently serve over 50 cities across the region with plans for continuous expansion.</p>
</div>
</div>
</div>
</section>
<!-- Admin Panel (Hidden by default) -->
<div id="adminPanel" class="hidden fixed inset-0 bg-gray-900 bg-opacity-50 z-50 overflow-y-auto">
<div class="flex items-center justify-center min-h-screen">
<div class="bg-white rounded-lg shadow-xl w-full max-w-6xl max-h-screen overflow-y-auto">
<!-- Admin Header -->
<div class="bg-blue-800 text-white px-6 py-4 rounded-t-lg flex justify-between items-center">
<h2 class="text-xl font-bold">GSE Courier Admin Panel</h2>
<button id="closeAdminPanel" class="text-white hover:text-gray-200">
<i class="fas fa-times"></i>
</button>
</div>
<!-- Admin Content -->
<div class="p-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-6 mb-8">
<!-- Admin Stats -->
<div class="bg-blue-50 p-4 rounded-lg border border-blue-100">
<div class="text-blue-800 font-medium mb-1">Today's Shipments</div>
<div class="text-3xl font-bold text-blue-600">24</div>
<div class="text-sm text-blue-500">+3 from yesterday</div>
</div>
<div class="bg-green-50 p-4 rounded-lg border border-green-100">
<div class="text-green-800 font-medium mb-1">Pending Pickups</div>
<div class="text-3xl font-bold text-green-600">8</div>
<div class="text-sm text-green-500">2 awaiting confirmation</div>
</div>
<div class="bg-yellow-50 p-4 rounded-lg border border-yellow-100">
<div class="text-yellow-800 font-medium mb-1">In Transit</div>
<div class="text-3xl font-bold text-yellow-600">15</div>
<div class="text-sm text-yellow-500">3 delayed shipments</div>
</div>
<div class="bg-purple-50 p-4 rounded-lg border border-purple-100">
<div class="text-purple-800 font-medium mb-1">Revenue Today</div>
<div class="text-3xl font-bold text-purple-600">$1,245</div>
<div class="text-sm text-purple-500">Monthly: $28,760</div>
</div>
</div>
<!-- Admin Tabs -->
<div class="border-b border-gray-200 mb-6">
<div class="flex space-x-8">
<button class="admin-tab active px-1 py-3 text-sm font-medium text-blue-600 border-b-2 border-blue-600">
Shipments
</button>
<button class="admin-tab px-1 py-3 text-sm font-medium text-gray-500 hover:text-gray-700">
Pickup Requests
</button>
<button class="admin-tab px-1 py-3 text-sm font-medium text-gray-500 hover:text-gray-700">
Customers
</button>
<button class="admin-tab px-1 py-3 text-sm font-medium text-gray-500 hover:text-gray-700">
Content
</button>
<button class="admin-tab px-1 py-3 text-sm font-medium text-gray-500 hover:text-gray-700">
Settings
</button>
</div>
</div>
<!-- Shipments Tab Content -->
<div id="shipmentsTab" class="admin-tab-content">
<div class="flex justify-between items-center mb-6">
<h3 class="text-lg font-medium text-gray-900">Manage Shipments</h3>
<button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium flex items-center">
<i class="fas fa-plus mr-2"></i> New Shipment
</button>
</div>
<!-- Search and Filters -->
<div class="mb-6">
<div class="flex flex-col md:flex-row space-y-4 md:space-y-0 md:space-x-4">
<div class="flex-1">
<div class="relative">
<input type="text" placeholder="Search shipments..." class="w-full pl-10 pr-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500">
<div class="absolute left-3 top-2.5 text-gray-400">
<i class="fas fa-search"></i>
</div>
</div>
</div>
<div class="flex space-x-4">
<select class="border border-gray-300 rounded-md px-3 py-2 focus:ring-blue-500 focus:border-blue-500 text-sm">
<option>All Status</option>
<option>Pending</option>
<option>Picked Up</option>
<option>In Transit</option>
<option>Out for Delivery</option>
<option>Delivered</option>
<option>Failed</option>
</select>
<select class="border border-gray-300 rounded-md px-3 py-2 focus:ring-blue-500 focus:border-blue-500 text-sm">
<option>Today</option>
<option>Last 7 Days</option>
<option>This Month</option>
<option>Custom Range</option>
</select>
</div>
</div>
</div>
<!-- Shipments Table -->
<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">
Tracking #
</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Sender
</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Recipient
</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Status
</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Created
</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Actions
</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-blue-600">
GS987654321
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
Tech Solutions Inc.
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
Global Enterprises
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-green-100 text-green-800">
Delivered
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
Jun 14, 2023
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
<a href="#" class="text-blue-600 hover:text-blue-900 mr-3">View</a>
<a href="#" class="text-gray-600 hover:text-gray-900">Print</a>
</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-blue-600">
GS123456789
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
Sarah Johnson
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
Michael Brown
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-blue-100 text-blue-800">
In Transit
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
Jun 15, 2023
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
<a href="#" class="text-blue-600 hover:text-blue-900 mr-3">View</a>
<a href="#" class="text-gray-600 hover:text-gray-900">Update</a>
</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-blue-600">
GS456789123
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
Fresh Foods Co.
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
Downtown Market
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-yellow-100 text-yellow-800">
Out for Delivery
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
Jun 16, 2023
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
<a href="#" class="text-blue-600 hover:text-blue-900 mr-3">View</a>
<a href="#" class="text-gray-600 hover:text-gray-900">Update</a>
</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-blue-600">
GS789123456
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
Jewelry Designs
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
Luxury Retail Inc.
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-red-100 text-red-800">
Failed Delivery
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
Jun 16, 2023
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
<a href="#" class="text-blue-600 hover:text-blue-900 mr-3">View</a>
<a href="#" class="text-gray-600 hover:text-gray-900">Reschedule</a>
</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-blue-600">
GS321654987
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
Medical Supplies Ltd.
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
City Hospital
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-purple-100 text-purple-800">
Scheduled
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
Jun 17, 2023
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
<a href="#" class="text-blue-600 hover:text-blue-900 mr-3">View</a>
<a href="#" class="text-gray-600 hover:text-gray-900">Cancel</a>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Pagination -->
<div class="bg-white px-4 py-3 flex items-center justify-between border-t border-gray-200 sm:px-6 mt-6">
<div class="flex-1 flex justify-between sm:hidden">
<a href="#" class="relative inline-flex items-center px-4 py-2 border border-gray-300 text-sm font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50">
Previous
</a>
<a href="#" class="ml-3 relative inline-flex items-center px-4 py-2 border border-gray-300 text-sm font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50">
Next
</a>
</div>
<div class="hidden sm:flex-1 sm:flex sm:items-center sm:justify-between">
<div>
<p class="text-sm text-gray-700">
Showing <span class="font-medium">1</span> to <span class="font-medium">5</span> of <span class="font-medium">24</span> results
</p>
</div>
<div>
<nav class="relative z-0 inline-flex rounded-md shadow-sm -space-x-px" aria-label="Pagination">
<a href="#" class="relative inline-flex items-center px-2 py-2 rounded-l-md border border-gray-300 bg-white text-sm font-medium text-gray-500 hover:bg-gray-50">
<span class="sr-only">Previous</span>
<i class="fas fa-chevron-left"></i>
</a>
<a href="#" aria-current="page" class="z-10 bg-blue-50 border-blue-500 text-blue-600 relative inline-flex items-center px-4 py-2 border text-sm font-medium">
1
</a>
<a href="#" class="bg-white border-gray-300 text-gray-500 hover:bg-gray-50 relative inline-flex items-center px-4 py-2 border text-sm font-medium">
2
</a>
<a href="#" class="bg-white border-gray-300 text-gray-500 hover:bg-gray-50 relative inline-flex items-center px-4 py-2 border text-sm font-medium">
3
</a>
<span class="relative inline-flex items-center px-4 py-2 border border-gray-300 bg-white text-sm font-medium text-gray-700">
...
</span>
<a href="#" class="bg-white border-gray-300 text-gray-500 hover:bg-gray-50 relative inline-flex items-center px-4 py-2 border text-sm font-medium">
8
</a>
<a href="#" class="relative inline-flex items-center px-2 py-2 rounded-r-md border border-gray-300 bg-white text-sm font-medium text-gray-500 hover:bg-gray-50">
<span class="sr-only">Next</span>
<i class="fas fa-chevron-right"></i>
</a>
</nav>
</div>
</div>
</div>
</div>
<!-- New Shipment Form (Hidden by default) -->
<div id="newShipmentForm" class="hidden bg-gray-50 p-6 rounded-lg mt-6">
<h3 class="text-lg font-medium text-gray-900 mb-6">Create New Shipment</h3>
<form>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- Sender Information -->
<div class="bg-white p-4 rounded-lg shadow-sm">
<h4 class="font-medium text-gray-700 mb-4">Sender Information</h4>
<div class="mb-4">
<label for="senderNameAdmin" class="block text-sm font-medium text-gray-700 mb-1">Name</label>
<input type="text" id="senderNameAdmin" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="John Smith">
</div>
<div class="mb-4">
<label for="senderCompany" class="block text-sm font-medium text-gray-700 mb-1">Company (Optional)</label>
<input type="text" id="senderCompany" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="ABC Corporation">
</div>
<div class="mb-4">
<label for="senderPhoneAdmin" class="block text-sm font-medium text-gray-700 mb-1">Phone</label>
<input type="tel" id="senderPhoneAdmin" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="(555) 123-4567">
</div>
<div class="mb-4">
<label for="senderEmail" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
<input type="email" id="senderEmail" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="john@example.com">
</div>
<div>
<label for="senderAddressAdmin" class="block text-sm font-medium text-gray-700 mb-1">Address</label>
<textarea id="senderAddressAdmin" rows="3" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="123 Business Ave, Suite 45"></textarea>
</div>
</div>
<!-- Recipient Information -->
<div class="bg-white p-4 rounded-lg shadow-sm">
<h4 class="font-medium text-gray-700 mb-4">Recipient Information</h4>
<div class="mb-4">
<label for="recipientName" class="block text-sm font-medium text-gray-700 mb-1">Name</label>
<input type="text" id="recipientName" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="Sarah Johnson">
</div>
<div class="mb-4">
<label for="recipientCompany" class="block text-sm font-medium text-gray-700 mb-1">Company (Optional)</label>
<input type="text" id="recipientCompany" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="XYZ Enterprises">
</div>
<div class="mb-4">
<label for="recipientPhone" class="block text-sm font-medium text-gray-700 mb-1">Phone</label>
<input type="tel" id="recipientPhone" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="(555) 987-6543">
</div>
<div class="mb-4">
<label for="recipientEmail" class="block text-sm font-medium text-gray-700 mb-1">Email (Optional)</label>
<input type="email" id="recipientEmail" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="sarah@example.com">
</div>
<div>
<label for="recipientAddress" class="block text-sm font-medium text-gray-700 mb-1">Address</label>
<textarea id="recipientAddress" rows="3" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="456 Commerce St, Apt 3B"></textarea>
</div>
</div>
<!-- Package Details -->
<div class="bg-white p-4 rounded-lg shadow-sm md:col-span-2">
<h4 class="font-medium text-gray-700 mb-4">Package Details</h4>
<div class="grid grid-cols-1 md:grid-cols-4 gap-4 mb-4">
<div>
<label for="packageType" class="block text-sm font-medium text-gray-700 mb-1">Type</label>
<select id="packageType" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500">
<option>Document</option>
<option>Parcel</option>
<option>Pallet</option>
<option>Envelope</option>
<option>Tube</option>
</select>
</div>
<div>
<label for="packageWeight" class="block text-sm font-medium text-gray-700 mb-1">Weight (kg)</label>
<input type="number" id="packageWeight" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="2.5">
</div>
<div>
<label for="packageLength" class="block text-sm font-medium text-gray-700 mb-1">Length (cm)</label>
<input type="number" id="packageLength" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="30">
</div>
<div>
<label for="packageWidth" class="block text-sm font-medium text-gray-700 mb-1">Width (cm)</label>
<input type="number" id="packageWidth" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="20">
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 mb-4">
<div>
<label for="packageHeight" class="block text-sm font-medium text-gray-700 mb-1">Height (cm)</label>
<
</html> |