
Absolutely. Here's a complete reimagined homepage prompt tailored for Express Text to match modern SaaS UI/UX trends. This rewrite is designed from the perspective of a senior SaaS + AI developer with 20 years experience, modeled after industry leaders like Intercom, HubSpot, Cluely AI, Textedly, and SlickText. 🔧 DESIGN PROMPT FOR REPLIT / FRONTEND DEV Project: Express Text Homepage Redesign Industry: SaaS – SMS/Text Message Marketing Tone: Modern, Clean, High-Converting Goal: Position Express Text as the leading communication tool for SMBs using AI + SMS Inspiration: Cluely.ai, Intercom, Textedly, Mailchimp, HubSpot, Notion 🎯 Core Value Proposition (Above the Fold – Hero Section) Headline: “Your All-in-One Text Messaging Platform for Customer Engagement” Subheadline: Convert more leads. Retain more customers. Automate your communication with AI-powered SMS campaigns that feel personal — because they are. CTA Buttons: [Start Free Trial] [Book a Demo] Visual: Laptop/dashboard mockup showcasing SMS campaign dashboard with real metrics (open rate, response, click-through). Optionally animate incoming and outgoing SMS bubbles. 💡 Why Express Text? (Modern Pain Point Section) Split into 3 simple tiles using icons + short punchy copy: 1. Your Customers Don’t Check Emails 91% of consumers read a text within 3 minutes. Emails? Maybe... next week. 2. You're Losing Repeat Business Most customers don’t return simply because they forgot about you. SMS brings them back. 3. Your Tools Don’t Talk to Customers Most platforms help you talk. Our AI-powered SMS helps your customers respond. 💼 Use Cases Section: “Made for SMBs Who Care About ROI” Show 3–5 clickable cards or horizontal scroll tiles: E-commerce & Shopify: Bring back abandoned carts, promote flash sales Restaurants: Confirm reservations, send offers Salons & Spas: Appointment reminders, no-show prevention Gyms & Coaches: Reactivate cold leads, boost referrals Auto Dealers: Schedule test drives, follow-ups Each card includes a short description + "See Example" 🧠 AI-Powered Automation Block Headline: “Meet Violet: Your AI Text Assistant” Subheadline: Violet writes, schedules, and sends the perfect message — at the perfect time. Stop guessing. Start connecting. Visual: Animated example of Violet suggesting an SMS message with customer’s name and timing logic (based on recent behavior) CTA: [Try AI Messaging] 📈 Results Section: “Proven to Increase Revenue” Use bold, trust-building stats with visual infographics: ✅ 98% Open Rates ✅ 40%+ Click-Through Rates ✅ 3X More Repeat Customers ✅ +$15k/month Avg. Revenue from SMS 🛠 Feature Stack Section: “Everything You Need. Nothing You Don’t.” Grid of 6 modern feature blocks: Smart Campaign Builder Segment by Behavior + Tags Two-Way Texting Inbox Shopify Integration Scheduled Messages Review + Feedback Texts Add "See all features" link 💬 Social Proof: “Loved by 1,200+ SMBs” Carousel of customer quotes with real photos and names (if available) Example: “Express Text helped us recover $12,000 in missed revenue from customers we hadn’t heard from in months.” – Vanessa M., Online Boutique Owner 🧩 Integrations Block “Plays Well With Others” Icons + logos: Shopify, Zapier, Calendly, Stripe, WooCommerce, Squarespace 📞 Final CTA Large background image + simple CTA Headline: Ready to Turn Texts into Revenue? Subheadline: Join hundreds of small businesses using Express Text to grow faster, smarter, and easier. Buttons: [Start Free Trial] [Book a Demo] 🦶 Footer (Modern Minimal) Logo + tagline Navigation: Features, Pricing, Blog, Support, Contact Social icons “© 2025 Express Text. All rights reserved.” 🧠 Notes for Developer: Use modern SaaS font like Inter, Satoshi, or Poppins Rounded cards, soft shadows, clean whitespace Micro-interactions: hover states, animated numbers, subtle UI motion Responsive grid (mobile-first design) Add dark mode switcher (optional) - Initial Deployment
343c55e
verified
<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> |