civitai-explorer / gallery.html
00Boobs00's picture
**Elevating Our Competitive Edge Through Continuous Innovation and User-Centric Solutions**
99eb86d verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gallery - Flux Fusion Studio</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: '#10B981',
secondary: '#F97316'
}
}
}
}
</script>
</head>
<body class="bg-gray-900 text-white">
<flux-header></flux-header>
<main class="container mx-auto px-4 py-8">
<div class="flex justify-between items-center mb-8">
<h1 class="text-3xl font-bold">Community Gallery</h1>
<div class="flex space-x-2">
<button class="bg-gray-800 hover:bg-gray-700 px-4 py-2 rounded-lg flex items-center">
<i data-feather="filter" class="w-4 h-4 mr-2"></i>
Filter
</button>
<button class="bg-primary hover:bg-green-600 px-4 py-2 rounded-lg flex items-center">
<i data-feather="upload" class="w-4 h-4 mr-2"></i>
Upload
</button>
</div>
</div>
<!-- Gallery Grid -->
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
<!-- Gallery Item 1 -->
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition group">
<div class="aspect-square bg-gradient-to-br from-purple-900 to-blue-800 relative">
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-30 transition flex items-center justify-center opacity-0 group-hover:opacity-100">
<button class="bg-white text-gray-900 px-4 py-2 rounded-lg font-medium flex items-center">
<i data-feather="eye" class="w-4 h-4 mr-1"></i>
View
</button>
</div>
</div>
<div class="p-4">
<h3 class="font-bold mb-1">Cosmic Dreamscape</h3>
<div class="flex justify-between text-sm text-gray-400">
<span>by Alex J.</span>
<div class="flex items-center">
<i data-feather="heart" class="w-4 h-4 mr-1"></i>
<span>142</span>
</div>
</div>
</div>
</div>
<!-- Gallery Item 2 -->
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition group">
<div class="aspect-square bg-gradient-to-br from-pink-900 to-red-800 relative">
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-30 transition flex items-center justify-center opacity-0 group-hover:opacity-100">
<button class="bg-white text-gray-900 px-4 py-2 rounded-lg font-medium flex items-center">
<i data-feather="eye" class="w-4 h-4 mr-1"></i>
View
</button>
</div>
</div>
<div class="p-4">
<h3 class="font-bold mb-1">Urban Jungle</h3>
<div class="flex justify-between text-sm text-gray-400">
<span>by Sam R.</span>
<div class="flex items-center">
<i data-feather="heart" class="w-4 h-4 mr-1"></i>
<span>98</span>
</div>
</div>
</div>
</div>
<!-- Gallery Item 3 -->
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition group">
<div class="aspect-square bg-gradient-to-br from-yellow-900 to-orange-800 relative">
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-30 transition flex items-center justify-center opacity-0 group-hover:opacity-100">
<button class="bg-white text-gray-900 px-4 py-2 rounded-lg font-medium flex items-center">
<i data-feather="eye" class="w-4 h-4 mr-1"></i>
View
</button>
</div>
</div>
<div class="p-4">
<h3 class="font-bold mb-1">Golden Hour Portrait</h3>
<div class="flex justify-between text-sm text-gray-400">
<span>by Jordan K.</span>
<div class="flex items-center">
<i data-feather="heart" class="w-4 h-4 mr-1"></i>
<span>256</span>
</div>
</div>
</div>
</div>
<!-- Gallery Item 4 -->
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition group">
<div class="aspect-square bg-gradient-to-br from-green-900 to-teal-800 relative">
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-30 transition flex items-center justify-center opacity-0 group-hover:opacity-100">
<button class="bg-white text-gray-900 px-4 py-2 rounded-lg font-medium flex items-center">
<i data-feather="eye" class="w-4 h-4 mr-1"></i>
View
</button>
</div>
</div>
<div class="p-4">
<h3 class="font-bold mb-1">Abstract Harmony</h3>
<div class="flex justify-between text-sm text-gray-400">
<span>by Taylor M.</span>
<div class="flex items-center">
<i data-feather="heart" class="w-4 h-4 mr-1"></i>
<span>76</span>
</div>
</div>
</div>
</div>
<!-- Gallery Item 5 -->
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition group">
<div class="aspect-square bg-gradient-to-br from-indigo-900 to-purple-800 relative">
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-30 transition flex items-center justify-center opacity-0 group-hover:opacity-100">
<button class="bg-white text-gray-900 px-4 py-2 rounded-lg font-medium flex items-center">
<i data-feather="eye" class="w-4 h-4 mr-1"></i>
View
</button>
</div>
</div>
<div class="p-4">
<h3 class="font-bold mb-1">Neon Reflections</h3>
<div class="flex justify-between text-sm text-gray-400">
<span>by Casey L.</span>
<div class="flex items-center">
<i data-feather="heart" class="w-4 h-4 mr-1"></i>
<span>189</span>
</div>
</div>
</div>
</div>
<!-- Gallery Item 6 -->
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition group">
<div class="aspect-square bg-gradient-to-br from-red-900 to-pink-800 relative">
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-30 transition flex items-center justify-center opacity-0 group-hover:opacity-100">
<button class="bg-white text-gray-900 px-4 py-2 rounded-lg font-medium flex items-center">
<i data-feather="eye" class="w-4 h-4 mr-1"></i>
View
</button>
</div>
</div>
<div class="p-4">
<h3 class="font-bold mb-1">Volcanic Eruption</h3>
<div class="flex justify-between text-sm text-gray-400">
<span>by Morgan D.</span>
<div class="flex items-center">
<i data-feather="heart" class="w-4 h-4 mr-1"></i>
<span>214</span>
</div>
</div>
</div>
</div>
<!-- Gallery Item 7 -->
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition group">
<div class="aspect-square bg-gradient-to-br from-blue-900 to-cyan-800 relative">
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-30 transition flex items-center justify-center opacity-0 group-hover:opacity-100">
<button class="bg-white text-gray-900 px-4 py-2 rounded-lg font-medium flex items-center">
<i data-feather="eye" class="w-4 h-4 mr-1"></i>
View
</button>
</div>
</div>
<div class="p-4">
<h3 class="font-bold mb-1">Ocean Depths</h3>
<div class="flex justify-between text-sm text-gray-400">
<span>by Riley P.</span>
<div class="flex items-center">
<i data-feather="heart" class="w-4 h-4 mr-1"></i>
<span>132</span>
</div>
</div>
</div>
</div>
<!-- Gallery Item 8 -->
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition group">
<div class="aspect-square bg-gradient-to-br from-emerald-900 to-green-800 relative">
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-30 transition flex items-center justify-center opacity-0 group-hover:opacity-100">
<button class="bg-white text-gray-900 px-4 py-2 rounded-lg font-medium flex items-center">
<i data-feather="eye" class="w-4 h-4 mr-1"></i>
View
</button>
</div>
</div>
<div class="p-4">
<h3 class="font-bold mb-1">Forest Cathedral</h3>
<div class="flex justify-between text-sm text-gray-400">
<span>by Quinn S.</span>
<div class="flex items-center">
<i data-feather="heart" class="w-4 h-4 mr-1"></i>
<span>167</span>
</div>
</div>
</div>
</div>
</div>
<!-- Load More Button -->
<div class="text-center mt-12">
<button class="bg-gray-800 hover:bg-gray-700 px-6 py-3 rounded-lg font-medium flex items-center mx-auto">
<i data-feather="refresh-cw" class="w-4 h-4 mr-2"></i>
Load More
</button>
</div>
</main>
<flux-footer></flux-footer>
<script src="components/header.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
</body>
</html>