| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Gradio Examples</title> |
| <link rel="stylesheet" href="style.css"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| </head> |
| <body> |
| <custom-navbar></custom-navbar> |
| |
| <main class="max-w-6xl mx-auto p-8"> |
| <h1 class="text-3xl font-bold mb-8">Gradio Examples</h1> |
| |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6"> |
| <div class="border rounded-lg overflow-hidden hover:shadow-md transition-shadow"> |
| <img src="http://static.photos/technology/640x360/1" alt="Text Generation" class="w-full h-48 object-cover"> |
| <div class="p-4"> |
| <h3 class="font-bold text-lg mb-2">Text Generation</h3> |
| <p class="text-gray-600 mb-4">Generate text with GPT-2 model</p> |
| <a href="#" class="text-indigo-600 font-medium">View Demo</a> |
| </div> |
| </div> |
|
|
| <div class="border rounded-lg overflow-hidden hover:shadow-md transition-shadow"> |
| <img src="http://static.photos/technology/640x360/2" alt="Image Classification" class="w-full h-48 object-cover"> |
| <div class="p-4"> |
| <h3 class="font-bold text-lg mb-2">Image Classification</h3> |
| <p class="text-gray-600 mb-4">Classify images with ResNet</p> |
| <a href="#" class="text-indigo-600 font-medium">View Demo</a> |
| </div> |
| </div> |
|
|
| <div class="border rounded-lg overflow-hidden hover:shadow-md transition-shadow"> |
| <img src="http://static.photos/technology/640x360/3" alt="Speech Recognition" class="w-full h-48 object-cover"> |
| <div class="p-4"> |
| <h3 class="font-bold text-lg mb-2">Speech Recognition</h3> |
| <p class="text-gray-600 mb-4">Convert speech to text</p> |
| <a href="#" class="text-indigo-600 font-medium">View Demo</a> |
| </div> |
| </div> |
|
|
| <div class="border rounded-lg overflow-hidden hover:shadow-md transition-shadow"> |
| <img src="http://static.photos/technology/640x360/4" alt="Style Transfer" class="w-full h-48 object-cover"> |
| <div class="p-4"> |
| <h3 class="font-bold text-lg mb-2">Style Transfer</h3> |
| <p class="text-gray-600 mb-4">Transfer artistic styles to images</p> |
| <a href="#" class="text-indigo-600 font-medium">View Demo</a> |
| </div> |
| </div> |
|
|
| <div class="border rounded-lg overflow-hidden hover:shadow-md transition-shadow"> |
| <img src="http://static.photos/technology/640x360/5" alt="Sentiment Analysis" class="w-full h-48 object-cover"> |
| <div class="p-4"> |
| <h3 class="font-bold text-lg mb-2">Sentiment Analysis</h3> |
| <p class="text-gray-600 mb-4">Analyze text sentiment</p> |
| <a href="#" class="text-indigo-600 font-medium">View Demo</a> |
| </div> |
| </div> |
|
|
| <div class="border rounded-lg overflow-hidden hover:shadow-md transition-shadow"> |
| <img src="http://static.photos/technology/640x360/6" alt="Object Detection" class="w-full h-48 object-cover"> |
| <div class="p-4"> |
| <h3 class="font-bold text-lg mb-2">Object Detection</h3> |
| <p class="text-gray-600 mb-4">Detect objects in images</p> |
| <a href="#" class="text-indigo-600 font-medium">View Demo</a> |
| </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> |