Spaces:
Running
Running
File size: 35,572 Bytes
745f4e4 d5181ed 745f4e4 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nexus - Modern Web Solutions</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* Custom CSS for animations and effects */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.fade-in {
animation: fadeIn 1s ease-out forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.card-hover: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);
}
.transition-all {
transition: all 0.3s ease;
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- Navigation -->
<nav class="bg-white shadow-sm sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-cube text-indigo-600 text-2xl mr-2"></i>
<span class="text-xl font-bold text-gray-900">Nexus</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="features.html" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium transition-all">Features</a>
<a href="solutions.html" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium transition-all">Solutions</a>
<a href="pricing.html" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium transition-all">Pricing</a>
<a href="testimonials.html" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium transition-all">Testimonials</a>
<a href="contact.html" class="bg-indigo-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-700 transition-all">Contact Us</a>
</div>
<div class="-mr-2 flex items-center md:hidden">
<button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none">
<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 md:hidden bg-white border-t border-gray-200">
<div class="pt-2 pb-3 space-y-1">
<a href="features.html" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-indigo-600 hover:bg-gray-50">Features</a>
<a href="solutions.html" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-indigo-600 hover:bg-gray-50">Solutions</a>
<a href="pricing.html" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-indigo-600 hover:bg-gray-50">Pricing</a>
<a href="testimonials.html" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-indigo-600 hover:bg-gray-50">Testimonials</a>
<a href="contact.html" class="block px-3 py-2 text-base font-medium text-indigo-600 hover:bg-indigo-50">Contact Us</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="bg-gradient-to-r from-indigo-50 to-blue-50 py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center">
<div class="fade-in">
<h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-6">
Build <span class="gradient-text">amazing</span> digital experiences
</h1>
<p class="text-lg text-gray-600 mb-8">
Nexus provides cutting-edge web solutions to help your business thrive in the digital world. Our platform combines power with simplicity.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="register.html" class="bg-indigo-600 text-white px-6 py-3 rounded-lg text-lg font-medium hover:bg-indigo-700 transition-all text-center">
Get Started
</a>
<a href="features.html" class="border border-gray-300 bg-white text-gray-700 px-6 py-3 rounded-lg text-lg font-medium hover:bg-gray-50 transition-all text-center">
Learn More
</a>
</div>
</div>
<div class="fade-in delay-1 mt-10 lg:mt-0">
<img src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=800&q=80" alt="Web development" class="rounded-xl shadow-xl w-full h-auto">
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Powerful Features</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
Our platform is packed with features designed to help you succeed in today's digital landscape.
</p>
<a href="features.html" class="mt-4 text-indigo-600 font-medium hover:text-indigo-700 inline-flex items-center">
See all features
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-gray-50 p-8 rounded-xl transition-all card-hover fade-in delay-1">
<div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-bolt text-indigo-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Lightning Fast</h3>
<p class="text-gray-600">
Optimized for speed with cutting-edge technology to ensure your site loads in milliseconds.
</p>
<a href="feature-detail.html?feature=lightning-fast" class="mt-4 text-indigo-600 font-medium hover:text-indigo-700 inline-flex items-center">
Learn more
<i class="fas fa-chevron-right ml-1 text-sm"></i>
</a>
</div>
<div class="bg-gray-50 p-8 rounded-xl transition-all card-hover fade-in delay-2">
<div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-mobile-alt text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Fully Responsive</h3>
<p class="text-gray-600">
Looks perfect on any device, from desktop to mobile, with adaptive layouts.
</p>
<a href="feature-detail.html?feature=responsive" class="mt-4 text-indigo-600 font-medium hover:text-indigo-700 inline-flex items-center">
Learn more
<i class="fas fa-chevron-right ml-1 text-sm"></i>
</a>
</div>
<div class="bg-gray-50 p-8 rounded-xl transition-all card-hover fade-in delay-3">
<div class="w-14 h-14 bg-purple-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-shield-alt text-purple-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Enterprise Security</h3>
<p class="text-gray-600">
Military-grade encryption and security protocols to protect your data.
</p>
<a href="feature-detail.html?feature=security" class="mt-4 text-indigo-600 font-medium hover:text-indigo-700 inline-flex items-center">
Learn more
<i class="fas fa-chevron-right ml-1 text-sm"></i>
</a>
</div>
<div class="bg-gray-50 p-8 rounded-xl transition-all card-hover fade-in delay-1">
<div class="w-14 h-14 bg-green-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-chart-line text-green-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">SEO Optimized</h3>
<p class="text-gray-600">
Built-in SEO tools to help your content rank higher in search results.
</p>
<a href="feature-detail.html?feature=seo" class="mt-4 text-indigo-600 font-medium hover:text-indigo-700 inline-flex items-center">
Learn more
<i class="fas fa-chevron-right ml-1 text-sm"></i>
</a>
</div>
<div class="bg-gray-50 p-8 rounded-xl transition-all card-hover fade-in delay-2">
<div class="w-14 h-14 bg-yellow-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-cog text-yellow-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Easy Customization</h3>
<p class="text-gray-600">
Intuitive interface with drag-and-drop functionality for easy customization.
</p>
<a href="feature-detail.html?feature=customization" class="mt-4 text-indigo-600 font-medium hover:text-indigo-700 inline-flex items-center">
Learn more
<i class="fas fa-chevron-right ml-1 text-sm"></i>
</a>
</div>
<div class="bg-gray-50 p-8 rounded-xl transition-all card-hover fade-in delay-3">
<div class="w-14 h-14 bg-red-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-headset text-red-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">24/7 Support</h3>
<p class="text-gray-600">
Our expert team is available around the clock to assist you.
</p>
<a href="feature-detail.html?feature=support" class="mt-4 text-indigo-600 font-medium hover:text-indigo-700 inline-flex items-center">
Learn more
<i class="fas fa-chevron-right ml-1 text-sm"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Solutions Section -->
<section class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center">
<div class="fade-in">
<h2 class="text-3xl font-bold text-gray-900 mb-6">Tailored Solutions for Your Business</h2>
<p class="text-lg text-gray-600 mb-8">
We understand that every business is unique. That's why we offer customized solutions that fit your specific needs and goals.
</p>
<ul class="space-y-4">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i>
<span class="text-gray-700">Custom web application development</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i>
<span class="text-gray-700">E-commerce solutions with secure payments</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i>
<span class="text-gray-700">Content management systems</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i>
<span class="text-gray-700">API integration and development</span>
</li>
</ul>
<a href="solutions.html" class="mt-6 inline-flex items-center bg-indigo-600 text-white px-6 py-3 rounded-lg text-lg font-medium hover:bg-indigo-700 transition-all">
Explore Solutions
</a>
</div>
<div class="fade-in delay-1 mt-10 lg:mt-0">
<div class="bg-white p-6 rounded-xl shadow-lg">
<img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80" alt="Team working" class="rounded-lg w-full h-auto mb-6">
<h3 class="text-xl font-bold text-gray-900 mb-3">Our Approach</h3>
<p class="text-gray-600 mb-4">
We work closely with you to understand your business objectives and deliver solutions that drive real results.
</p>
<a href="process.html" class="text-indigo-600 font-medium hover:text-indigo-700 inline-flex items-center">
Learn more about our process
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Simple, Transparent Pricing</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
Choose the plan that fits your needs. No hidden fees, cancel anytime.
</p>
<a href="pricing.html" class="mt-4 text-indigo-600 font-medium hover:text-indigo-700 inline-flex items-center">
Detailed pricing comparison
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<div class="bg-gray-50 rounded-xl p-8 transition-all card-hover fade-in delay-1">
<h3 class="text-xl font-bold text-gray-900 mb-2">Starter</h3>
<p class="text-gray-600 mb-6">Perfect for small projects and personal websites</p>
<div class="mb-6">
<span class="text-4xl font-bold text-gray-900">$19</span>
<span class="text-gray-600">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-3"></i>
<span class="text-gray-700">1 Website</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-3"></i>
<span class="text-gray-700">10 GB Storage</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-3"></i>
<span class="text-gray-700">Basic Analytics</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-3"></i>
<span class="text-gray-700">Email Support</span>
</li>
</ul>
<a href="checkout.html?plan=starter" class="block w-full bg-gray-200 text-gray-800 text-center py-3 rounded-lg font-medium hover:bg-gray-300 transition-all">
Select Plan
</a>
</div>
<div class="bg-indigo-600 rounded-xl p-8 text-white transition-all card-hover fade-in">
<div class="mb-4">
<span class="inline-block bg-indigo-700 text-xs font-semibold px-3 py-1 rounded-full">POPULAR</span>
</div>
<h3 class="text-xl font-bold mb-2">Professional</h3>
<p class="text-indigo-100 mb-6">Ideal for growing businesses and professionals</p>
<div class="mb-6">
<span class="text-4xl font-bold">$49</span>
<span class="text-indigo-100">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-white mt-1 mr-3"></i>
<span>5 Websites</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-white mt-1 mr-3"></i>
<span>50 GB Storage</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-white mt-1 mr-3"></i>
<span>Advanced Analytics</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-white mt-1 mr-3"></i>
<span>Priority Support</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-white mt-1 mr-3"></i>
<span>SEO Tools</span>
</li>
</ul>
<a href="checkout.html?plan=professional" class="block w-full bg-white text-indigo-600 text-center py-3 rounded-lg font-medium hover:bg-gray-100 transition-all">
Select Plan
</a>
</div>
<div class="bg-gray-50 rounded-xl p-8 transition-all card-hover fade-in delay-2">
<h3 class="text-xl font-bold text-gray-900 mb-2">Enterprise</h3>
<p class="text-gray-600 mb-6">For large businesses with custom needs</p>
<div class="mb-6">
<span class="text-4xl font-bold text-gray-900">$99</span>
<span class="text-gray-600">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-3"></i>
<span class="text-gray-700">Unlimited Websites</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-3"></i>
<span class="text-gray-700">500 GB Storage</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-3"></i>
<span class="text-gray-700">Premium Analytics</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-3"></i>
<span class="text-gray-700">24/7 VIP Support</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-3"></i>
<span class="text-gray-700">Dedicated Account Manager</span>
</li>
</ul>
<a href="checkout.html?plan=enterprise" class="block w-full bg-gray-200 text-gray-800 text-center py-3 rounded-lg font-medium hover:bg-gray-300 transition-all">
Select Plan
</a>
</div>
</div>
<div class="mt-12 text-center fade-in delay-3">
<p class="text-gray-600 mb-4">Need something custom?</p>
<a href="contact.html" class="text-indigo-600 font-medium hover:text-indigo-700 inline-flex items-center">
Contact us for enterprise solutions
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl font-bold text-gray-900 mb-4">What Our Clients Say</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
Don't just take our word for it. Here's what our clients have to say about working with us.
</p>
<a href="testimonials.html" class="mt-4 text-indigo-600 font-medium hover:text-indigo-700 inline-flex items-center">
Read all testimonials
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-white p-8 rounded-xl shadow-sm transition-all card-hover fade-in delay-1">
<div class="flex items-center mb-4">
<div class="flex-shrink-0">
<img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah Johnson">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Sarah Johnson</h4>
<p class="text-gray-600">CEO, TechStart</p>
</div>
</div>
<p class="text-gray-600 italic">
"Nexus transformed our online presence. Our website traffic increased by 300% within the first month of launch. Their team is incredibly talented and responsive."
</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>
<a href="testimonial-detail.html?id=1" class="mt-4 inline-flex items-center text-sm text-indigo-600 font-medium hover:text-indigo-700">
Read full testimonial
</a>
</div>
<div class="bg-white p-8 rounded-xl shadow-sm transition-all card-hover fade-in delay-2">
<div class="flex items-center mb-4">
<div class="flex-shrink-0">
<img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/men/43.jpg" alt="Michael Chen">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Michael Chen</h4>
<p class="text-gray-600">Founder, GreenLeaf</p>
</div>
</div>
<p class="text-gray-600 italic">
"The e-commerce solution Nexus built for us has been flawless. Our conversion rates have never been higher, and the platform is so easy to manage."
</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>
<a href="testimonial-detail.html?id=2" class="mt-4 inline-flex items-center text-sm text-indigo-600 font-medium hover:text-indigo-700">
Read full testimonial
</a>
</div>
<div class="bg-white p-8 rounded-xl shadow-sm transition-all card-hover fade-in delay-3">
<div class="flex items-center mb-4">
<div class="flex-shrink-0">
<img class="h-10 w-10 rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emma Rodriguez">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Emma Rodriguez</h4>
<p class="text-gray-600">Marketing Director, BrightCo</p>
</div>
</div>
<p class="text-gray-600 italic">
"Working with Nexus was a game-changer for our digital strategy. Their insights and technical expertise helped us reach new audiences and grow our business."
</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-half-alt"></i>
</div>
<a href="testimonial-detail.html?id=3" class="mt-4 inline-flex items-center text-sm text-indigo-600 font-medium hover:text-indigo-700">
Read full testimonial
</a>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 bg-indigo-700 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold mb-6 fade-in">Ready to transform your digital presence?</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto fade-in delay-1">
Join thousands of businesses who trust Nexus for their web solutions.
</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4 fade-in delay-2">
<a href="register.html" class="bg-white text-indigo-700 px-8 py-4 rounded-lg text-lg font-bold hover:bg-gray-100 transition-all">
Get Started for Free
</a>
<a href="demo.html" class="border-2 border-white text-white px-8 py-4 rounded-lg text-lg font-bold hover:bg-indigo-600 transition-all">
Request a Demo
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div>
<h3 class="text-lg font-semibold mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="about.html" class="text-gray-400 hover:text-white transition-all">About Us</a></li>
<li><a href="careers.html" class="text-gray-400 hover:text-white transition-all">Careers</a></li>
<li><a href="blog.html" class="text-gray-400 hover:text-white transition-all">Blog</a></li>
<li><a href="press.html" class="text-gray-400 hover:text-white transition-all">Press</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Products</h3>
<ul class="space-y-2">
<li><a href="platform.html" class="text-gray-400 hover:text-white transition-all">Web Platform</a></li>
<li><a href="ecommerce.html" class="text-gray-400 hover:text-white transition-all">E-commerce</a></li>
<li><a href="cms.html" class="text-gray-400 hover:text-white transition-all">CMS</a></li>
<li><a href="api.html" class="text-gray-400 hover:text-white transition-all">API</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="docs.html" class="text-gray-400 hover:text-white transition-all">Documentation</a></li>
<li><a href="guides.html" class="text-gray-400 hover:text-white transition-all">Guides</a></li>
<li><a href="support.html" class="text-gray-400 hover:text-white transition-all">Support</a></li>
<li><a href="community.html" class="text-gray-400 hover:text-white transition-all">Community</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Legal</h3>
<ul class="space-y-2">
<li><a href="privacy.html" class="text-gray-400 hover:text-white transition-all">Privacy</a></li>
<li><a href="terms.html" class="text-gray-400 hover:text-white transition-all">Terms</a></li>
<li><a href="security.html" class="text-gray-400 hover:text-white transition-all">Security</a></li>
<li><a href="cookies.html" class="text-gray-400 hover:text-white transition-all">Cookies</a></li>
</ul>
</div>
</div>
<div class="mt-12 pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center mb-4 md:mb-0">
<i class="fas fa-cube text-indigo-400 text-2xl mr-2"></i>
<span class="text-xl font-bold">Nexus</span>
</div>
<div class="text-gray-400 text-sm mb-4 md:mb-0">
© 2023 Nexus Technologies. All rights reserved.
</div>
<div class="flex space-x-6">
<a href="https://facebook.com" class="text-gray-400 hover:text-white transition-all">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://twitter.com" class="text-gray-400 hover:text-white transition-all">
<i class="fab fa-twitter"></i>
</a>
<a href="https://instagram.com" class="text-gray-400 hover:text-white transition-all">
<i class="fab fa-instagram"></i>
</a>
<a href="https://linkedin.com" class="text-gray-400 hover:text-white transition-all">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<button id="backToTop" class="fixed bottom-8 right-8 bg-indigo-600 text-white p-3 rounded-full shadow-lg hover:bg-indigo-700 transition-all hidden">
<i class="fas fa-arrow-up"></i>
</button>
<script>
// Mobile menu toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Back to top button
const backToTopButton = document.getElementById('backToTop');
window.addEventListener('scroll', () => {
if (window.pageYOffset > 300) {
backToTopButton.classList.remove('hidden');
} else {
backToTopButton.classList.add('hidden');
}
});
backToTopButton.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// Form submission
const contactForm = document.getElementById('contactForm');
const formSuccess = document.getElementById('formSuccess');
contactForm.addEventListener('submit', (e) => {
e.preventDefault();
// Here you would normally send the form data to your server
// For demo purposes, we'll just show the success message
formSuccess.classList.remove('hidden');
contactForm.reset();
setTimeout(() => {
formSuccess.classList.add('hidden');
}, 5000);
});
// Fade in animation when elements come into view
const fadeElements = document.querySelectorAll('.fade-in');
const fadeInObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate-fadeIn');
}
});
}, {
threshold: 0.1
});
fadeElements.forEach(element => {
fadeInObserver.observe(element);
});
</script>
</body>
</html> |