| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>PixelVault | Premium Micro Stock Assets</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"> |
| <script> |
| tailwind.config = { |
| theme: { |
| extend: { |
| colors: { |
| dark: '#0a0a0a', |
| darkCard: '#1a1a1a', |
| accent: '#808080', |
| accentHover: '#666666', |
| } |
| } |
| } |
| } |
| </script> |
| <style> |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); |
| |
| body { |
| font-family: 'Inter', sans-serif; |
| background-color: #0f0f12; |
| color: #e2e8f0; |
| overflow-x: hidden; |
| } |
| |
| .card-hover { |
| transition: transform 0.3s ease, box-shadow 0.3s ease; |
| } |
| |
| .card-hover:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2); |
| } |
| |
| .image-container { |
| position: relative; |
| overflow: hidden; |
| border-radius: 12px; |
| } |
| |
| .image-overlay { |
| position: absolute; |
| bottom: 0; |
| left: 0; |
| right: 0; |
| background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)); |
| padding: 20px; |
| opacity: 0; |
| transition: opacity 0.3s ease; |
| } |
| |
| .image-container:hover .image-overlay { |
| opacity: 1; |
| } |
| |
| .masonry-grid { |
| column-count: 4; |
| column-gap: 1rem; |
| } |
| |
| @media (max-width: 1024px) { |
| .masonry-grid { |
| column-count: 3; |
| } |
| } |
| |
| @media (max-width: 768px) { |
| .masonry-grid { |
| column-count: 2; |
| } |
| } |
| |
| @media (max-width: 640px) { |
| .masonry-grid { |
| column-count: 1; |
| } |
| } |
| |
| .grid-item { |
| break-inside: avoid; |
| margin-bottom: 1rem; |
| } |
| |
| .gradient-border { |
| position: relative; |
| border-radius: 12px; |
| } |
| |
| .gradient-border::before { |
| content: ''; |
| position: absolute; |
| top: 0; |
| left: 0; |
| right: 0; |
| bottom: 0; |
| border-radius: 12px; |
| padding: 1px; |
| background: linear-gradient(45deg, #808080, #666666); |
| -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); |
| mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); |
| -webkit-mask-composite: xor; |
| mask-composite: exclude; |
| } |
| |
| .search-box { |
| background: rgba(26, 27, 31, 0.7); |
| backdrop-filter: blur(10px); |
| border: 1px solid rgba(255, 255, 255, 0.1); |
| } |
| |
| .nav-link { |
| position: relative; |
| padding-bottom: 4px; |
| } |
| |
| .nav-link::after { |
| content: ''; |
| position: absolute; |
| bottom: 0; |
| left: 0; |
| width: 0; |
| height: 2px; |
| background: linear-gradient(90deg, #8b5cf6, #6366f1); |
| transition: width 0.3s ease; |
| } |
| |
| .nav-link:hover::after { |
| width: 100%; |
| } |
| |
| .btn-accent { |
| background: linear-gradient(45deg, #8b5cf6, #6366f1); |
| transition: all 0.3s ease; |
| } |
| |
| .btn-accent:hover { |
| transform: translateY(-2px); |
| box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.3); |
| } |
| |
| .tag { |
| background: rgba(139, 92, 246, 0.15); |
| transition: all 0.2s ease; |
| } |
| |
| .tag:hover { |
| background: rgba(139, 92, 246, 0.3); |
| transform: translateY(-1px); |
| } |
| |
| .fade-in { |
| animation: fadeIn 0.5s ease-in; |
| } |
| |
| @keyframes fadeIn { |
| from { opacity: 0; transform: translateY(10px); } |
| to { opacity: 1; transform: translateY(0); } |
| } |
| |
| .floating { |
| animation: floating 3s ease-in-out infinite; |
| } |
| |
| @keyframes floating { |
| 0% { transform: translateY(0px); } |
| 50% { transform: translateY(-10px); } |
| 100% { transform: translateY(0px); } |
| } |
| </style> |
| </head> |
| <body class="bg-dark"> |
| |
| <header class="sticky top-0 z-50 bg-dark/90 backdrop-blur-md border-b border-gray-800"> |
| <div class="container mx-auto px-4 py-3 flex items-center justify-between"> |
| |
| <div class="flex items-center space-x-2"> |
| <div class="w-10 h-10 rounded-lg bg-gradient-to-br from-accent to-indigo-500 flex items-center justify-center"> |
| <i class="fas fa-cube text-white text-xl"></i> |
| </div> |
| <h1 class="text-2xl font-bold bg-gradient-to-r from-accent to-indigo-500 bg-clip-text text-transparent">PixelVault</h1> |
| </div> |
| |
| |
| <div class="flex-1 mx-8 max-w-2xl"> |
| <div class="search-box rounded-full px-4 py-2 flex items-center"> |
| <i class="fas fa-search text-gray-400 mr-2"></i> |
| <input type="text" placeholder="Search for photos, vectors, videos..." class="w-full bg-transparent border-none focus:outline-none text-gray-200 placeholder-gray-500"> |
| </div> |
| </div> |
| |
| |
| <nav class="hidden md:flex items-center space-x-8"> |
| <a href="#" class="nav-link text-gray-300 hover:text-white">Explore</a> |
| <a href="#" class="nav-link text-gray-300 hover:text-white">Collections</a> |
| <a href="#" class="nav-link text-gray-300 hover:text-white">Premium</a> |
| <a href="#" class="nav-link text-gray-300 hover:text-white">Pricing</a> |
| </nav> |
| |
| |
| <div class="flex items-center space-x-4"> |
| <button class="text-gray-400 hover:text-white"> |
| <i class="fas fa-heart text-xl"></i> |
| </button> |
| <button class="text-gray-400 hover:text-white"> |
| <i class="fas fa-shopping-cart text-xl"></i> |
| </button> |
| <button class="bg-gray-800 text-gray-300 hover:bg-gray-700 rounded-full w-10 h-10 flex items-center justify-center"> |
| <i class="fas fa-user"></i> |
| </button> |
| </div> |
| </div> |
| </header> |
| |
| |
| <section class="py-16 px-4"> |
| <div class="container mx-auto max-w-6xl flex flex-col md:flex-row items-center"> |
| <div class="md:w-1/2 mb-12 md:mb-0"> |
| <h1 class="text-4xl md:text-5xl font-bold mb-6">Discover premium digital assets for creators</h1> |
| <p class="text-gray-400 mb-8 text-lg">Thousands of curated photos, vectors, and videos at your fingertips. Minimalist design meets premium content.</p> |
| <div class="flex flex-wrap gap-4"> |
| <button class="btn-accent px-8 py-3 rounded-full text-white font-medium">Explore Assets</button> |
| <button class="border border-gray-700 px-8 py-3 rounded-full text-gray-300 hover:bg-gray-800 transition">Become Contributor</button> |
| </div> |
| <div class="mt-10 flex flex-wrap gap-3"> |
| <span class="tag px-4 py-2 rounded-full text-sm">Photography</span> |
| <span class="tag px-4 py-2 rounded-full text-sm">Vector Art</span> |
| <span class="tag px-4 py-2 rounded-full text-sm">Video Clips</span> |
| <span class="tag px-4 py-2 rounded-full text-sm">3D Renders</span> |
| </div> |
| </div> |
| <div class="md:w-1/2 flex justify-center"> |
| <div class="relative"> |
| <div class="gradient-border w-64 h-64 rounded-xl overflow-hidden floating" style="animation-delay: 0.2s;"> |
| <img src="https://picsum.photos/600/600?grayscale" alt="Nature" class="w-full h-full object-cover"> |
| </div> |
| <div class="gradient-border w-64 h-64 rounded-xl overflow-hidden absolute top-10 left-10 floating" style="animation-delay: 0.4s;"> |
| <img src="https://picsum.photos/600/600?grayscale" alt="Landscape" class="w-full h-full object-cover"> |
| </div> |
| <div class="gradient-border w-64 h-64 rounded-xl overflow-hidden absolute top-20 left-20 floating" style="animation-delay: 0.6s;"> |
| <img src="https://picsum.photos/600/600?grayscale" alt="Mountain" class="w-full h-full object-cover"> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
| |
| |
| <section class="py-12 px-4"> |
| <div class="container mx-auto max-w-6xl"> |
| <div class="flex justify-between items-center mb-8"> |
| <h2 class="text-3xl font-bold">Featured Collections</h2> |
| <a href="#" class="text-accent hover:text-accentHover flex items-center"> |
| View all |
| <i class="fas fa-arrow-right ml-2"></i> |
| </a> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6"> |
| |
| <div class="bg-darkCard rounded-xl overflow-hidden card-hover"> |
| <div class="image-container"> |
| <img src="https://picsum.photos/600/400?grayscale" alt="Collection" class="w-full h-48 object-cover"> |
| <div class="image-overlay"> |
| <h3 class="font-bold text-white">Minimal Landscapes</h3> |
| <p class="text-gray-300 text-sm">245 assets</p> |
| </div> |
| </div> |
| <div class="p-4"> |
| <div class="flex justify-between items-center"> |
| <div class="flex items-center"> |
| <div class="w-8 h-8 rounded-full overflow-hidden mr-2"> |
| <img src="https://randomuser.me/api/portraits/women/12.jpg" alt="Creator" class="w-full h-full object-cover"> |
| </div> |
| <span class="text-sm">Emma Wilson</span> |
| </div> |
| <button class="text-gray-400 hover:text-white"> |
| <i class="far fa-heart"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="bg-darkCard rounded-xl overflow-hidden card-hover"> |
| <div class="image-container"> |
| <img src="https://picsum.photos/600/400?grayscale" alt="Collection" class="w-full h-48 object-cover"> |
| <div class="image-overlay"> |
| <h3 class="font-bold text-white">Urban Architecture</h3> |
| <p class="text-gray-300 text-sm">187 assets</p> |
| </div> |
| </div> |
| <div class="p-4"> |
| <div class="flex justify-between items-center"> |
| <div class="flex items-center"> |
| <div class="w-8 h-8 rounded-full overflow-hidden mr-2"> |
| <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Creator" class="w-full h-full object-cover"> |
| </div> |
| <span class="text-sm">James Carter</span> |
| </div> |
| <button class="text-gray-400 hover:text-white"> |
| <i class="far fa-heart"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="bg-darkCard rounded-xl overflow-hidden card-hover"> |
| <div class="image-container"> |
| <img src="https://picsum.photos/600/400?grayscale" alt="Collection" class="w-full h-48 object-cover"> |
| <div class="image-overlay"> |
| <h3 class="font-bold text-white">Abstract Textures</h3> |
| <p class="text-gray-300 text-sm">312 assets</p> |
| </div> |
| </div> |
| <div class="p-4"> |
| <div class="flex justify-between items-center"> |
| <div class="flex items-center"> |
| <div class="w-8 h-8 rounded-full overflow-hidden mr-2"> |
| <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Creator" class="w-full h-full object-cover"> |
| </div> |
| <span class="text-sm">Sophia Lee</span> |
| </div> |
| <button class="text-gray-400 hover:text-white"> |
| <i class="far fa-heart"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="bg-darkCard rounded-xl overflow-hidden card-hover"> |
| <div class="image-container"> |
| <img src="https://picsum.photos/600/400?grayscale" alt="Collection" class="w-full h-48 object-cover"> |
| <div class="image-overlay"> |
| <h3 class="font-bold text-white">Food & Beverage</h3> |
| <p class="text-gray-300 text-sm">156 assets</p> |
| </div> |
| </div> |
| <div class="p-4"> |
| <div class="flex justify-between items-center"> |
| <div class="flex items-center"> |
| <div class="w-8 h-8 rounded-full overflow-hidden mr-2"> |
| <img src="https://randomuser.me/api/portraits/men/22.jpg" alt="Creator" class="w-full h-full object-cover"> |
| </div> |
| <span class="text-sm">Michael Chen</span> |
| </div> |
| <button class="text-gray-400 hover:text-white"> |
| <i class="far fa-heart"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
| |
| |
| <section class="py-12 px-4"> |
| <div class="container mx-auto max-w-6xl"> |
| <h2 class="text-3xl font-bold mb-8">Trending Assets</h2> |
| |
| <div class="masonry-grid"> |
| |
| <div class="grid-item"> |
| <div class="bg-darkCard rounded-xl overflow-hidden mb-4 card-hover"> |
| <div class="image-container"> |
| <img src="https://picsum.photos/800/600?grayscale" alt="Asset" class="w-full"> |
| <div class="image-overlay"> |
| <div class="flex justify-between items-center"> |
| <div> |
| <h3 class="font-bold text-white">Mountain Peaks</h3> |
| <p class="text-gray-300 text-sm">by Alex Morgan</p> |
| </div> |
| <div class="flex space-x-3"> |
| <button class="bg-accent hover:bg-accentHover w-10 h-10 rounded-full flex items-center justify-center"> |
| <i class="fas fa-download text-white"></i> |
| </button> |
| <button class="bg-gray-800 hover:bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center"> |
| <i class="far fa-heart text-white"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="grid-item"> |
| <div class="bg-darkCard rounded-xl overflow-hidden mb-4 card-hover"> |
| <div class="image-container"> |
| <img src="https://picsum.photos/800/600?grayscale" alt="Asset" class="w-full"> |
| <div class="image-overlay"> |
| <div class="flex justify-between items-center"> |
| <div> |
| <h3 class="font-bold text-white">Desert Dunes</h3> |
| <p class="text-gray-300 text-sm">by Sarah Johnson</p> |
| </div> |
| <div class="flex space-x-3"> |
| <button class="bg-accent hover:bg-accentHover w-10 h-10 rounded-full flex items-center justify-center"> |
| <i class="fas fa-download text-white"></i> |
| </button> |
| <button class="bg-gray-800 hover:bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center"> |
| <i class="far fa-heart text-white"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="grid-item"> |
| <div class="bg-darkCard rounded-xl overflow-hidden mb-4 card-hover"> |
| <div class="image-container"> |
| <img src="https://picsum.photos/800/600?grayscale" alt="Asset" class="w-full"> |
| <div class="image-overlay"> |
| <div class="flex justify-between items-center"> |
| <div> |
| <h3 class="font-bold text-white">Ocean Waves</h3> |
| <p class="text-gray-300 text-sm">by David Kim</p> |
| </div> |
| <div class="flex space-x-3"> |
| <button class="bg-accent hover:bg-accentHover w-10 h-10 rounded-full flex items-center justify-center"> |
| <i class="fas fa-download text-white"></i> |
| </button> |
| <button class="bg-gray-800 hover:bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center"> |
| <i class="far fa-heart text-white"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="grid-item"> |
| <div class="bg-darkCard rounded-xl overflow-hidden mb-4 card-hover"> |
| <div class="image-container"> |
| <img src="https://picsum.photos/800/600?grayscale" alt="Asset" class="w-full"> |
| <div class="image-overlay"> |
| <div class="flex justify-between items-center"> |
| <div> |
| <h3 class="font-bold text-white">Forest Pathway</h3> |
| <p class="text-gray-300 text-sm">by Maria Garcia</p> |
| </div> |
| <div class="flex space-x-3"> |
| <button class="bg-accent hover:bg-accentHover w-10 h-10 rounded-full flex items-center justify-center"> |
| <i class="fas fa-download text-white"></i> |
| </button> |
| <button class="bg-gray-800 hover:bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center"> |
| <i class="far fa-heart text-white"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="grid-item"> |
| <div class="bg-darkCard rounded-xl overflow-hidden mb-4 card-hover"> |
| <div class="image-container"> |
| <img src="https://picsum.photos/800/600?grayscale" alt="Asset" class="w-full"> |
| <div class="image-overlay"> |
| <div class="flex justify-between items-center"> |
| <div> |
| <h3 class="font-bold text-white">Mountain Lake</h3> |
| <p class="text-gray-300 text-sm">by Thomas Wright</p> |
| </div> |
| <div class="flex space-x-3"> |
| <button class="bg-accent hover:bg-accentHover w-10 h-10 rounded-full flex items-center justify-center"> |
| <i class="fas fa-download text-white"></i> |
| </button> |
| <button class="bg-gray-800 hover:bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center"> |
| <i class="far fa-heart text-white"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="grid-item"> |
| <div class="bg-darkCard rounded-xl overflow-hidden mb-4 card-hover"> |
| <div class="image-container"> |
| <img src="https://picsum.photos/800/600?grayscale" alt="Asset" class="w-full"> |
| <div class="image-overlay"> |
| <div class="flex justify-between items-center"> |
| <div> |
| <h3 class="font-bold text-white">Cliffside View</h3> |
| <p class="text-gray-300 text-sm">by Robert Davis</p> |
| </div> |
| <div class="flex space-x-3"> |
| <button class="bg-accent hover:bg-accentHover w-10 h-10 rounded-full flex items-center justify-center"> |
| <i class="fas fa-download text-white"></i> |
| </button> |
| <button class="bg-gray-800 hover:bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center"> |
| <i class="far fa-heart text-white"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="grid-item"> |
| <div class="bg-darkCard rounded-xl overflow-hidden mb-4 card-hover"> |
| <div class="image-container"> |
| <img src="https://picsum.photos/800/600?grayscale" alt="Asset" class="w-full"> |
| <div class="image-overlay"> |
| <div class="flex justify-between items-center"> |
| <div> |
| <h3 class="font-bold text-white">Colorful Sky</h3> |
| <p class="text-gray-300 text-sm">by Jennifer Lopez</p> |
| </div> |
| <div class="flex space-x-3"> |
| <button class="bg-accent hover:bg-accentHover w-10 h-10 rounded-full flex items-center justify-center"> |
| <i class="fas fa-download text-white"></i> |
| </button> |
| <button class="bg-gray-800 hover:bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center"> |
| <i class="far fa-heart text-white"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="grid-item"> |
| <div class="bg-darkCard rounded-xl overflow-hidden mb-4 card-hover"> |
| <div class="image-container"> |
| <img src="https://picsum.photos/800/600?grayscale" alt="Asset" class="w-full"> |
| <div class="image-overlay"> |
| <div class="flex justify-between items-center"> |
| <div> |
| <h3 class="font-bold text-white">Sunset Horizon</h3> |
| <p class="text-gray-300 text-sm">by Mark Taylor</p> |
| </div> |
| <div class="flex space-x-3"> |
| <button class="bg-accent hover:bg-accentHover w-10 h-10 rounded-full flex items-center justify-center"> |
| <i class="fas fa-download text-white"></i> |
| </button> |
| <button class="bg-gray-800 hover:bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center"> |
| <i class="far fa-heart text-white"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="text-center mt-10"> |
| <button class="border border-gray-700 px-8 py-3 rounded-full text-gray-300 hover:bg-gray-800 transition">Load More</button> |
| </div> |
| </div> |
| </section> |
| |
| |
| <section class="py-20 px-4"> |
| <div class="container mx-auto max-w-4xl text-center"> |
| <div class="bg-gradient-to-br from-darkCard to-gray-900 rounded-2xl p-12 relative overflow-hidden"> |
| <div class="absolute top-0 left-0 w-full h-full bg-gradient-to-br from-accent/10 to-indigo-500/10"></div> |
| <div class="relative z-10"> |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Join our community of creators</h2> |
| <p class="text-gray-400 mb-8 max-w-2xl mx-auto">Whether you're looking for assets or sharing your work, PixelVault is the platform for premium digital content.</p> |
| <div class="flex flex-wrap justify-center gap-4"> |
| <button class="btn-accent px-8 py-3 rounded-full text-white font-medium">Start Exploring</button> |
| <button class="border border-gray-700 px-8 py-3 rounded-full text-gray-300 hover:bg-gray-800 transition">Become Contributor</button> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
| |
| |
| <footer class="border-t border-gray-800 py-12 px-4"> |
| <div class="container mx-auto max-w-6xl"> |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> |
| <div> |
| <div class="flex items-center space-x-2 mb-4"> |
| <div class="w-8 h-8 rounded-lg bg-gradient-to-br from-accent to-indigo-500 flex items-center justify-center"> |
| <i class="fas fa-cube text-white"></i> |
| </div> |
| <h2 class="text-xl font-bold bg-gradient-to-r from-accent to-indigo-500 bg-clip-text text-transparent">PixelVault</h2> |
| </div> |
| <p class="text-gray-500 mb-4">Premium micro stock assets for designers, developers, and creators.</p> |
| <div class="flex space-x-4"> |
| <a href="#" class="text-gray-500 hover:text-white"> |
| <i class="fab fa-twitter"></i> |
| </a> |
| <a href="#" class="text-gray-500 hover:text-white"> |
| <i class="fab fa-instagram"></i> |
| </a> |
| <a href="#" class="text-gray-500 hover:text-white"> |
| <i class="fab fa-dribbble"></i> |
| </a> |
| <a href="#" class="text-gray-500 hover:text-white"> |
| <i class="fab fa-behance"></i> |
| </a> |
| </div> |
| </div> |
| |
| <div> |
| <h3 class="text-lg font-semibold mb-4">Company</h3> |
| <ul class="space-y-3"> |
| <li><a href="#" class="text-gray-500 hover:text-white">About Us</a></li> |
| <li><a href="#" class="text-gray-500 hover:text-white">Careers</a></li> |
| <li><a href="#" class="text-gray-500 hover:text-white">Blog</a></li> |
| <li><a href="#" class="text-gray-500 hover:text-white">Press</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h3 class="text-lg font-semibold mb-4">Resources</h3> |
| <ul class="space-y-3"> |
| <li><a href="#" class="text-gray-500 hover:text-white">Help Center</a></li> |
| <li><a href="#" class="text-gray-500 hover:text-white">Licensing</a></li> |
| <li><a href="#" class="text-gray-500 hover:text-white">API</a></li> |
| <li><a href="#" class="text-gray-500 hover:text-white">Contributors</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h3 class="text-lg font-semibold mb-4">Legal</h3> |
| <ul class="space-y-3"> |
| <li><a href="#" class="text-gray-500 hover:text-white">Terms of Service</a></li> |
| <li><a href="#" class="text-gray-500 hover:text-white">Privacy Policy</a></li> |
| <li><a href="#" class="text-gray-500 hover:text-white">Copyright</a></li> |
| <li><a href="#" class="text-gray-500 hover:text-white">Cookies</a></li> |
| </ul> |
| </div> |
| </div> |
| |
| <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500"> |
| <p>© 2023 PixelVault. All rights reserved.</p> |
| </div> |
| </div> |
| </footer> |
| |
| <script> |
| |
| document.addEventListener('DOMContentLoaded', function() { |
| const elements = document.querySelectorAll('.card-hover, .floating'); |
| |
| elements.forEach((el, index) => { |
| el.classList.add('fade-in'); |
| el.style.animationDelay = `${index * 0.1}s`; |
| }); |
| |
| |
| const masonryItems = document.querySelectorAll('.grid-item'); |
| masonryItems.forEach(item => { |
| item.addEventListener('mouseenter', () => { |
| item.querySelector('.image-overlay').style.opacity = '1'; |
| }); |
| |
| item.addEventListener('mouseleave', () => { |
| item.querySelector('.image-overlay').style.opacity = '0'; |
| }); |
| }); |
| }); |
| </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=block/pixels" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |