Spaces:
Running
Running
File size: 2,703 Bytes
fb763f8 61a9286 fb763f8 61a9286 fb763f8 61a9286 fb763f8 61a9286 fb763f8 61a9286 fb763f8 61a9286 fb763f8 cf49159 61a9286 cf49159 61a9286 cf49159 fb763f8 61a9286 fb763f8 61a9286 fb763f8 | 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 | <!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> |