Spaces:
Running
Running
| <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> |