Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>katar - Voice Chat</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| </head> | |
| <body class="bg-gray-100"> | |
| <div class="min-h-screen flex flex-col"> | |
| <header class="bg-indigo-600 text-white p-4 shadow-md"> | |
| <div class="container mx-auto flex justify-between items-center"> | |
| <h1 class="text-xl font-bold">katar Voice Chat</h1> | |
| <nav> | |
| <a href="index.html" class="mx-2 hover:text-gray-300">Home</a> | |
| <a href="chat.html" class="mx-2 hover:text-gray-300">Chat</a> | |
| <a href="visual.html" class="mx-2 hover:text-gray-300">Images</a> | |
| <a href="credits.html" class="mx-2 hover:text-gray-300">Credits</a> | |
| </nav> | |
| </div> | |
| </header> | |
| <main class="flex-grow container mx-auto p-4 flex items-center justify-center"> | |
| <div class="bg-white rounded-lg shadow-md p-8 w-full max-w-2xl"> | |
| <div class="text-center mb-8"> | |
| <div class="w-32 h-32 bg-indigo-100 rounded-full mx-auto flex items-center justify-center mb-4"> | |
| <i class="fas fa-microphone text-4xl text-gray-600"></i> | |
| </div> | |
| <h2 class="text-2xl font-semibold mb-2">Sesli Sohbet</h2> | |
| <p class="text-gray-600">Mikrofon düğmesine basarak konuşmaya başlayın</p> | |
| </div> | |
| <div class="flex justify-center mb-8"> | |
| <button class="bg-gray-800 text-white rounded-full w-20 h-20 flex items-center justify-center hover:bg-gray-700 transition-all"> | |
| <i class="fas fa-microphone text-2xl"></i> | |
| </button> | |
| </div> | |
| <div class="bg-gray-50 rounded-lg p-4"> | |
| <p class="text-center text-gray-500">Konuşmanız burada görüntülenecek...</p> | |
| </div> | |
| </div> | |
| </main> | |
| </div> | |
| </body> | |
| </html> |