File size: 35,121 Bytes
a5f2d57 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 | <!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 -->
<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">
<!-- Logo -->
<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>
<!-- Search -->
<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>
<!-- Navigation -->
<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>
<!-- User Actions -->
<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>
<!-- Hero Section -->
<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>
<!-- Featured Collections -->
<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">
<!-- Collection Card 1 -->
<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>
<!-- Collection Card 2 -->
<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>
<!-- Collection Card 3 -->
<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>
<!-- Collection Card 4 -->
<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>
<!-- Masonry Gallery -->
<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">
<!-- Image 1 -->
<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>
<!-- Image 2 -->
<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>
<!-- Image 3 -->
<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>
<!-- Image 4 -->
<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>
<!-- Image 5 -->
<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>
<!-- Image 6 -->
<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>
<!-- Image 7 -->
<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>
<!-- Image 8 -->
<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>
<!-- CTA 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 -->
<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>
// Simple fade-in animation for elements
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`;
});
// Add hover effect to masonry items
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> |