File size: 26,486 Bytes
34fbc07 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YourImageSearch.com | Protect Your Digital Identity</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>
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Space Grotesk', sans-serif;
background-color: #0f172a;
color: #e2e8f0;
}
.gradient-bg {
background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
}
.scan-animation {
position: relative;
overflow: hidden;
}
.scan-animation::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, transparent, #3b82f6, transparent);
animation: scan 2s linear infinite;
}
@keyframes scan {
0% { transform: translateY(0); }
100% { transform: translateY(100vh); }
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}
.ai-chatbot {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 1000;
transition: all 0.3s ease;
}
.ai-chatbot.expanded {
width: 350px;
height: 500px;
}
.tos-checkbox:checked {
background-color: #3b82f6;
}
.camera-container {
position: relative;
width: 100%;
max-width: 500px;
margin: 0 auto;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.camera-view {
width: 100%;
height: 400px;
background-color: #1e293b;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.capture-btn {
width: 60px;
height: 60px;
border-radius: 50%;
background-color: #ef4444;
border: 4px solid white;
cursor: pointer;
transition: all 0.2s;
}
.capture-btn:hover {
transform: scale(1.05);
}
.capture-btn:active {
transform: scale(0.95);
}
.result-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 20px;
}
.loading-dots::after {
content: '.';
animation: dots 1.5s steps(5, end) infinite;
}
@keyframes dots {
0%, 20% { content: '.'; }
40% { content: '..'; }
60% { content: '...'; }
80%, 100% { content: ''; }
}
.ad-image {
border-radius: 12px;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease;
}
.ad-image:hover {
transform: translateY(-5px);
}
.scanning-header {
position: relative;
overflow: hidden;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(90deg, #1e3a8a, #0f172a);
}
.scanning-bar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, transparent, #3b82f6, transparent);
animation: scanning 2s linear infinite;
}
@keyframes scanning {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
</style>
</head>
<body class="min-h-screen">
<!-- Scanning Header -->
<div class="scanning-header">
<div class="scanning-bar"></div>
<div class="text-center z-10">
<h2 class="text-xl md:text-2xl font-bold text-white">YourImageSearch.com - Scanning the Internet for Your Images</h2>
<p class="text-blue-300 text-sm">Protecting your digital identity 24/7</p>
</div>
</div>
<!-- Navigation -->
<nav class="gradient-bg border-b border-gray-800 py-4 px-6">
<div class="max-w-7xl mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<div class="w-10 h-10 bg-blue-500 rounded-full flex items-center justify-center">
<i class="fas fa-search text-white text-xl"></i>
</div>
<span class="text-2xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-blue-600">YourImageSearch.com</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#features" class="text-gray-300 hover:text-white transition">Features</a>
<a href="#how-it-works" class="text-gray-300 hover:text-white transition">How It Works</a>
<a href="#pricing" class="text-gray-300 hover:text-white transition">Pricing</a>
<a href="#blog" class="text-gray-300 hover:text-white transition">Blog</a>
<a href="#contact" class="text-gray-300 hover:text-white transition">Contact</a>
</div>
<div class="flex items-center space-x-4">
<button class="px-4 py-2 rounded-full bg-blue-600 hover:bg-blue-700 text-white font-medium transition">
Sign In
</button>
<button class="md:hidden text-gray-300">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="gradient-bg py-20 px-6">
<div class="max-w-7xl mx-auto grid md:grid-cols-2 gap-12 items-center">
<div>
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">
Take Back Control of Your <span class="bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-blue-600">Digital Identity</span>
</h1>
<p class="text-xl text-gray-300 mb-8">
Our advanced biometric search scans the entire internet to find images of you, helping you identify and remove non-consensual content with our free DMCA takedown service.
</p>
<div class="flex flex-col sm:flex-row gap-4">
<button id="start-sscan-btn" class="px-8 py-4 rounded-full bg-blue-600 hover:bg-blue-700 text-white font-bold text-lg transition flex items-center justify-center">
<i class="fas fa-search mr-2"></i> Start Your Search - $9.99
</button>
<button class="px-8 py-4 rounded-full bg-gray-800 hover:bg-gray-700 text-white font-bold text-lg transition">
Learn More
</button>
</div>
<div class="mt-8 flex items-center space-x-4">
<div class="flex -space-x-2">
<img src="https://randomuser.me/api/portraits/women/12.jpg" class="w-10 h-10 rounded-full border-2 border-gray-800">
<img src="https://randomuser.me/api/portraits/women/24.jpg" class="w-10 h-10 rounded-full border-2 border-gray-800">
<img src="https://randomuser.me/api/portraits/women/33.jpg" class="w-10 h-10 rounded-full border-2 border-gray-800">
</div>
<div>
<p class="text-sm text-gray-300">Trusted by <span class="font-bold text-white">5,000+</span> users</p>
<div class="flex items-center">
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<i class="fas fa-star text-yellow-400 mr-1"></i>
<span class="text-sm ml-1">4.9/5</span>
</div>
</div>
</div>
</div>
<div class="scan-animation rounded-xl overflow-hidden shadow-2xl">
<div class="bg-gray-900 p-6">
<div class="flex justify-between items-center mb-4">
<div class="flex space-x-2">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<div class="text-sm text-gray-400">YourImageSearch Scan v2.4</div>
</div>
<div class="bg-black p-4 rounded-lg">
<div class="text-green-400 font-mono text-sm mb-2">> Initializing biometric search...</div>
<div class="text-green-400 font-mono text-sm mb-2">> Connecting to secure database...</div>
<div class="text-green-400 font-mono text-sm mb-2">> Searching 12.7M+ indexed images...</div>
<div class="text-blue-400 font-mono text-sm mb-2">> Analyzing facial recognition patterns...</div>
<div class="text-green-400 font-mono text-sm">> Preparing results visualization...</div>
</div>
<div class="mt-4 grid grid-cols-3 gap-2">
<div class="bg-gray-800 rounded p-2 text-center">
<div class="text-xs text-gray-400">Social Media</div>
<div class="text-blue-400 font-bold">87%</div>
</div>
<div class="bg-gray-800 rounded p-2 text-center">
<div class="text-xs text-gray-400">Dating Sites</div>
<div class="text-blue-400 font-bold">63%</div>
</div>
<div class="bg-gray-800 rounded p-2 text-center">
<div class="text-xs text-gray-400">Forums</div>
<div class="text-blue-400 font-bold">42%</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Take Back Control Ad Section -->
<section class="py-16 px-6 bg-gray-900">
<div class="max-w-7xl mx-auto">
<div class="flex flex-col md:flex-row items-center gap-12">
<div class="md:w-1/2">
<img src="https://i.postimg.cc/Z0tPNRK4/yourimagesaerch-take-back-control-image.png" alt="Take Back Control" class="w-full h-auto ad-image">
</div>
<div class="md:w-1/2">
<h2 class="text-3xl font-bold mb-6">Reclaim Your Online Presence</h2>
<p class="text-gray-400 mb-6">
Every day, thousands of people discover their images being used without consent across the internet.
Our powerful search technology helps you find where your images appear online and gives you the tools
to take them down permanently.
</p>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-6 h-6 rounded-full bg-blue-600 flex items-center justify-center">
<i class="fas fa-check text-white text-xs"></i>
</div>
</div>
<span class="ml-3 text-gray-300">Comprehensive deep web search</span>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-6 h-6 rounded-full bg-blue-600 flex items-center justify-center">
<i class="fas fa-check text-white text-xs"></i>
</div>
</div>
<span class="ml-3 text-gray-300">Free DMCA takedown service</span>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-6 h-6 rounded-full bg-blue-600 flex items-center justify-center">
<i class="fas fa-check text-white text-xs"></i>
</div>
</div>
<span class="ml-3 text-gray-300">24/7 monitoring for new appearances</span>
</li>
</ul>
<button class="px-8 py-3 bg-blue-600 hover:bg-blue-700 rounded-full font-bold">
Start Protecting Your Images Today
</button>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 px-6 bg-gray-800">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Protect Your Digital Footprint</h2>
<p class="text-xl text-gray-400 max-w-3xl mx-auto">
Our comprehensive suite of tools helps you monitor and control how your image appears online.
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-gray-900 rounded-xl p-8 hover:bg-gray-700 transition">
<div class="w-16 h-16 bg-blue-900 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-search text-blue-400 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Deep Web Search</h3>
<p class="text-gray-400">
Our proprietary algorithm searches through millions of images across social media, dating sites, forums, and more to find matches of your face.
</p>
</div>
<div class="bg-gray-900 rounded-xl p-8 hover:bg-gray-700 transition">
<div class="w-16 h-16 bg-blue-900 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-gavel text-blue-400 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">DMCA Takedowns</h3>
<p class="text-gray-400">
We handle the entire legal process of removing non-consensual images at no additional cost to you.
</p>
</div>
<div class="bg-gray-900 rounded-xl p-8 hover:bg-gray-700 transition">
<div class="w-16 h-16 bg-blue-900 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-shield-alt text-blue-400 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Ongoing Protection</h3>
<p class="text-gray-400">
Our subscription service continuously monitors for new appearances of your image and alerts you immediately.
</p>
</div>
</div>
</div>
</section>
<!-- DMCA Takedown Section -->
<section class="py-16 px-6 bg-gray-900">
<div class="max-w-7xl mx-auto">
<div class="flex flex-col md:flex-row items-center gap-12">
<div class="md:w-1/2">
<h2 class="text-3xl font-bold mb-6">Free DMCA Takedown Service</h2>
<p class="text-gray-400 mb-6">
When we find unauthorized use of your images, we handle the entire DMCA takedown process for you at no cost.
Our legal team drafts and submits all necessary documentation to have your images removed from websites, social
media platforms, and search engine results.
</p>
<div class="bg-gray-800 rounded-lg p-6 mb-6">
<h3 class="text-xl font-bold mb-3 text-blue-400">How Our DMCA Process Works:</h3>
<ol class="list-decimal list-inside space-y-2 text-gray-300">
<li>We identify unauthorized use of your images</li>
<li>Our legal team prepares the takedown notice</li>
<li>We submit to the website and their hosting provider</li>
<li>We follow up until content is removed</li>
<li>We monitor to prevent reposting</li>
</ol>
</div>
<button class="px-8 py-3 bg-blue-600 hover:bg-blue-700 rounded-full font-bold">
Learn More About DMCA
</button>
</div>
<div class="md:w-1/2">
<img src="https://i.postimg.cc/tgCcJrMD/youriagesearch-com-landing-page-ideas.png" alt="DMCA Takedown Process" class="w-full h-auto ad-image">
</div>
</div>
</div>
</section>
<!-- How It Works Section -->
<section id="how-it-works" class="py-20 px-6 bg-gray-800">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">How YourImageSearch Works</h2>
<p class="text-xl text-gray-400 max-w-3xl mx-auto">
A simple three-step process to reclaim your digital privacy.
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="relative">
<div class="w-12 h-12 bg-blue-600 rounded-full flex items-center justify-center text-white font-bold mb-4">
1
</div>
<h3 class="text-xl font-bold mb-3">Upload Your Photo</h3>
<p class="text-gray-400">
Use our secure selfie capture tool or upload a clear photo of yourself. We'll verify your identity with a government-issued ID.
</p>
<div class="absolute top-0 right-0 text-gray-600 text-6xl font-bold -z-10">01</div>
</div>
<div class="relative">
<div class="w-12 h-12 bg-blue-600 rounded-full flex items-center justify-center text-white font-bold mb-4">
2
</div>
<h3 class="text-xl font-bold mb-3">Deep Biometric Search</h3>
<p class="text-gray-400">
Our system scans the entire internet using advanced facial recognition to find all images matching your biometric profile.
</p>
<div class="absolute top-0 right-0 text-gray-600 text-6xl font-bold -z-10">02</div>
</div>
<div class="relative">
<div class="w-12 h-12 bg-blue-600 rounded-full flex items-center justify-center text-white font-bold mb-4">
3
</div>
<h3 class="text-xl font-bold mb-3">Review & Take Action</h3>
<p class="text-gray-400">
View all matches and request takedowns with one click. We handle all legal communications with platforms.
</p>
<div class="absolute top-0 right-0 text-gray-600 text-6xl font-bold -z-10">03</div>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-20 px-6 bg-gray-900">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Simple, Transparent Pricing</h2>
<p class="text-xl text-gray-400 max-w-3xl mx-auto">
Choose the protection plan that works for you. Cancel anytime.
</p>
</div>
<div class="grid md:grid-cols-2 gap-8 max-w-4xl mx-auto">
<div class="bg-gray-800 rounded-xl p-8 border-2 border-gray-700">
<h3 class="text-2xl font-bold mb-4">One-Time Search</h3>
<div class="mb-6">
<span class="text-4xl font-bold">$9.99</span>
<span class="text-gray-400">/ one time</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Deep internet search for your images</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Detailed report of all matches</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Free DMCA takedown requests</span>
</li>
<li class="flex items-center text-gray-500">
<i class="fas fa-times text-red-500 mr-2"></i>
<span>Ongoing monitoring</span>
</li>
<li class="flex items-center text-gray-500">
<i class="fas fa-times text-red-500 mr-2"></i>
<span>Alerts for new matches</span>
</li>
</ul>
<button class="w-full py-3 bg-gray-700 hover:bg-gray-600 rounded-lg font-bold">
Get Started
</button>
</div>
<div class="bg-gray-800 rounded-xl p-8 border-2 border-blue-600 relative">
<div class="absolute top-0 right-0 bg-blue-600 text-white text-xs font-bold px-3 py-1 rounded-bl-lg rounded-tr-lg">
MOST POPULAR
</div>
<h3 class="text-2xl font-bold mb-4">Annual Protection</h3>
<div class="mb-6">
<span class="text-4xl font-bold">$48</span>
<span class="text-gray-400">/ year</span>
<div class="text-sm text-gray-400">($4/month, billed annually)</div>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Everything in One-Time Search</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Continuous monthly monitoring</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Immediate alerts for new matches</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Priority takedown processing</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>24/7 support</span>
</li>
</ul>
<button class="w-full py-3 bg-blue-600 hover:bg-blue-700 rounded-lg font-bold">
Subscribe Now
</button>
</div>
</div>
</div>
</section>
<!-- Blog Section -->
<section id="blog" class="py-20 px-6 bg-gray-800">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Latest Updates</h2>
<p class="text-xl text-gray-400 max-w-3xl mx-auto">
Stay informed about digital privacy and our latest features.
</p>
</div>
<div class="grid md:grid-cols-2 gap-8 mb-16">
<div class="bg-gray-900 rounded-xl overflow-hidden">
<div class="aspect-w-16 aspect-h-9">
<iframe width="100%" height="315" src="https://www.youtube.com/embed/auX3M7UX40U?si=24kFMB1UJBab35Jo" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe
</html> |