Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>SnapFind - Organize Your Belongings</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, #6B73FF 0%, #000DFF 50%, #00D4FF 100%); | |
| } | |
| .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); | |
| } | |
| .feature-icon { | |
| width: 60px; | |
| height: 60px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| border-radius: 18px; | |
| } | |
| .search-input { | |
| transition: all 0.3s ease; | |
| } | |
| .search-input:focus { | |
| box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3); | |
| } | |
| </style> | |
| </head> | |
| <body class="font-sans antialiased bg-gray-50"> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-sm"> | |
| <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-camera-retro text-blue-600 text-2xl mr-2"></i> | |
| <span class="text-xl font-bold text-gray-900">SnapFind</span> | |
| </div> | |
| </div> | |
| <div class="hidden sm:ml-6 sm:flex sm:items-center space-x-8"> | |
| <a href="#" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Features</a> | |
| <a href="#pricing" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Pricing</a> | |
| <a href="#" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">About</a> | |
| <button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-150 ease-in-out"> | |
| Get Started | |
| </button> | |
| </div> | |
| <div class="-mr-2 flex items-center sm:hidden"> | |
| <button type="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 focus:ring-2 focus:ring-inset focus:ring-blue-500" aria-controls="mobile-menu" aria-expanded="false"> | |
| <span class="sr-only">Open main menu</span> | |
| <i class="fas fa-bars"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <div class="gradient-bg text-white"> | |
| <div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8"> | |
| <div class="text-center"> | |
| <h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl"> | |
| Never Lose Track of Your Belongings Again | |
| </h1> | |
| <p class="mt-6 max-w-2xl mx-auto text-xl opacity-90"> | |
| Easily catalog, organize, and find your physical items with AI-powered SnapFind. | |
| </p> | |
| <div class="mt-10 flex justify-center space-x-4"> | |
| <button class="bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-lg text-base font-semibold shadow-md transition duration-150 ease-in-out"> | |
| <i class="fas fa-play mr-2"></i> Watch Demo | |
| </button> | |
| <button class="bg-blue-800 hover:bg-blue-900 text-white px-6 py-3 rounded-lg text-base font-semibold shadow-md transition duration-150 ease-in-out"> | |
| <i class="fas fa-download mr-2"></i> Download App | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Search Section --> | |
| <div class="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8 -mt-10 relative z-10"> | |
| <div class="bg-white rounded-xl shadow-xl p-6"> | |
| <div class="flex"> | |
| <div class="relative flex-grow"> | |
| <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none"> | |
| <i class="fas fa-search text-gray-400"></i> | |
| </div> | |
| <input type="text" class="search-input block w-full pl-10 pr-12 py-4 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500" placeholder="Search your items..."> | |
| <div class="absolute inset-y-0 right-0 flex items-center pr-3"> | |
| <button class="p-1 rounded-full bg-blue-100 text-blue-600 hover:bg-blue-200 focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
| <i class="fas fa-camera"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-4 flex flex-wrap gap-2"> | |
| <span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-blue-100 text-blue-800"> | |
| <i class="fas fa-laptop mr-1"></i> Electronics | |
| </span> | |
| <span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-green-100 text-green-800"> | |
| <i class="fas fa-book mr-1"></i> Documents | |
| </span> | |
| <span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-purple-100 text-purple-800"> | |
| <i class="fas fa-tshirt mr-1"></i> Clothing | |
| </span> | |
| <span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-yellow-100 text-yellow-800"> | |
| <i class="fas fa-key mr-1"></i> Keys | |
| </span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Features Section --> | |
| <div id="features" class="py-16 bg-white"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Features</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
| How SnapFind Works | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> | |
| A smarter way to keep track of everything you own | |
| </p> | |
| </div> | |
| <div class="mt-20"> | |
| <div class="grid grid-cols-1 gap-12 md:grid-cols-2 lg:grid-cols-2"> | |
| <!-- Add Items Feature --> | |
| <div class="bg-gray-50 p-8 rounded-xl card-hover transition duration-300 ease-in-out"> | |
| <div class="feature-icon bg-blue-100 text-blue-600 mb-6"> | |
| <i class="fas fa-plus text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-gray-900 mb-3">Add Your Items</h3> | |
| <p class="text-gray-600 mb-4"> | |
| Click the button below to get started. Snap a photo, add a description and location. AI can even suggest descriptions and tags for you! | |
| </p> | |
| <button class="mt-4 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500"> | |
| <i class="fas fa-plus mr-2"></i> Add Item | |
| </button> | |
| </div> | |
| <!-- Find Items Feature --> | |
| <div class="bg-gray-50 p-8 rounded-xl card-hover transition duration-300 ease-in-out"> | |
| <div class="feature-icon bg-green-100 text-green-600 mb-6"> | |
| <i class="fas fa-search text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-gray-900 mb-3">Find Them Easily</h3> | |
| <p class="text-gray-600 mb-4"> | |
| Once you've added items, use the button to search by text or even by uploading an image. Our AI will help locate your items instantly. | |
| </p> | |
| <button class="mt-4 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-green-600 hover:bg-green-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-green-500"> | |
| <i class="fas fa-search mr-2"></i> Search Items | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Pricing Section --> | |
| <div id="pricing" class="py-16 bg-gray-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Pricing</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
| Simple, transparent pricing | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> | |
| Choose the plan that works best for you | |
| </p> | |
| </div> | |
| <div class="mt-12 space-y-4 sm:mt-16 sm:space-y-0 sm:grid sm:grid-cols-2 sm:gap-6 lg:max-w-4xl lg:mx-auto"> | |
| <!-- Noob Plan --> | |
| <div class="border border-gray-200 rounded-lg shadow-sm divide-y divide-gray-200"> | |
| <div class="p-6"> | |
| <h3 class="text-lg leading-6 font-medium text-gray-900">Noob</h3> | |
| <p class="mt-4 text-sm text-gray-500"> | |
| Perfect for personal use with basic needs | |
| </p> | |
| <p class="mt-8"> | |
| <span class="text-4xl font-extrabold text-gray-900">Free</span> | |
| </p> | |
| <button class="mt-8 block w-full bg-gray-800 border border-gray-800 rounded-md py-2 text-sm font-semibold text-white text-center hover:bg-gray-900"> | |
| Get started | |
| </button> | |
| </div> | |
| <div class="pt-6 pb-8 px-6"> | |
| <h4 class="text-xs font-medium text-gray-900 tracking-wide uppercase">What's included</h4> | |
| <ul class="mt-6 space-y-4"> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 h-5 w-5 text-green-500"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| <p class="ml-3 text-sm text-gray-700">Safe local storage</p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 h-5 w-5 text-green-500"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| <p class="ml-3 text-sm text-gray-700">Backup & import features</p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 h-5 w-5 text-green-500"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| <p class="ml-3 text-sm text-gray-700">Forever free</p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 h-5 w-5 text-green-500"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| <p class="ml-3 text-sm text-gray-700">Import/export for backups</p> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| <!-- Hipster Plan --> | |
| <div class="border border-gray-200 rounded-lg shadow-sm divide-y divide-gray-200"> | |
| <div class="p-6"> | |
| <h3 class="text-lg leading-6 font-medium text-gray-900">Hipster</h3> | |
| <p class="mt-4 text-sm text-gray-500"> | |
| Advanced features for power users | |
| </p> | |
| <p class="mt-8"> | |
| <span class="text-4xl font-extrabold text-gray-900">$9</span> | |
| <span class="text-base font-medium text-gray-500">/month</span> | |
| </p> | |
| <button class="mt-8 block w-full bg-blue-600 border border-blue-600 rounded-md py-2 text-sm font-semibold text-white text-center hover:bg-blue-700"> | |
| Get started | |
| </button> | |
| </div> | |
| <div class="pt-6 pb-8 px-6"> | |
| <h4 class="text-xs font-medium text-gray-900 tracking-wide uppercase">What's included</h4> | |
| <ul class="mt-6 space-y-4"> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 h-5 w-5 text-green-500"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| <p class="ml-3 text-sm text-gray-700">Enhanced image recognition</p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 h-5 w-5 text-green-500"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| <p class="ml-3 text-sm text-gray-700">Cloud storage</p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 h-5 w-5 text-green-500"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| <p class="ml-3 text-sm text-gray-700">Group usage & sharing</p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0 h-5 w-5 text-green-500"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| <p class="ml-3 text-sm text-gray-700">All Noob features included</p> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Stats Section --> | |
| <div class="bg-gray-100 py-16"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="grid grid-cols-1 gap-8 md:grid-cols-3"> | |
| <div class="text-center bg-white p-8 rounded-xl shadow-sm"> | |
| <div class="text-4xl font-bold text-blue-600">10,000+</div> | |
| <div class="mt-2 text-lg font-medium text-gray-900">Items Cataloged</div> | |
| <div class="mt-1 text-gray-500">By our happy users</div> | |
| </div> | |
| <div class="text-center bg-white p-8 rounded-xl shadow-sm"> | |
| <div class="text-4xl font-bold text-green-600">98%</div> | |
| <div class="mt-2 text-lg font-medium text-gray-900">Search Accuracy</div> | |
| <div class="mt-1 text-gray-500">Find what you need instantly</div> | |
| </div> | |
| <div class="text-center bg-white p-8 rounded-xl shadow-sm"> | |
| <div class="text-4xl font-bold text-purple-600">24/7</div> | |
| <div class="mt-2 text-lg font-medium text-gray-900">Access Anywhere</div> | |
| <div class="mt-1 text-gray-500">Cloud sync across all devices</div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- CTA Section --> | |
| <div class="bg-blue-700"> | |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between"> | |
| <h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl"> | |
| <span class="block">Ready to get organized?</span> | |
| <span class="block text-blue-200">Start using SnapFind today.</span> | |
| </h2> | |
| <div class="mt-8 flex lg:mt-0 lg:flex-shrink-0"> | |
| <div class="inline-flex rounded-md shadow"> | |
| <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-blue-600 bg-white hover:bg-blue-50"> | |
| <i class="fas fa-user-plus mr-2"></i> Sign up for free | |
| </a> | |
| </div> | |
| <div class="ml-3 inline-flex rounded-md shadow"> | |
| <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-800 hover:bg-blue-900"> | |
| <i class="fas fa-info-circle mr-2"></i> Learn more | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Footer --> | |
| <footer class="bg-gray-800"> | |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8"> | |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8"> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Product</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Features</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Pricing</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">API</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Company</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">About</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Blog</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Jobs</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Legal</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Privacy</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Terms</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Cookie Policy</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Connect</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li class="flex"> | |
| <a href="#" class="text-gray-300 hover:text-white"> | |
| <i class="fab fa-facebook-f"></i> | |
| </a> | |
| <a href="#" class="ml-6 text-gray-300 hover:text-white"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="ml-6 text-gray-300 hover:text-white"> | |
| <i class="fab fa-instagram"></i> | |
| </a> | |
| </li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">support@snapfind.com</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">+1 (555) 123-4567</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="mt-12 border-t border-gray-700 pt-8"> | |
| <p class="text-base text-gray-400 text-center"> | |
| © 2023 SnapFind, Inc. All rights reserved. | |
| </p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Mobile menu toggle functionality | |
| document.addEventListener('DOMContentLoaded', function() { | |
| const mobileMenuButton = document.querySelector('[aria-controls="mobile-menu"]'); | |
| mobileMenuButton.addEventListener('click', function() { | |
| const expanded = this.getAttribute('aria-expanded') === 'true'; | |
| this.setAttribute('aria-expanded', !expanded); | |
| // Here you would toggle your mobile menu visibility | |
| console.log('Mobile menu toggled'); | |
| }); | |
| // Animation for feature cards on scroll | |
| const observerOptions = { | |
| threshold: 0.1 | |
| }; | |
| const observer = new IntersectionObserver((entries) => { | |
| entries.forEach(entry => { | |
| if (entry.isIntersecting) { | |
| entry.target.classList.add('animate-fadeInUp'); | |
| } | |
| }); | |
| }, observerOptions); | |
| document.querySelectorAll('.card-hover').forEach(card => { | |
| observer.observe(card); | |
| }); | |
| }); | |
| </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=acidsound/snapfind-front" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |