|
<!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"> |
|
|
|
<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> |
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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"> |
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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"> |
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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"> |
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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"> |
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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 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> |
|
|
|
|
|
<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> |
|
|
|
const mobileMenuButton = document.getElementById('mobile-menu-button'); |
|
const mobileMenu = document.getElementById('mobile-menu'); |
|
|
|
mobileMenuButton.addEventListener('click', () => { |
|
mobileMenu.classList.toggle('hidden'); |
|
}); |
|
|
|
|
|
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'); |
|
}); |
|
}); |
|
|
|
|
|
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' |
|
}); |
|
}); |
|
|
|
|
|
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' |
|
}); |
|
|
|
|
|
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> |