File size: 43,306 Bytes
343c55e |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Express Text - AI-Powered SMS Marketing Platform</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
body {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.hero-gradient {
background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 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);
}
.sms-bubble {
animation: float 6s ease-in-out infinite;
}
.sms-bubble:nth-child(2) {
animation-delay: 1s;
}
.sms-bubble:nth-child(3) {
animation-delay: 2s;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.stat-number {
transition: all 0.5s ease-out;
}
</style>
</head>
<body class="bg-white text-gray-800">
<!-- Navigation -->
<nav class="bg-white border-b border-gray-200 fixed w-full z-10">
<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">
<span class="text-2xl font-bold gradient-text">Express Text</span>
</div>
<div class="hidden sm:ml-6 sm:flex sm:space-x-8">
<a href="#features" class="border-blue-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Features</a>
<a href="#solutions" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Solutions</a>
<a href="#pricing" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Pricing</a>
<a href="#resources" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Resources</a>
</div>
</div>
<div class="hidden sm:ml-6 sm:flex sm:items-center">
<a href="#" class="px-4 py-2 rounded-md text-sm font-medium text-blue-600 hover:text-blue-700">Log In</a>
<a href="#" class="ml-4 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">Start Free Trial</a>
</div>
<div class="-mr-2 flex items-center sm:hidden">
<button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden sm:hidden bg-white border-t border-gray-200">
<div class="pt-2 pb-3 space-y-1">
<a href="#features" class="bg-blue-50 border-blue-500 text-blue-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Features</a>
<a href="#solutions" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Solutions</a>
<a href="#pricing" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Pricing</a>
<a href="#resources" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Resources</a>
<div class="mt-4 pt-4 border-t border-gray-200">
<a href="#" class="block px-4 py-2 text-base font-medium text-blue-600 hover:text-blue-700">Log In</a>
<a href="#" class="mt-2 block w-full px-4 py-2 border border-transparent text-center text-base font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">Start Free Trial</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient pt-24 pb-16 sm:pt-32 sm:pb-24">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-12 lg:gap-8">
<div class="sm:text-center md:max-w-2xl md:mx-auto lg:col-span-6 lg:text-left">
<h1 class="text-4xl tracking-tight font-extrabold text-gray-900 sm:text-5xl md:text-6xl">
<span class="block">Your All-in-One</span>
<span class="block gradient-text">Text Messaging Platform</span>
</h1>
<p class="mt-3 text-base text-gray-500 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
Convert more leads. Retain more customers. Automate your communication with AI-powered SMS campaigns that feel personal — because they are.
</p>
<div class="mt-8 sm:max-w-lg sm:mx-auto sm:text-center lg:text-left lg:mx-0">
<div class="flex flex-col sm:flex-row sm:space-x-4 space-y-3 sm:space-y-0">
<a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700 md:py-4 md:text-lg md:px-10">
Start Free Trial
</a>
<a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-blue-700 bg-blue-100 hover:bg-blue-200 md:py-4 md:text-lg md:px-10">
Book a Demo
</a>
</div>
<p class="mt-3 text-sm text-gray-500">
No credit card required. 14-day free trial.
</p>
</div>
</div>
<div class="mt-12 relative sm:max-w-lg sm:mx-auto lg:mt-0 lg:max-w-none lg:mx-0 lg:col-span-6 lg:flex lg:items-center">
<div class="relative mx-auto w-full rounded-lg shadow-lg lg:max-w-md">
<div class="relative block w-full bg-white rounded-lg overflow-hidden">
<img class="w-full" src="https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Dashboard screenshot">
<div class="absolute top-1/4 left-1/4 transform -translate-x-1/4 -translate-y-1/4 w-64 bg-white p-3 rounded-xl shadow-xl">
<div class="flex flex-col space-y-2">
<div class="sms-bubble bg-blue-100 rounded-lg p-3 text-sm">
Hi Sarah! Your 20% discount code is READY20. Shop now before it expires!
</div>
<div class="sms-bubble bg-blue-100 rounded-lg p-3 text-sm">
Your appointment is confirmed for tomorrow at 2PM. Reply CANCEL to reschedule.
</div>
<div class="sms-bubble bg-blue-100 rounded-lg p-3 text-sm">
Your order #1234 has shipped! Track it here: [link]
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Why Express Text Section -->
<section class="py-12 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Why Express Text?</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Your customers are on their phones. Meet them there.
</p>
</div>
<div class="mt-10">
<div class="grid grid-cols-1 gap-10 sm:grid-cols-2 lg:grid-cols-3">
<div class="bg-white rounded-xl shadow-md overflow-hidden p-6 transition-all duration-300 hover:shadow-lg">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
<i class="fas fa-envelope-open-text text-xl"></i>
</div>
<div class="mt-4">
<h3 class="text-lg font-medium text-gray-900">Your Customers Don't Check Emails</h3>
<p class="mt-2 text-base text-gray-500">
91% of consumers read a text within 3 minutes. Emails? Maybe... next week.
</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden p-6 transition-all duration-300 hover:shadow-lg">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-500 text-white">
<i class="fas fa-redo text-xl"></i>
</div>
<div class="mt-4">
<h3 class="text-lg font-medium text-gray-900">You're Losing Repeat Business</h3>
<p class="mt-2 text-base text-gray-500">
Most customers don't return simply because they forgot about you. SMS brings them back.
</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden p-6 transition-all duration-300 hover:shadow-lg">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-green-500 text-white">
<i class="fas fa-robot text-xl"></i>
</div>
<div class="mt-4">
<h3 class="text-lg font-medium text-gray-900">Your Tools Don't Talk to Customers</h3>
<p class="mt-2 text-base text-gray-500">
Most platforms help you talk. Our AI-powered SMS helps your customers respond.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Use Cases Section -->
<section id="solutions" class="py-12 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Solutions</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Made for SMBs Who Care About ROI
</p>
</div>
<div class="mt-10">
<div class="grid grid-cols-1 gap-6 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-5">
<!-- E-commerce -->
<div class="feature-card bg-white rounded-lg overflow-hidden shadow-md transition-all duration-300 hover:shadow-xl">
<div class="p-6">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600 mb-4">
<i class="fas fa-shopping-cart text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">E-commerce & Shopify</h3>
<p class="text-gray-500 text-sm">
Bring back abandoned carts, promote flash sales, and increase repeat purchases.
</p>
<a href="#" class="mt-4 inline-flex items-center text-blue-600 text-sm font-medium">
See Example <i class="fas fa-arrow-right ml-1"></i>
</a>
</div>
</div>
<!-- Restaurants -->
<div class="feature-card bg-white rounded-lg overflow-hidden shadow-md transition-all duration-300 hover:shadow-xl">
<div class="p-6">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-red-100 text-red-600 mb-4">
<i class="fas fa-utensils text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Restaurants</h3>
<p class="text-gray-500 text-sm">
Confirm reservations, send offers, and get more repeat customers.
</p>
<a href="#" class="mt-4 inline-flex items-center text-blue-600 text-sm font-medium">
See Example <i class="fas fa-arrow-right ml-1"></i>
</a>
</div>
</div>
<!-- Salons & Spas -->
<div class="feature-card bg-white rounded-lg overflow-hidden shadow-md transition-all duration-300 hover:shadow-xl">
<div class="p-6">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4">
<i class="fas fa-spa text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Salons & Spas</h3>
<p class="text-gray-500 text-sm">
Appointment reminders, no-show prevention, and special offers.
</p>
<a href="#" class="mt-4 inline-flex items-center text-blue-600 text-sm font-medium">
See Example <i class="fas fa-arrow-right ml-1"></i>
</a>
</div>
</div>
<!-- Gyms & Coaches -->
<div class="feature-card bg-white rounded-lg overflow-hidden shadow-md transition-all duration-300 hover:shadow-xl">
<div class="p-6">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-green-100 text-green-600 mb-4">
<i class="fas fa-dumbbell text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Gyms & Coaches</h3>
<p class="text-gray-500 text-sm">
Reactivate cold leads, boost referrals, and increase class attendance.
</p>
<a href="#" class="mt-4 inline-flex items-center text-blue-600 text-sm font-medium">
See Example <i class="fas fa-arrow-right ml-1"></i>
</a>
</div>
</div>
<!-- Auto Dealers -->
<div class="feature-card bg-white rounded-lg overflow-hidden shadow-md transition-all duration-300 hover:shadow-xl">
<div class="p-6">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-yellow-100 text-yellow-600 mb-4">
<i class="fas fa-car text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900 mb-2">Auto Dealers</h3>
<p class="text-gray-500 text-sm">
Schedule test drives, follow-ups, and service reminders.
</p>
<a href="#" class="mt-4 inline-flex items-center text-blue-600 text-sm font-medium">
See Example <i class="fas fa-arrow-right ml-1"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- AI Assistant Section -->
<section class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-12 lg:gap-8">
<div class="lg:col-span-6">
<img class="w-full rounded-lg shadow-xl" src="https://images.unsplash.com/photo-1571171637578-41bc2dd41cd2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="AI assistant interface">
</div>
<div class="mt-12 lg:mt-0 lg:col-span-6 lg:flex lg:flex-col lg:justify-center">
<div>
<h2 class="text-3xl font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Meet <span class="gradient-text">Violet</span>: Your AI Text Assistant
</h2>
<p class="mt-3 text-lg text-gray-500">
Violet writes, schedules, and sends the perfect message — at the perfect time. Stop guessing. Start connecting.
</p>
<div class="mt-8">
<div class="inline-flex rounded-md shadow">
<a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700">
Try AI Messaging
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Results Section -->
<section class="py-16 bg-gray-900 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-blue-400 font-semibold tracking-wide uppercase">Results</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl">
Proven to Increase Revenue
</p>
</div>
<div class="mt-10 grid grid-cols-1 gap-10 sm:grid-cols-2 lg:grid-cols-4">
<div class="text-center">
<div class="flex items-center justify-center h-20 w-20 rounded-full bg-blue-600 text-white mx-auto">
<i class="fas fa-envelope-open-text text-2xl"></i>
</div>
<div class="mt-4">
<h3 class="text-4xl font-extrabold text-white stat-number" data-target="98">0</h3>
<p class="mt-2 text-base text-gray-300">Open Rates</p>
</div>
</div>
<div class="text-center">
<div class="flex items-center justify-center h-20 w-20 rounded-full bg-purple-600 text-white mx-auto">
<i class="fas fa-mouse-pointer text-2xl"></i>
</div>
<div class="mt-4">
<h3 class="text-4xl font-extrabold text-white stat-number" data-target="40">0</h3>
<p class="mt-2 text-base text-gray-300">Click-Through Rates</p>
</div>
</div>
<div class="text-center">
<div class="flex items-center justify-center h-20 w-20 rounded-full bg-green-600 text-white mx-auto">
<i class="fas fa-users text-2xl"></i>
</div>
<div class="mt-4">
<h3 class="text-4xl font-extrabold text-white stat-number" data-target="3">0</h3>
<p class="mt-2 text-base text-gray-300">More Repeat Customers</p>
</div>
</div>
<div class="text-center">
<div class="flex items-center justify-center h-20 w-20 rounded-full bg-yellow-600 text-white mx-auto">
<i class="fas fa-dollar-sign text-2xl"></i>
</div>
<div class="mt-4">
<h3 class="text-4xl font-extrabold text-white stat-number" data-target="15">0</h3>
<p class="mt-2 text-base text-gray-300">Avg. Monthly Revenue Increase</p>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Features</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Everything You Need. Nothing You Don't.
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
Powerful tools designed to help you connect with customers and grow your business.
</p>
</div>
<div class="mt-10">
<div class="grid grid-cols-1 gap-10 sm:grid-cols-2 lg:grid-cols-3">
<div class="feature-card bg-white rounded-lg overflow-hidden shadow-md p-6 transition-all duration-300 hover:shadow-lg">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600 mb-4">
<i class="fas fa-project-diagram text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900">Smart Campaign Builder</h3>
<p class="mt-2 text-base text-gray-500">
Create targeted SMS campaigns in minutes with our intuitive drag-and-drop builder.
</p>
</div>
<div class="feature-card bg-white rounded-lg overflow-hidden shadow-md p-6 transition-all duration-300 hover:shadow-lg">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4">
<i class="fas fa-tags text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900">Segment by Behavior + Tags</h3>
<p class="mt-2 text-base text-gray-500">
Send the right message to the right people at the right time with advanced segmentation.
</p>
</div>
<div class="feature-card bg-white rounded-lg overflow-hidden shadow-md p-6 transition-all duration-300 hover:shadow-lg">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-green-100 text-green-600 mb-4">
<i class="fas fa-comments text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900">Two-Way Texting Inbox</h3>
<p class="mt-2 text-base text-gray-500">
Have real conversations with customers right from your dashboard.
</p>
</div>
<div class="feature-card bg-white rounded-lg overflow-hidden shadow-md p-6 transition-all duration-300 hover:shadow-lg">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-red-100 text-red-600 mb-4">
<i class="fab fa-shopify text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900">Shopify Integration</h3>
<p class="mt-2 text-base text-gray-500">
Connect directly with your Shopify store to automate abandoned cart messages and more.
</p>
</div>
<div class="feature-card bg-white rounded-lg overflow-hidden shadow-md p-6 transition-all duration-300 hover:shadow-lg">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-yellow-100 text-yellow-600 mb-4">
<i class="fas fa-clock text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900">Scheduled Messages</h3>
<p class="mt-2 text-base text-gray-500">
Plan your messages in advance and send them at the optimal time for maximum impact.
</p>
</div>
<div class="feature-card bg-white rounded-lg overflow-hidden shadow-md p-6 transition-all duration-300 hover:shadow-lg">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-100 text-indigo-600 mb-4">
<i class="fas fa-star text-xl"></i>
</div>
<h3 class="text-lg font-medium text-gray-900">Review & Feedback Texts</h3>
<p class="mt-2 text-base text-gray-500">
Automatically request reviews and feedback after purchases or appointments.
</p>
</div>
</div>
<div class="mt-10 text-center">
<a href="#" class="text-blue-600 font-medium hover:text-blue-700">
See all features <i class="fas fa-arrow-right ml-1"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Testimonials</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Loved by 1,200+ SMBs
</p>
</div>
<div class="mt-10">
<div class="grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3">
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/44.jpg" alt="Vanessa M.">
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Vanessa M.</h3>
<p class="text-gray-500">Online Boutique Owner</p>
</div>
</div>
<div class="mt-4">
<p class="text-gray-600 italic">
"Express Text helped us recover $12,000 in missed revenue from customers we hadn't heard from in months."
</p>
<div class="mt-4 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>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/men/32.jpg" alt="James L.">
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">James L.</h3>
<p class="text-gray-500">Restaurant Owner</p>
</div>
</div>
<div class="mt-4">
<p class="text-gray-600 italic">
"Our no-show rate dropped by 75% after implementing Express Text's appointment reminders."
</p>
<div class="mt-4 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>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Sarah K.">
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Sarah K.</h3>
<p class="text-gray-500">Fitness Studio Owner</p>
</div>
</div>
<div class="mt-4">
<p class="text-gray-600 italic">
"We've increased our class attendance by 40% using Express Text's automated reminders and promotions."
</p>
<div class="mt-4 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>
</div>
</div>
</div>
</div>
</section>
<!-- Integrations Section -->
<section class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Integrations</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Plays Well With Others
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
Connect Express Text with your favorite tools to automate your workflow.
</p>
</div>
<div class="mt-10">
<div class="grid grid-cols-2 gap-8 md:grid-cols-4 lg:grid-cols-6">
<div class="col-span-1 flex justify-center items-center">
<img class="h-12" src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Shopify_Logo.png/800px-Shopify_Logo.png" alt="Shopify">
</div>
<div class="col-span-1 flex justify-center items-center">
<img class="h-12" src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Zapier_logo.png/800px-Zapier_logo.png" alt="Zapier">
</div>
<div class="col-span-1 flex justify-center items-center">
<img class="h-12" src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Calendly-Logo.png/800px-Calendly-Logo.png" alt="Calendly">
</div>
<div class="col-span-1 flex justify-center items-center">
<img class="h-12" src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/ba/Stripe_Logo%2C_revised_2016.svg/800px-Stripe_Logo%2C_revised_2016.svg.png" alt="Stripe">
</div>
<div class="col-span-1 flex justify-center items-center">
<img class="h-12" src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/WooCommerce_logo.svg/800px-WooCommerce_logo.svg.png" alt="WooCommerce">
</div>
<div class="col-span-1 flex justify-center items-center">
<img class="h-12" src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/39/Squarespace-Logo.png/800px-Squarespace-Logo.png" alt="Squarespace">
</div>
</div>
</div>
</div>
</section>
<!-- Final CTA Section -->
<section class="relative bg-blue-700">
<div class="absolute inset-0">
<img class="w-full h-full object-cover opacity-20" src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="">
<div class="absolute inset-0 bg-blue-700 mix-blend-multiply"></div>
</div>
<div class="relative max-w-7xl mx-auto py-24 px-4 sm:py-32 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl">
Ready to Turn Texts into Revenue?
</h2>
<p class="mt-6 max-w-3xl mx-auto text-xl text-blue-100">
Join hundreds of small businesses using Express Text to grow faster, smarter, and easier.
</p>
<div class="mt-10 flex flex-col sm:flex-row justify-center gap-4">
<a href="#" class="flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-blue-700 bg-white hover:bg-gray-50 md:py-4 md:text-lg md:px-10">
Start Free Trial
</a>
<a href="#" class="flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-600 bg-opacity-60 hover:bg-opacity-70 md:py-4 md:text-lg md:px-10">
Book a Demo
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-50">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-5 gap-8">
<div class="col-span-2">
<span class="text-2xl font-bold gradient-text">Express Text</span>
<p class="mt-4 text-sm text-gray-500">
The all-in-one SMS marketing platform designed to help small businesses grow through better customer communication.
</p>
<div class="mt-4 flex space-x-6">
<a href="#" class="text-gray-400 hover:text-gray-500">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-gray-500">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-gray-500">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-gray-500">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Product</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Features</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Pricing</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Integrations</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Updates</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Resources</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Blog</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Guides</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Help Center</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">API Docs</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Company</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">About</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Careers</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Contact</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Legal</a></li>
</ul>
</div>
</div>
<div class="mt-12 border-t border-gray-200 pt-8">
<p class="text-base text-gray-400 text-center">
© 2025 Express Text. All rights reserved.
</p>
</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');
});
// Animate stats
function animateStats() {
const statElements = document.querySelectorAll('.stat-number');
statElements.forEach(element => {
const target = parseInt(element.getAttribute('data-target'));
const suffix = element.textContent.includes('$') ? 'k' : 'X';
const duration = 2000; // 2 seconds
const step = target / (duration / 16); // 60fps
let current = 0;
const timer = setInterval(() => {
current += step;
if (current >= target) {
clearInterval(timer);
current = target;
}
element.textContent = suffix === 'k' ?
`$${Math.floor(current)}${suffix}` :
`${Math.floor(current)}${suffix}`;
}, 16);
});
}
// Intersection Observer for stats animation
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
animateStats();
observer.unobserve(entry.target);
}
});
}, { threshold: 0.5 });
const statsSection = document.querySelector('.bg-gray-900');
if (statsSection) {
observer.observe(statsSection);
}
// 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'
});
}
});
});
</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=expressai/express-text-home-page" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |