mltxstudio / gallery.html
moreiraj93's picture
ADD
cf49159 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gallery - AI Showcase</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>
tailwind.config = {
theme: {
extend: {
colors: {
'accent-red': '#E53935',
'accent-green': '#00C853',
'accent-blue': '#1976D2',
'dark-bg': '#0a0a0a',
'card-bg': '#1a1a1a'
}
}
}
}
</script>
</head>
<body class="bg-dark-bg text-white min-h-screen">
<custom-navbar></custom-navbar>
<main class="pt-20 px-4">
<div class="max-w-7xl mx-auto">
<h1 class="text-4xl font-bold mb-8">AI Gallery</h1>
<!-- Filters -->
<div class="glass rounded-2xl p-6 mb-8">
<h2 class="text-xl font-semibold mb-4">Filters</h2>
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-4">
<select class="bg-card-bg border border-gray-600 rounded-xl px-3 py-2 text-white">
<option>All Media</option>
<option>Images</option>
<option>Videos</option>
</select>
<select class="bg-card-bg border border-gray-600 rounded-xl px-3 py-2 text-white">
<option>All Orientations</option>
<option>Landscape</option>
<option>Portrait</option>
</select>
<input type="text" placeholder="Search..." class="bg-card-bg border border-gray-600 rounded-xl px-3 py-2 text-white">
<input type="range" min="300" max="6300" class="w-full">
<button class="bg-accent-blue hover:bg-blue-600 text-white px-4 py-2 rounded-xl">
Apply
</button>
</div>
</div>
<!-- Gallery Grid -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6">
<!-- Gallery items will be loaded here -->
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
</body>
</html>