Spaces:
Running
Running
File size: 3,856 Bytes
fb763f8 61a9286 fb763f8 61a9286 fb763f8 61a9286 fb763f8 61a9286 fb763f8 61a9286 fb763f8 61a9286 fb763f8 61a9286 fb763f8 61a9286 fb763f8 61a9286 fb763f8 61a9286 fb763f8 61a9286 fb763f8 61a9286 fb763f8 61a9286 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Processors - 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 Processors</h1>
<!-- Processor Tabs -->
<div class="glass rounded-2xl p-6 mb-8">
<div class="flex gap-4 mb-6">
<button class="bg-accent-red text-white px-6 py-3 rounded-xl">
Image → Image
</button>
<button class="bg-accent-green text-white px-6 py-3 rounded-xl">
Image → Video
</button>
<button class="bg-accent-blue text-white px-6 py-3 rounded-xl">
Text → Image
</button>
<button class="bg-gray-600 text-white px-6 py-3 rounded-xl">
Prompt Processor
</button>
</div>
<!-- Image to Image Processor -->
<div class="processor-section">
<h3 class="text-2xl font-semibold mb-4">Transform Your Images</h3>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
<div class="upload-area border-2 border-dashed border-gray-600 rounded-2xl p-8 text-center cursor-pointer hover:border-accent-red transition-colors">
<p>Drag & drop your image here</p>
<p class="text-sm text-gray-400 mt-2">or click to browse</p>
</div>
<div class="controls">
<h4 class="font-semibold mb-2">Style Presets</h4>
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<button class="bg-card-bg hover:bg-accent-blue px-4 py-2 rounded-xl">
Realistic
</button>
<button class="bg-card-bg hover:bg-accent-blue px-4 py-2 rounded-xl">
Abstract
</button>
<button class="bg-card-bg hover:bg-accent-blue px-4 py-2 rounded-xl">
Fantasy
</button>
<button class="bg-card-bg hover:bg-accent-blue px-4 py-2 rounded-xl">
Cyberpunk
</button>
</div>
<button class="w-full bg-accent-green hover:bg-green-600 text-white py-3 rounded-xl font-semibold mt-4">
Generate Variations
</button>
</div>
</div>
</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> |