File size: 41,718 Bytes
f0d12f9 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Something - Redefining Mobile Experience</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>
.gradient-bg {
background: linear-gradient(135deg, #6e8efb, #a777e3);
}
.phone-mockup {
transform-style: preserve-3d;
transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}
.parallax-bg {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
.floating {
animation: float 6s ease-in-out infinite;
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Navigation -->
<nav class="fixed w-full z-50 bg-white/90 backdrop-blur-md shadow-sm">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-20 items-center">
<div class="flex-shrink-0 flex items-center">
<span class="text-2xl font-bold text-purple-600">Something</span>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-center space-x-8">
<a href="#features" class="text-gray-700 hover:text-purple-600 px-3 py-2 font-medium transition">Features</a>
<a href="#phones" class="text-gray-700 hover:text-purple-600 px-3 py-2 font-medium transition">Phones</a>
<a href="#reviews" class="text-gray-700 hover:text-purple-600 px-3 py-2 font-medium transition">Reviews</a>
<a href="#faq" class="text-gray-700 hover:text-purple-600 px-3 py-2 font-medium transition">FAQ</a>
</div>
</div>
<div class="hidden md:block">
<a href="#preorder" class="ml-8 inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-full text-white bg-purple-600 hover:bg-purple-700 transition shadow-lg shadow-purple-500/20">
Pre-order Now
</a>
</div>
<div class="md:hidden">
<button id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-700 hover:text-purple-600 focus:outline-none">
<svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="md:hidden hidden bg-white shadow-lg">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#features" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-purple-600 hover:bg-gray-50">Features</a>
<a href="#phones" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-purple-600 hover:bg-gray-50">Phones</a>
<a href="#reviews" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-purple-600 hover:bg-gray-50">Reviews</a>
<a href="#faq" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-purple-600 hover:bg-gray-50">FAQ</a>
<a href="#preorder" class="block px-3 py-2 rounded-md text-base font-medium text-white bg-purple-600 hover:bg-purple-700">Pre-order</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="pt-24 pb-16 md:pt-32 md:pb-24 gradient-bg text-white overflow-hidden">
<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-8 items-center">
<div class="mt-12 md:mt-0 text-center lg:text-left">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight">
The Future of <span class="text-yellow-300">Mobile</span> is Here
</h1>
<p class="mt-6 text-lg md:text-xl text-purple-100 max-w-lg">
Introducing Something X - The smartphone that adapts to you. With revolutionary AI technology and unparalleled performance.
</p>
<div class="mt-10 flex flex-col sm:flex-row gap-4 justify-center lg:justify-start">
<a href="#preorder" class="px-8 py-4 border border-transparent text-base font-medium rounded-full text-purple-600 bg-white hover:bg-gray-100 transition shadow-lg">
Pre-order Now
</a>
<a href="#features" class="px-8 py-4 border border-transparent text-base font-medium rounded-full text-white border-white hover:bg-white/10 transition">
Explore Features
</a>
</div>
<div class="mt-12 flex items-center justify-center lg:justify-start space-x-8">
<div class="text-center">
<div class="text-3xl font-bold">48MP</div>
<div class="text-sm opacity-80">Camera</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold">5G</div>
<div class="text-sm opacity-80">Connectivity</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold">30h</div>
<div class="text-sm opacity-80">Battery Life</div>
</div>
</div>
</div>
<div class="mt-16 lg:mt-0 relative flex justify-center">
<div class="phone-mockup floating">
<img src="https://images.unsplash.com/photo-1601784551446-20c9e07cdbdb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=80"
alt="Something X Phone"
class="w-64 md:w-80 rounded-3xl border-8 border-white">
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900">Why Choose <span class="text-purple-600">Something</span>?</h2>
<p class="mt-4 max-w-2xl mx-auto text-lg text-gray-600">
Our phones are designed with cutting-edge technology to provide an unmatched user experience.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300 ease-in-out">
<div class="w-14 h-14 bg-purple-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-camera text-purple-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Pro-Grade Camera</h3>
<p class="text-gray-600">
Capture stunning photos with our 48MP triple camera system featuring AI-enhanced night mode and cinematic video stabilization.
</p>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300 ease-in-out">
<div class="w-14 h-14 bg-purple-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-bolt text-purple-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Lightning Fast</h3>
<p class="text-gray-600">
Powered by the latest Snapdragon processor with 5G connectivity for ultra-fast performance and seamless multitasking.
</p>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300 ease-in-out">
<div class="w-14 h-14 bg-purple-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-battery-full text-purple-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">All-Day Battery</h3>
<p class="text-gray-600">
Our 5000mAh battery with 30W fast charging keeps you powered all day and charges to 50% in just 20 minutes.
</p>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300 ease-in-out">
<div class="w-14 h-14 bg-purple-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-eye text-purple-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">AMOLED Display</h3>
<p class="text-gray-600">
6.7" 120Hz AMOLED display with HDR10+ support for vibrant colors, deep blacks, and ultra-smooth scrolling.
</p>
</div>
<!-- Feature 5 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300 ease-in-out">
<div class="w-14 h-14 bg-purple-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-fingerprint text-purple-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Advanced Security</h3>
<p class="text-gray-600">
In-display fingerprint sensor and 3D facial recognition provide enterprise-grade security for your data.
</p>
</div>
<!-- Feature 6 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300 ease-in-out">
<div class="w-14 h-14 bg-purple-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-robot text-purple-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Smart AI Assistant</h3>
<p class="text-gray-600">
Our proprietary AI learns your habits to optimize performance, battery life, and even suggest actions before you need them.
</p>
</div>
</div>
</div>
</section>
<!-- Phones Section -->
<section id="phones" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900">Our <span class="text-purple-600">Product</span> Lineup</h2>
<p class="mt-4 max-w-2xl mx-auto text-lg text-gray-600">
Choose the perfect Something phone for your needs and budget.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Phone 1 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 hover:shadow-xl">
<div class="p-6">
<div class="text-purple-600 font-bold mb-2">Something Lite</div>
<h3 class="text-2xl font-bold text-gray-900 mb-4">Perfect Balance</h3>
<img src="https://images.unsplash.com/photo-1592899677977-9c10df588f62?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=80"
alt="Something Lite"
class="w-full h-48 object-contain mb-6">
<ul class="space-y-3 mb-6">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>6.5" 90Hz AMOLED</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>64MP Triple Camera</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Snapdragon 778G</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>4500mAh Battery</span>
</li>
</ul>
<div class="text-3xl font-bold mb-6">$499</div>
<button class="w-full py-3 px-6 bg-purple-600 hover:bg-purple-700 text-white font-medium rounded-lg transition">
Pre-order Now
</button>
</div>
</div>
<!-- Phone 2 (Featured) -->
<div class="bg-white rounded-xl overflow-hidden shadow-2xl border-2 border-purple-500 transform scale-105 z-10">
<div class="bg-purple-600 text-white text-center py-2">
<span class="font-bold">MOST POPULAR</span>
</div>
<div class="p-6">
<div class="text-purple-600 font-bold mb-2">Something X</div>
<h3 class="text-2xl font-bold text-gray-900 mb-4">Flagship Experience</h3>
<img src="https://images.unsplash.com/photo-1601784551446-20c9e07cdbdb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=80"
alt="Something X"
class="w-full h-48 object-contain mb-6">
<ul class="space-y-3 mb-6">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>6.7" 120Hz AMOLED</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>108MP Quad Camera</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Snapdragon 8 Gen 2</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>5000mAh Battery</span>
</li>
</ul>
<div class="text-3xl font-bold mb-6">$899</div>
<button class="w-full py-3 px-6 bg-purple-600 hover:bg-purple-700 text-white font-medium rounded-lg transition">
Pre-order Now
</button>
</div>
</div>
<!-- Phone 3 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 hover:shadow-xl">
<div class="p-6">
<div class="text-purple-600 font-bold mb-2">Something Pro</div>
<h3 class="text-2xl font-bold text-gray-900 mb-4">Ultimate Power</h3>
<img src="https://images.unsplash.com/photo-1610792516307-ea5acd9e3a8f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=80"
alt="Something Pro"
class="w-full h-48 object-contain mb-6">
<ul class="space-y-3 mb-6">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>6.8" 144Hz AMOLED</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>200MP Pro Camera</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Snapdragon 8+ Gen 2</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>5500mAh Battery</span>
</li>
</ul>
<div class="text-3xl font-bold mb-6">$1,199</div>
<button class="w-full py-3 px-6 bg-purple-600 hover:bg-purple-700 text-white font-medium rounded-lg transition">
Pre-order Now
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Reviews Section -->
<section id="reviews" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900">What Our <span class="text-purple-600">Customers</span> Say</h2>
<p class="mt-4 max-w-2xl mx-auto text-lg text-gray-600">
Don't just take our word for it. Here's what tech experts and users are saying.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Review 1 -->
<div class="bg-gray-50 p-8 rounded-xl">
<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-purple-600">Tech Blogger</p>
</div>
</div>
<div class="flex mb-2">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
<p class="text-gray-600">
"The Something X is hands down the best phone I've used this year. The camera system is phenomenal, and the battery life is incredible."
</p>
</div>
<!-- Review 2 -->
<div class="bg-gray-50 p-8 rounded-xl">
<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/44.jpg" alt="Michael Chen">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Michael Chen</h4>
<p class="text-purple-600">Photographer</p>
</div>
</div>
<div class="flex mb-2">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star-half-alt text-yellow-400"></i>
</div>
<p class="text-gray-600">
"As a professional photographer, I'm blown away by the camera quality. The Something Pro rivals my DSLR for casual shots."
</p>
</div>
<!-- Review 3 -->
<div class="bg-gray-50 p-8 rounded-xl">
<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-purple-600">Business Executive</p>
</div>
</div>
<div class="flex mb-2">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
<p class="text-gray-600">
"The productivity features on the Something series are game-changers. The AI assistant actually saves me hours every week."
</p>
</div>
</div>
<!-- Video Reviews -->
<div class="mt-16 grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-gray-900 rounded-xl overflow-hidden">
<div class="aspect-w-16 aspect-h-9">
<iframe class="w-full h-96" src="https://www.youtube.com/embed/dQw4w9WgXcQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-white mb-2">Something X Review</h3>
<p class="text-gray-400">TechToday</p>
</div>
</div>
<div class="bg-gray-900 rounded-xl overflow-hidden">
<div class="aspect-w-16 aspect-h-9">
<iframe class="w-full h-96" src="https://www.youtube.com/embed/dQw4w9WgXcQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-white mb-2">Camera Test</h3>
<p class="text-gray-400">Mobile Photography</p>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section id="faq" class="py-20 bg-gray-50">
<div class="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900">Frequently Asked <span class="text-purple-600">Questions</span></h2>
<p class="mt-4 text-lg text-gray-600">
Have questions? We've got answers.
</p>
</div>
<div class="space-y-6">
<!-- FAQ Item 1 -->
<div class="bg-white p-6 rounded-xl shadow-md">
<button class="faq-toggle w-full flex justify-between items-center text-left">
<h3 class="text-lg font-medium text-gray-900">When will the Something X be available?</h3>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content mt-4 hidden">
<p class="text-gray-600">
The Something X will be available for pre-order starting next week, with shipping beginning on October 15th. Limited quantities available for launch day delivery.
</p>
</div>
</div>
<!-- FAQ Item 2 -->
<div class="bg-white p-6 rounded-xl shadow-md">
<button class="faq-toggle w-full flex justify-between items-center text-left">
<h3 class="text-lg font-medium text-gray-900">Does the Something X support wireless charging?</h3>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content mt-4 hidden">
<p class="text-gray-600">
Yes! The Something X supports 15W Qi wireless charging, as well as 10W reverse wireless charging to power up your accessories.
</p>
</div>
</div>
<!-- FAQ Item 3 -->
<div class="bg-white p-6 rounded-xl shadow-md">
<button class="faq-toggle w-full flex justify-between items-center text-left">
<h3 class="text-lg font-medium text-gray-900">What's the warranty policy?</h3>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content mt-4 hidden">
<p class="text-gray-600">
All Something phones come with a 24-month limited warranty covering manufacturing defects. Accidental damage is covered for the first 12 months with our Premium Care program.
</p>
</div>
</div>
<!-- FAQ Item 4 -->
<div class="bg-white p-6 rounded-xl shadow-md">
<button class="faq-toggle w-full flex justify-between items-center text-left">
<h3 class="text-lg font-medium text-gray-900">Is there a trade-in program?</h3>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content mt-4 hidden">
<p class="text-gray-600">
Absolutely! We offer competitive trade-in values for most recent smartphones. You can get an instant quote on our website by entering your device details.
</p>
</div>
</div>
<!-- FAQ Item 5 -->
<div class="bg-white p-6 rounded-xl shadow-md">
<button class="faq-toggle w-full flex justify-between items-center text-left">
<h3 class="text-lg font-medium text-gray-900">How often will the phone receive software updates?</h3>
<i class="fas fa-chevron-down text-purple-600 transition-transform duration-300"></i>
</button>
<div class="faq-content mt-4 hidden">
<p class="text-gray-600">
We commit to providing monthly security updates for 4 years and at least 3 major Android version updates for all Something X series devices.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Pre-order Section -->
<section id="preorder" class="py-20 gradient-bg text-white">
<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-16 items-center">
<div class="mb-12 lg:mb-0">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Experience <span class="text-yellow-300">Something</span> New?</h2>
<p class="text-lg text-purple-100 mb-8">
Join thousands of happy customers and pre-order your Something phone today. Limited time offer: Free wireless earbuds with every pre-order!
</p>
<div class="flex flex-col sm:flex-row gap-4">
<a href="#" class="px-8 py-4 border border-transparent text-base font-medium rounded-full text-purple-600 bg-white hover:bg-gray-100 transition shadow-lg">
Pre-order Now
</a>
<a href="#" class="px-8 py-4 border border-transparent text-base font-medium rounded-full text-white border-white hover:bg-white/10 transition">
Find a Store
</a>
</div>
</div>
<div class="bg-white/10 backdrop-blur-md rounded-2xl p-8">
<h3 class="text-xl font-bold mb-6">Pre-order Form</h3>
<form>
<div class="mb-4">
<label for="name" class="block text-sm font-medium mb-2">Full Name</label>
<input type="text" id="name" class="w-full px-4 py-3 rounded-lg bg-white/20 border border-white/30 focus:ring-2 focus:ring-purple-300 focus:border-transparent text-white placeholder-purple-200">
</div>
<div class="mb-4">
<label for="email" class="block text-sm font-medium mb-2">Email</label>
<input type="email" id="email" class="w-full px-4 py-3 rounded-lg bg-white/20 border border-white/30 focus:ring-2 focus:ring-purple-300 focus:border-transparent text-white placeholder-purple-200">
</div>
<div class="mb-4">
<label for="phone" class="block text-sm font-medium mb-2">Phone Model</label>
<select id="phone" class="w-full px-4 py-3 rounded-lg bg-white/20 border border-white/30 focus:ring-2 focus:ring-purple-300 focus:border-transparent text-white">
<option value="" disabled selected>Select your model</option>
<option value="lite">Something Lite ($499)</option>
<option value="x">Something X ($899)</option>
<option value="pro">Something Pro ($1,199)</option>
</select>
</div>
<div class="mb-6">
<label for="color" class="block text-sm font-medium mb-2">Color</label>
<div class="flex space-x-4">
<label class="inline-flex items-center">
<input type="radio" name="color" value="black" class="h-5 w-5 text-purple-600" checked>
<span class="ml-2">Cosmic Black</span>
</label>
<label class="inline-flex items-center">
<input type="radio" name="color" value="blue" class="h-5 w-5 text-purple-600">
<span class="ml-2">Stellar Blue</span>
</label>
<label class="inline-flex items-center">
<input type="radio" name="color" value="white" class="h-5 w-5 text-purple-600">
<span class="ml-2">Lunar White</span>
</label>
</div>
</div>
<button type="submit" class="w-full py-3 px-6 bg-white hover:bg-gray-100 text-purple-600 font-bold rounded-lg transition">
Complete Pre-order
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 mb-12">
<div>
<h3 class="text-lg font-bold mb-4">Products</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Something X</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Something Lite</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Something Pro</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Accessories</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Support</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Help Center</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Warranty</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Repairs</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact Us</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Newsroom</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Sustainability</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Connect</h3>
<div class="flex space-x-4 mb-4">
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-youtube"></i></a>
</div>
<p class="text-gray-400 mb-2">Subscribe to our newsletter</p>
<div class="flex">
<input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-lg bg-gray-800 text-white focus:outline-none focus:ring-2 focus:ring-purple-500">
<button class="bg-purple-600 hover:bg-purple-700 px-4 py-2 rounded-r-lg transition">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<span class="text-2xl font-bold">Something</span>
</div>
<div class="text-gray-400 text-sm">
<p>© 2023 Something Technologies. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<button id="back-to-top" class="fixed bottom-8 right-8 bg-purple-600 text-white p-3 rounded-full shadow-lg opacity-0 invisible transition-all duration-300 hover:bg-purple-700">
<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');
});
// FAQ accordion
const faqToggles = document.querySelectorAll('.faq-toggle');
faqToggles.forEach(toggle => {
toggle.addEventListener('click', () => {
const content = toggle.nextElementSibling;
const icon = toggle.querySelector('i');
content.classList.toggle('hidden');
icon.classList.toggle('transform');
icon.classList.toggle('rotate-180');
});
});
// Back to top button
const backToTopButton = document.getElementById('back-to-top');
window.addEventListener('scroll', () => {
if (window.pageYOffset > 300) {
backToTopButton.classList.remove('opacity-0', 'invisible');
backToTopButton.classList.add('opacity-100', 'visible');
} else {
backToTopButton.classList.remove('opacity-100', 'visible');
backToTopButton.classList.add('opacity-0', 'invisible');
}
});
backToTopButton.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
$0
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu if open
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Laikokwei/something" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |