File size: 37,205 Bytes
39f2cd0 36dc363 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CloudPulse | Modern SaaS Platform</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.waves.min.js"></script>
<style>
.hero-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 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);
}
.pricing-card:hover {
transform: scale(1.03);
}
.wave-divider {
height: 150px;
overflow: hidden;
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-sm 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">
<i data-feather="cloud" class="text-indigo-600 h-6 w-6"></i>
<span class="ml-2 text-xl font-bold text-gray-900">CloudPulse</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#features" class="text-gray-500 hover:text-gray-900 px-3 py-2 text-sm font-medium">Features</a>
<a href="#pricing" class="text-gray-500 hover:text-gray-900 px-3 py-2 text-sm font-medium">Pricing</a>
<a href="#testimonials" class="text-gray-500 hover:text-gray-900 px-3 py-2 text-sm font-medium">Testimonials</a>
<a href="#contact" class="text-gray-500 hover:text-gray-900 px-3 py-2 text-sm font-medium">Contact</a>
</div>
<div class="flex items-center">
<a href="#" class="ml-4 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-indigo-600 shadow-sm hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
Get Started
</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div id="hero" class="hero-bg text-white pt-32 pb-20 relative overflow-hidden">
<div id="vanta-waves" class="absolute inset-0 opacity-30"></div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<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 sm:text-5xl md:text-6xl">
<span class="block">Accelerate Your</span>
<span class="block text-indigo-200">SaaS Business</span>
</h1>
<p class="mt-3 text-base text-indigo-100 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
CloudPulse delivers powerful automation, analytics, and scalability to grow your software business exponentially.
</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 gap-4">
<a href="#" class="flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-indigo-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-indigo-500 bg-opacity-60 hover:bg-opacity-70 md:py-4 md:text-lg md:px-10">
Watch Demo <i data-feather="play-circle" class="ml-2 w-5 h-5"></i>
</a>
</div>
</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">
<img class="w-full rounded-lg" src="http://static.photos/technology/1024x576/42" alt="Dashboard preview">
<div class="absolute -bottom-6 -right-6 bg-indigo-800 rounded-lg p-4 shadow-xl">
<i data-feather="bar-chart-2" class="text-white h-8 w-8"></i>
</div>
</div>
</div>
</div>
</div>
<div class="wave-divider">
<svg viewBox="0 0 1200 120" preserveAspectRatio="none" class="w-full h-full">
<path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="#fff"></path>
<path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.47,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="#fff"></path>
<path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="#fff"></path>
</svg>
</div>
</div>
<!-- Features Section -->
<div 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-indigo-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 to succeed
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
Powerful tools designed to help your SaaS business grow at scale
</p>
</div>
<div class="mt-20">
<div class="grid grid-cols-1 gap-12 md:grid-cols-2 lg:grid-cols-3">
<!-- Feature 1 -->
<div class="pt-6 feature-card transition-all duration-300 ease-in-out">
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8 h-full">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-indigo-500 rounded-md shadow-lg">
<i data-feather="zap" class="h-6 w-6 text-white"></i>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight">Automated Scaling</h3>
<p class="mt-5 text-base text-gray-500">
Our intelligent system automatically scales your infrastructure based on real-time demand, saving you time and money.
</p>
</div>
</div>
</div>
<!-- Feature 2 -->
<div class="pt-6 feature-card transition-all duration-300 ease-in-out">
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8 h-full">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-indigo-500 rounded-md shadow-lg">
<i data-feather="bar-chart-2" class="h-6 w-6 text-white"></i>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight">Advanced Analytics</h3>
<p class="mt-5 text-base text-gray-500">
Get deep insights into customer behavior, revenue trends, and product usage with our powerful analytics dashboard.
</p>
</div>
</div>
</div>
<!-- Feature 3 -->
<div class="pt-6 feature-card transition-all duration-300 ease-in-out">
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8 h-full">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-indigo-500 rounded-md shadow-lg">
<i data-feather="lock" class="h-6 w-6 text-white"></i>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight">Enterprise Security</h3>
<p class="mt-5 text-base text-gray-500">
Military-grade encryption, regular audits, and compliance certifications to keep your data safe and secure.
</p>
</div>
</div>
</div>
<!-- Feature 4 -->
<div class="pt-6 feature-card transition-all duration-300 ease-in-out">
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8 h-full">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-indigo-500 rounded-md shadow-lg">
<i data-feather="credit-card" class="h-6 w-6 text-white"></i>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight">Flexible Billing</h3>
<p class="mt-5 text-base text-gray-500">
Multiple payment options, customizable plans, and prorated billing to accommodate any business model.
</p>
</div>
</div>
</div>
<!-- Feature 5 -->
<div class="pt-6 feature-card transition-all duration-300 ease-in-out">
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8 h-full">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-indigo-500 rounded-md shadow-lg">
<i data-feather="users" class="h-6 w-6 text-white"></i>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight">Team Collaboration</h3>
<p class="mt-5 text-base text-gray-500">
Role-based access control, shared dashboards, and real-time notifications to keep your team in sync.
</p>
</div>
</div>
</div>
<!-- Feature 6 -->
<div class="pt-6 feature-card transition-all duration-300 ease-in-out">
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8 h-full">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-indigo-500 rounded-md shadow-lg">
<i data-feather="code" class="h-6 w-6 text-white"></i>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight">Developer Friendly</h3>
<p class="mt-5 text-base text-gray-500">
Comprehensive API documentation, SDKs for all major languages, and dedicated developer support.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonials Section -->
<div id="testimonials" class="bg-gray-50 py-16">
<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-indigo-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">
Trusted by leading companies
</p>
</div>
<div class="mt-16 grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3">
<!-- Testimonial 1 -->
<div class="bg-white p-6 rounded-lg shadow">
<div class="flex items-center">
<img class="h-12 w-12 rounded-full" src="http://static.photos/people/200x200/1" alt="Sarah Johnson">
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Sarah Johnson</h4>
<p class="text-indigo-600">CTO, TechStart Inc.</p>
</div>
</div>
<div class="mt-4">
<p class="text-gray-600">
"CloudPulse reduced our infrastructure costs by 40% while improving reliability. Their automated scaling is game-changing."
</p>
</div>
<div class="mt-4 flex">
<i data-feather="star" class="text-yellow-400 h-5 w-5"></i>
<i data-feather="star" class="text-yellow-400 h-5 w-5"></i>
<i data-feather="star" class="text-yellow-400 h-5 w-5"></i>
<i data-feather="star" class="text-yellow-400 h-5 w-5"></i>
<i data-feather="star" class="text-yellow-400 h-5 w-5"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-white p-6 rounded-lg shadow">
<div class="flex items-center">
<img class="h-12 w-12 rounded-full" src="http://static.photos/people/200x200/2" alt="Michael Chen">
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Michael Chen</h4>
<p class="text-indigo-600">CEO, DataWave</p>
</div>
</div>
<div class="mt-4">
<p class="text-gray-600">
"The analytics dashboard alone is worth the price. We've made better business decisions thanks to CloudPulse's insights."
</p>
</div>
<div class="mt-4 flex">
<i data-feather="star" class="text-yellow-400 h-5 w-5"></i>
<i data-feather="star" class="text-yellow-400 h-5 w-5"></i>
<i data-feather="star" class="text-yellow-400 h-5 w-5"></i>
<i data-feather="star" class="text-yellow-400 h-5 w-5"></i>
<i data-feather="star" class="text-yellow-400 h-5 w-5"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-white p-6 rounded-lg shadow">
<div class="flex items-center">
<img class="h-12 w-12 rounded-full" src="http://static.photos/people/200x200/3" alt="Emma Rodriguez">
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Emma Rodriguez</h4>
<p class="text-indigo-600">Product Manager, SaaSify</p>
</div>
</div>
<div class="mt-4">
<p class="text-gray-600">
"Implementation was seamless and their support team is phenomenal. We migrated our entire stack in under a week."
</p>
</div>
<div class="mt-4 flex">
<i data-feather="star" class="text-yellow-400 h-5 w-5"></i>
<i data-feather="star" class="text-yellow-400 h-5 w-5"></i>
<i data-feather="star" class="text-yellow-400 h-5 w-5"></i>
<i data-feather="star" class="text-yellow-400 h-5 w-5"></i>
<i data-feather="star" class="text-yellow-400 h-5 w-5"></i>
</div>
</div>
</div>
</div>
</div>
<!-- Pricing Section -->
<div id="pricing" class="bg-white py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="sm:flex sm:flex-col sm:align-center">
<h2 class="text-3xl font-extrabold text-gray-900 text-center">Simple, transparent pricing</h2>
<p class="mt-5 text-xl text-gray-500 text-center max-w-2xl mx-auto">
Choose the perfect plan for your business needs
</p>
<div class="relative mt-6 bg-gray-100 rounded-lg p-0.5 flex self-center">
<button type="button" class="relative bg-white border-gray-200 rounded-md shadow-sm py-2 px-4 inline-flex items-center text-sm font-medium text-gray-900 whitespace-nowrap focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:z-10 sm:w-auto sm:px-8">
Monthly billing
</button>
<button type="button" class="ml-0.5 relative border border-transparent rounded-md py-2 px-4 inline-flex items-center text-sm font-medium text-gray-700 whitespace-nowrap focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:z-10 sm:w-auto sm:px-8">
Yearly billing
</button>
</div>
</div>
<div class="mt-12 space-y-4 sm:mt-16 sm:space-y-0 sm:grid sm:grid-cols-3 sm:gap-6 lg:max-w-4xl lg:mx-auto">
<!-- Starter Plan -->
<div class="border border-gray-200 rounded-lg shadow-sm divide-y divide-gray-200 pricing-card transition-all duration-300">
<div class="p-6">
<h2 class="text-lg leading-6 font-medium text-gray-900">Starter</h2>
<p class="mt-4 text-sm text-gray-500">Perfect for small teams and startups</p>
<p class="mt-8">
<span class="text-4xl font-extrabold text-gray-900">$29</span>
<span class="text-base font-medium text-gray-500">/mo</span>
</p>
<a href="#" class="mt-8 block w-full bg-gray-800 border border-gray-800 rounded-md py-2 text-sm font-semibold text-white text-center hover:bg-gray-900">
Get started
</a>
</div>
<div class="pt-6 pb-8 px-6">
<h3 class="text-xs font-medium text-gray-900 tracking-wide uppercase">What's included</h3>
<ul class="mt-6 space-y-4">
<li class="flex">
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
<span class="ml-3 text-base text-gray-500">10,000 monthly active users</span>
</li>
<li class="flex">
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
<span class="ml-3 text-base text-gray-500">Basic analytics dashboard</span>
</li>
<li class="flex">
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
<span class="ml-3 text-base text-gray-500">Email support</span>
</li>
<li class="flex">
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
<span class="ml-3 text-base text-gray-500">Standard security</span>
</li>
</ul>
</div>
</div>
<!-- Growth Plan (Popular) -->
<div class="border border-indigo-300 rounded-lg shadow-sm divide-y divide-gray-200 pricing-card transition-all duration-300 transform scale-105 relative">
<div class="absolute top-0 left-1/2 transform -translate-x-1/2 -translate-y-1/2 bg-indigo-500 text-white text-xs font-bold px-3 py-1 rounded-full">
Most popular
</div>
<div class="p-6">
<h2 class="text-lg leading-6 font-medium text-gray-900">Growth</h2>
<p class="mt-4 text-sm text-gray-500">For growing businesses with scaling needs</p>
<p class="mt-8">
<span class="text-4xl font-extrabold text-gray-900">$99</span>
<span class="text-base font-medium text-gray-500">/mo</span>
</p>
<a href="#" class="mt-8 block w-full bg-indigo-600 border border-indigo-600 rounded-md py-2 text-sm font-semibold text-white text-center hover:bg-indigo-700">
Get started
</a>
</div>
<div class="pt-6 pb-8 px-6">
<h3 class="text-xs font-medium text-gray-900 tracking-wide uppercase">What's included</h3>
<ul class="mt-6 space-y-4">
<li class="flex">
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
<span class="ml-3 text-base text-gray-500">50,000 monthly active users</span>
</li>
<li class="flex">
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
<span class="ml-3 text-base text-gray-500">Advanced analytics</span>
</li>
<li class="flex">
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
<span class="ml-3 text-base text-gray-500">Priority email & chat support</span>
</li>
<li class="flex">
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
<span class="ml-3 text-base text-gray-500">Enhanced security</span>
</li>
<li class="flex">
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
<span class="ml-3 text-base text-gray-500">Team collaboration</span>
</li>
</ul>
</div>
</div>
<!-- Enterprise Plan -->
<div class="border border-gray-200 rounded-lg shadow-sm divide-y divide-gray-200 pricing-card transition-all duration-300">
<div class="p-6">
<h2 class="text-lg leading-6 font-medium text-gray-900">Enterprise</h2>
<p class="mt-4 text-sm text-gray-500">For large scale production needs</p>
<p class="mt-8">
<span class="text-4xl font-extrabold text-gray-900">$299</span>
<span class="text-base font-medium text-gray-500">/mo</span>
</p>
<a href="#" class="mt-8 block w-full bg-gray-800 border border-gray-800 rounded-md py-2 text-sm font-semibold text-white text-center hover:bg-gray-900">
Get started
</a>
</div>
<div class="pt-6 pb-8 px-6">
<h3 class="text-xs font-medium text-gray-900 tracking-wide uppercase">What's included</h3>
<ul class="mt-6 space-y-4">
<li class="flex">
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
<span class="ml-3 text-base text-gray-500">Unlimited users</span>
</li>
<li class="flex">
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
<span class="ml-3 text-base text-gray-500">Custom analytics</span>
</li>
<li class="flex">
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
<span class="ml-3 text-base text-gray-500">24/7 phone support</span>
</li>
<li class="flex">
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
<span class="ml-3 text-base text-gray-500">Enterprise security</span>
</li>
<li class="flex">
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
<span class="ml-3 text-base text-gray-500">Dedicated account manager</span>
</li>
<li class="flex">
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
<span class="ml-3 text-base text-gray-500">API access</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- CTA Section -->
<div id="contact" class="bg-indigo-700">
<div class="max-w-2xl mx-auto text-center py-16 px-4 sm:py-20 sm:px-6 lg:px-8">
<h2 class="text-3xl font-extrabold text-white sm:text-4xl">
<span class="block">Ready to transform your SaaS business?</span>
<span class="block">Start your free 14-day trial today.</span>
</h2>
<p class="mt-4 text-lg leading-6 text-indigo-200">
No credit card required. Cancel anytime.
</p>
<a href="#" class="mt-8 w-full inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-white hover:bg-indigo-50 sm:w-auto">
Get started for free
</a>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-800">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="xl:grid xl:grid-cols-3 xl:gap-8">
<div class="space-y-8 xl:col-span-1">
<div class="flex items-center">
<i data-feather="cloud" class="text-indigo-500 h-6 w-6"></i>
<span class="ml-2 text-xl font-bold text-white">CloudPulse</span>
</div>
<p class="text-gray-300 text-base">
Accelerating SaaS growth through powerful automation and analytics.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-gray-300">
<i data-feather="twitter" class="h-6 w-6"></i>
</a>
<a href="#" class="text-gray-400 hover:text-gray-300">
<i data-feather="facebook" class="h-6 w-6"></i>
</a>
<a href="#" class="text-gray-400 hover:text-gray-300">
<i data-feather="linkedin" class="h-6 w-6"></i>
</a>
<a href="#" class="text-gray-400 hover:text-gray-300">
<i data-feather="github" class="h-6 w-6"></i>
</a>
</div>
</div>
<div class="mt-12 grid grid-cols-2 gap-8 xl:mt-0 xl:col-span-2">
<div class="md:grid md:grid-cols-2 md:gap-8">
<div>
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">
Solutions
</h3>
<ul class="mt-4 space-y-4">
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
Automation
</a>
</li>
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
Analytics
</a>
</li>
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
Scaling
</a>
</li>
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
Security
</a>
</li>
</ul>
</div>
<div class="mt-12 md:mt-0">
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">
Support
</h3>
<ul class="mt-4 space-y-4">
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
Documentation
</a>
</li>
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
Guides
</a>
</li>
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
API Status
</a>
</li>
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
Contact
</a>
</li>
</ul>
</div>
</div>
<div class="md:grid md:grid-cols-2 md:gap-8">
<div>
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">
Company
</h3>
<ul class="mt-4 space-y-4">
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
About
</a>
</li>
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
Blog
</a>
</li>
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
Careers
</a>
</li>
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
Press
</a>
</li>
</ul>
</div>
<div class="mt-12 md:mt-0">
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">
Legal
</h3>
<ul class="mt-4 space-y-4">
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
Privacy
</a>
</li>
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
Terms
</a>
</li>
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
Cookie Policy
</a>
</li>
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
GDPR
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="mt-12 border-t border-gray-700 pt-8">
<p class="text-base text-gray-400 text-center">
© 2023 CloudPulse, Inc. All rights reserved.
</p>
</div>
</div>
</footer>
<script>
// Initialize Vanta.js waves effect
VANTA.WAVES({
el: "#vanta-waves",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x6d7aff,
shininess: 35.00,
waveHeight: 15.00,
waveSpeed: 0.75,
zoom: 0.85
});
// Initialize feather icons
feather.replace();
</script>
</body>
</html>
|