Spaces:
Running
Running
File size: 46,405 Bytes
7a1fa89 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DispatchLink | Connecting Small Carriers & Independent Dispatchers</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>
.hero-gradient {
background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: scale(1.03);
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #3b82f6;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
.pricing-card:hover {
transform: scale(1.02);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.stats-item {
transition: all 0.3s ease;
}
.stats-item:hover {
transform: scale(1.05);
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-md sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-truck-moving text-blue-600 text-2xl mr-2"></i>
<span class="text-xl font-bold text-blue-600">DispatchLink</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#features" class="nav-link text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">Features</a>
<a href="#how-it-works" class="nav-link text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">How It Works</a>
<a href="#pricing" class="nav-link text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">Pricing</a>
<a href="#testimonials" class="nav-link text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">Testimonials</a>
<a href="#contact" class="nav-link text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">Contact</a>
</div>
<div class="flex items-center">
<a href="#" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300">Get Started</a>
</div>
<div class="-mr-2 flex items-center md:hidden">
<button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-700 hover:text-blue-600 hover:bg-gray-100 focus:outline-none">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white shadow-lg">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#features" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Features</a>
<a href="#how-it-works" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">How It Works</a>
<a href="#pricing" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Pricing</a>
<a href="#testimonials" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Testimonials</a>
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-32">
<div class="md:flex md:items-center md:justify-between">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">The Bridge Between Small Carriers & Independent Dispatchers</h1>
<p class="text-xl mb-8 opacity-90">Streamline your operations, maximize profits, and build lasting partnerships in the trucking industry.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#" class="bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-md text-lg font-semibold text-center transition duration-300">Find a Dispatcher</a>
<a href="#" class="bg-transparent border-2 border-white hover:bg-white hover:text-blue-600 px-6 py-3 rounded-md text-lg font-semibold text-center transition duration-300">Find Carriers</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://images.unsplash.com/photo-1602722053029-5a6a74a0e9a0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Truck on highway" class="rounded-lg shadow-2xl max-w-md w-full h-auto">
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="bg-gray-50 py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 text-center">
<div class="stats-item bg-white p-6 rounded-lg shadow-md">
<div class="text-blue-600 text-4xl font-bold mb-2">1,250+</div>
<div class="text-gray-600">Active Carriers</div>
</div>
<div class="stats-item bg-white p-6 rounded-lg shadow-md">
<div class="text-blue-600 text-4xl font-bold mb-2">850+</div>
<div class="text-gray-600">Qualified Dispatchers</div>
</div>
<div class="stats-item bg-white p-6 rounded-lg shadow-md">
<div class="text-blue-600 text-4xl font-bold mb-2">$12M+</div>
<div class="text-gray-600">Saved in Operational Costs</div>
</div>
<div class="stats-item bg-white p-6 rounded-lg shadow-md">
<div class="text-blue-600 text-4xl font-bold mb-2">98%</div>
<div class="text-gray-600">Satisfaction Rate</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Powerful Features for Your Business</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Designed specifically for small carriers and independent dispatchers to optimize operations and maximize profits.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card bg-gray-50 p-8 rounded-lg transition duration-300">
<div class="w-14 h-14 bg-blue-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-search-dollar text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Load Matching</h3>
<p class="text-gray-600">Our advanced algorithm matches carriers with dispatchers based on location, equipment type, and business needs.</p>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-gray-50 p-8 rounded-lg transition duration-300">
<div class="w-14 h-14 bg-blue-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-chart-line text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Performance Analytics</h3>
<p class="text-gray-600">Track key metrics for both carriers and dispatchers to ensure optimal performance and profitability.</p>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-gray-50 p-8 rounded-lg transition duration-300">
<div class="w-14 h-14 bg-blue-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-file-invoice-dollar text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Automated Billing</h3>
<p class="text-gray-600">Streamlined invoicing and payment processing to reduce administrative overhead and improve cash flow.</p>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-gray-50 p-8 rounded-lg transition duration-300">
<div class="w-14 h-14 bg-blue-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-comments text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Real-time Communication</h3>
<p class="text-gray-600">Built-in messaging system with document sharing to keep all communication in one secure place.</p>
</div>
<!-- Feature 5 -->
<div class="feature-card bg-gray-50 p-8 rounded-lg transition duration-300">
<div class="w-14 h-14 bg-blue-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-shield-alt text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Verified Partners</h3>
<p class="text-gray-600">All carriers and dispatchers undergo verification to ensure reliability and professionalism.</p>
</div>
<!-- Feature 6 -->
<div class="feature-card bg-gray-50 p-8 rounded-lg transition duration-300">
<div class="w-14 h-14 bg-blue-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-mobile-alt text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Mobile App</h3>
<p class="text-gray-600">Manage your business on the go with our iOS and Android apps designed for trucking professionals.</p>
</div>
</div>
</div>
</section>
<!-- How It Works Section -->
<section id="how-it-works" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">How DispatchLink Works</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Simple steps to connect with the right partners and grow your business.</p>
</div>
<div class="flex flex-col md:flex-row items-center justify-between mb-12">
<div class="md:w-1/2 mb-8 md:mb-0">
<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="Create profile" class="rounded-lg shadow-lg w-full max-w-md">
</div>
<div class="md:w-1/2 md:pl-12">
<div class="flex items-start mb-6">
<div class="bg-blue-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-4 flex-shrink-0">1</div>
<div>
<h3 class="text-xl font-semibold mb-2">Create Your Profile</h3>
<p class="text-gray-600">Set up your detailed profile as either a carrier or dispatcher. Include your experience, equipment, specialties, and business requirements.</p>
</div>
</div>
<div class="flex items-start mb-6">
<div class="bg-blue-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-4 flex-shrink-0">2</div>
<div>
<h3 class="text-xl font-semibold mb-2">Get Verified</h3>
<p class="text-gray-600">Our team reviews your application to ensure you meet our standards for professionalism and reliability.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-4 flex-shrink-0">3</div>
<div>
<h3 class="text-xl font-semibold mb-2">Start Connecting</h3>
<p class="text-gray-600">Browse potential matches, receive recommendations, and start building profitable partnerships.</p>
</div>
</div>
</div>
</div>
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="md:w-1/2 mb-8 md:mb-0 order-2 md:order-1">
<img src="https://images.unsplash.com/photo-1521791055366-0d553872125f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80" alt="Manage business" class="rounded-lg shadow-lg w-full max-w-md">
</div>
<div class="md:w-1/2 md:pr-12 order-1 md:order-2">
<div class="flex items-start mb-6">
<div class="bg-blue-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-4 flex-shrink-0">4</div>
<div>
<h3 class="text-xl font-semibold mb-2">Manage Your Business</h3>
<p class="text-gray-600">Use our tools to track loads, communicate with partners, manage documents, and analyze performance.</p>
</div>
</div>
<div class="flex items-start mb-6">
<div class="bg-blue-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-4 flex-shrink-0">5</div>
<div>
<h3 class="text-xl font-semibold mb-2">Get Paid</h3>
<p class="text-gray-600">Our secure payment system ensures timely payments with automated invoicing and transparent fee structures.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-600 text-white rounded-full w-10 h-10 flex items-center justify-center mr-4 flex-shrink-0">6</div>
<div>
<h3 class="text-xl font-semibold mb-2">Grow Together</h3>
<p class="text-gray-600">Build long-term partnerships that help both carriers and dispatchers scale their businesses profitably.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">What Our Users Say</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Hear from carriers and dispatchers who've transformed their businesses with DispatchLink.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card bg-gray-50 p-8 rounded-lg">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center mr-4">
<i class="fas fa-user text-blue-600"></i>
</div>
<div>
<h4 class="font-semibold">Mike Johnson</h4>
<p class="text-sm text-gray-600">Owner, MJ Trucking (5 trucks)</p>
</div>
</div>
<div class="text-gray-700 mb-4">
<i class="fas fa-quote-left text-blue-200 mr-2"></i>
DispatchLink connected me with an amazing dispatcher who understands my business. My revenue has increased by 35% in just 4 months while reducing my administrative work.
</div>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card bg-gray-50 p-8 rounded-lg">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center mr-4">
<i class="fas fa-user text-blue-600"></i>
</div>
<div>
<h4 class="font-semibold">Sarah Williams</h4>
<p class="text-sm text-gray-600">Independent Dispatcher</p>
</div>
</div>
<div class="text-gray-700 mb-4">
<i class="fas fa-quote-left text-blue-200 mr-2"></i>
As an independent dispatcher, finding reliable carriers was always challenging. DispatchLink's verification system and matching tools have helped me build a solid client base.
</div>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card bg-gray-50 p-8 rounded-lg">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center mr-4">
<i class="fas fa-user text-blue-600"></i>
</div>
<div>
<h4 class="font-semibold">Carlos Rodriguez</h4>
<p class="text-sm text-gray-600">Owner, CR Logistics (8 trucks)</p>
</div>
</div>
<div class="text-gray-700 mb-4">
<i class="fas fa-quote-left text-blue-200 mr-2"></i>
The automated billing and document management alone are worth the subscription. But the quality of dispatchers I've found through DispatchLink has been exceptional.
</div>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Simple, Transparent Pricing</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Choose the plan that fits your business needs. No hidden fees.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Basic Plan -->
<div class="pricing-card bg-white p-8 rounded-lg shadow-md border border-gray-200 transition duration-300">
<div class="text-center mb-6">
<h3 class="text-xl font-semibold mb-2">Starter</h3>
<p class="text-gray-600 mb-4">Ideal for new carriers or dispatchers</p>
<div class="text-4xl font-bold text-blue-600 mb-2">$49<span class="text-lg text-gray-500">/month</span></div>
<p class="text-sm text-gray-500">or $499/year (save 15%)</p>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Up to 3 active partnerships</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Basic load matching</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Email support</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-times text-red-400 mr-2"></i>
<span>No performance analytics</span>
</li>
<li class="flex items-center text-gray-400">
<i class="fas fa-times text-red-400 mr-2"></i>
<span>No mobile app access</span>
</li>
</ul>
<a href="#" class="block text-center bg-gray-100 hover:bg-gray-200 text-gray-800 font-medium py-3 px-4 rounded-md transition duration-300">Get Started</a>
</div>
<!-- Professional Plan (Featured) -->
<div class="pricing-card bg-blue-600 text-white p-8 rounded-lg shadow-xl transform scale-105 relative transition duration-300">
<div class="absolute top-0 right-0 bg-yellow-400 text-blue-800 text-xs font-bold px-3 py-1 rounded-bl-lg rounded-tr-lg">MOST POPULAR</div>
<div class="text-center mb-6">
<h3 class="text-xl font-semibold mb-2">Professional</h3>
<p class="text-blue-100 mb-4">Perfect for growing businesses</p>
<div class="text-4xl font-bold text-white mb-2">$99<span class="text-lg text-blue-200">/month</span></div>
<p class="text-sm text-blue-200">or $999/year (save 15%)</p>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-yellow-300 mr-2"></i>
<span>Up to 10 active partnerships</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-yellow-300 mr-2"></i>
<span>Advanced load matching</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-yellow-300 mr-2"></i>
<span>Priority support</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-yellow-300 mr-2"></i>
<span>Basic performance analytics</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-yellow-300 mr-2"></i>
<span>Mobile app access</span>
</li>
</ul>
<a href="#" class="block text-center bg-white hover:bg-gray-100 text-blue-600 font-medium py-3 px-4 rounded-md transition duration-300">Get Started</a>
</div>
<!-- Enterprise Plan -->
<div class="pricing-card bg-white p-8 rounded-lg shadow-md border border-gray-200 transition duration-300">
<div class="text-center mb-6">
<h3 class="text-xl font-semibold mb-2">Enterprise</h3>
<p class="text-gray-600 mb-4">For established businesses</p>
<div class="text-4xl font-bold text-blue-600 mb-2">$199<span class="text-lg text-gray-500">/month</span></div>
<p class="text-sm text-gray-500">or $1,999/year (save 15%)</p>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Unlimited partnerships</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Premium load matching</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>24/7 dedicated support</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Advanced analytics & reporting</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Custom integrations available</span>
</li>
</ul>
<a href="#" class="block text-center bg-gray-100 hover:bg-gray-200 text-gray-800 font-medium py-3 px-4 rounded-md transition duration-300">Get Started</a>
</div>
</div>
<div class="mt-12 text-center">
<p class="text-gray-600 mb-4">Need something different? We offer custom solutions for large fleets and dispatch teams.</p>
<a href="#contact" class="text-blue-600 hover:text-blue-800 font-medium">Contact our sales team <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-blue-600 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Transform Your Business?</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto opacity-90">Join hundreds of carriers and dispatchers who are already benefiting from DispatchLink's powerful platform.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6">
<a href="#" class="bg-white hover:bg-gray-100 text-blue-600 px-8 py-4 rounded-md text-lg font-semibold transition duration-300">Sign Up Now</a>
<a href="#" class="bg-transparent border-2 border-white hover:bg-white hover:text-blue-600 px-8 py-4 rounded-md text-lg font-semibold transition duration-300">Schedule a Demo</a>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Frequently Asked Questions</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Get answers to common questions about DispatchLink.</p>
</div>
<div class="max-w-3xl mx-auto">
<!-- FAQ Item 1 -->
<div class="mb-6 border-b border-gray-200 pb-6">
<button class="faq-question flex justify-between items-center w-full text-left focus:outline-none">
<h3 class="text-xl font-semibold text-gray-800">How does DispatchLink verify carriers and dispatchers?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform duration-300"></i>
</button>
<div class="faq-answer mt-4 text-gray-600 hidden">
<p>We conduct thorough background checks including verification of operating authority (MC number), insurance, safety records, and business references. For dispatchers, we verify experience, client references, and industry knowledge through interviews and testing.</p>
</div>
</div>
<!-- FAQ Item 2 -->
<div class="mb-6 border-b border-gray-200 pb-6">
<button class="faq-question flex justify-between items-center w-full text-left focus:outline-none">
<h3 class="text-xl font-semibold text-gray-800">What payment methods are supported?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform duration-300"></i>
</button>
<div class="faq-answer mt-4 text-gray-600 hidden">
<p>DispatchLink supports all major credit cards (Visa, MasterCard, American Express, Discover), ACH bank transfers, and for qualified businesses, we offer net terms with approved credit. All payments are processed through our secure, PCI-compliant system.</p>
</div>
</div>
<!-- FAQ Item 3 -->
<div class="mb-6 border-b border-gray-200 pb-6">
<button class="faq-question flex justify-between items-center w-full text-left focus:outline-none">
<h3 class="text-xl font-semibold text-gray-800">Can I switch between plans?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform duration-300"></i>
</button>
<div class="faq-answer mt-4 text-gray-600 hidden">
<p>Yes, you can upgrade or downgrade your plan at any time. If you're on a monthly plan, changes take effect at your next billing cycle. Annual plan subscribers receive prorated credits when upgrading.</p>
</div>
</div>
<!-- FAQ Item 4 -->
<div class="mb-6 border-b border-gray-200 pb-6">
<button class="faq-question flex justify-between items-center w-full text-left focus:outline-none">
<h3 class="text-xl font-semibold text-gray-800">How does DispatchLink handle disputes?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform duration-300"></i>
</button>
<div class="faq-answer mt-4 text-gray-600 hidden">
<p>We have a dedicated mediation team to help resolve disputes between carriers and dispatchers. All communications and transactions are logged in our system for reference. In rare cases where resolution isn't possible, we can help transition to new partnerships.</p>
</div>
</div>
<!-- FAQ Item 5 -->
<div class="mb-6">
<button class="faq-question flex justify-between items-center w-full text-left focus:outline-none">
<h3 class="text-xl font-semibold text-gray-800">Is there a contract or can I cancel anytime?</h3>
<i class="fas fa-chevron-down text-blue-600 transition-transform duration-300"></i>
</button>
<div class="faq-answer mt-4 text-gray-600 hidden">
<p>DispatchLink operates on a month-to-month basis with no long-term contracts required. You can cancel anytime, though we do offer discounts for annual commitments. If you cancel, you'll have access until the end of your current billing period.</p>
</div>
</div>
</div>
<div class="mt-12 text-center">
<p class="text-gray-600 mb-4">Still have questions? We're here to help.</p>
<a href="#contact" class="text-blue-600 hover:text-blue-800 font-medium">Contact our support team <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex md:items-center md:justify-between">
<div class="md:w-1/2 mb-10 md:mb-0">
<h2 class="text-3xl font-bold text-gray-900 mb-6">Get In Touch</h2>
<p class="text-xl text-gray-600 mb-8">Whether you have questions about our platform or want to discuss custom solutions, our team is ready to assist you.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-blue-600"></i>
</div>
<div>
<h4 class="font-semibold text-gray-800">Email Us</h4>
<a href="mailto:hello@dispatchlink.com" class="text-blue-600 hover:text-blue-800">hello@dispatchlink.com</a>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-phone-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-semibold text-gray-800">Call Us</h4>
<a href="tel:+18005551234" class="text-blue-600 hover:text-blue-800">1-800-555-1234</a>
<p class="text-sm text-gray-500">Mon-Fri, 8am-6pm EST</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-semibold text-gray-800">Visit Us</h4>
<p class="text-gray-600">1234 Logistics Way<br>Atlanta, GA 30328</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 md:pl-12">
<div class="bg-white p-8 rounded-lg shadow-md">
<h3 class="text-xl font-semibold mb-6">Send Us a Message</h3>
<form id="contactForm">
<div class="mb-4">
<label for="name" class="block text-gray-700 mb-2">Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-4">
<label for="email" class="block text-gray-700 mb-2">Email</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-4">
<label for="subject" class="block text-gray-700 mb-2">Subject</label>
<select id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500">
<option value="">Select a subject</option>
<option value="sales">Sales Inquiry</option>
<option value="support">Support</option>
<option value="partnership">Partnership Opportunity</option>
<option value="other">Other</option>
</select>
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 mb-2">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white py-3 px-4 rounded-md font-medium transition duration-300">Send Message</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
<div>
<div class="flex items-center mb-4">
<i class="fas fa-truck-moving text-blue-400 text-2xl mr-2"></i>
<span class="text-xl font-bold text-white">DispatchLink</span>
</div>
<p class="text-gray-400 mb-4">Connecting small carriers with independent dispatchers to build profitable, long-term partnerships.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Press</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Help Center</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Trucking Guides</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Dispatch Training</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Industry Reports</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Legal</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Cookie Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">GDPR</a></li>
</ul>
</div>
</div>
<div class="pt-8 border-t border-gray-800">
<div class="md:flex md:items-center md:justify-between">
<p class="text-gray-400 text-sm">© 2023 DispatchLink. All rights reserved.</p>
<div class="mt-4 md:mt-0">
<p class="text-gray-400 text-sm">Proudly serving the trucking industry since 2018.</p>
</div>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// FAQ accordion
const faqQuestions = document.querySelectorAll('.faq-question');
faqQuestions.forEach(question => {
question.addEventListener('click', function() {
const answer = this.nextElementSibling;
const icon = this.querySelector('i');
// Toggle answer visibility
answer.classList.toggle('hidden');
// Rotate icon
icon.classList.toggle('transform');
icon.classList.toggle('rotate-180');
});
});
// Form submission
document.getElementById('contactForm').addEventListener('submit', function(e) {
e.preventDefault();
// Get form values
const name = document.getElementById('name').value;
const email = document.getElementById('email').value;
const subject = document.getElementById('subject').value;
const message = document.getElementById('message').value;
// Here you would typically send the data to your server
console.log({name, email, subject, message});
// Show success message
alert('Thank you for your message! We will get back to you soon.');
// Reset form
this.reset();
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=sdurdiyev/dispatchlink-homepage" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |