Spaces:
Running
Running
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width" /> | |
| <title>AI Chatbot Demo</title> | |
| <style> | |
| body { | |
| padding: 2rem; | |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; | |
| background: #0d1117; | |
| color: #c9d1d9; | |
| min-height: 100vh; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| } | |
| .card { | |
| max-width: 520px; | |
| margin: 0 auto; | |
| padding: 32px; | |
| border: 1px solid #30363d; | |
| border-radius: 16px; | |
| background: #161b22; | |
| text-align: center; | |
| } | |
| h1 { font-size: 28px; color: #00FF41; margin-top: 0; } | |
| p { color: #c9d1d9; font-size: 15px; line-height: 1.5; } | |
| .badge { display: inline-block; padding: 4px 12px; border-radius: 12px; background: #00FF4111; color: #00FF41; font-size: 12px; border: 1px solid #00FF41; margin: 4px; } | |
| .links { margin-top: 20px; } | |
| .links a { color: #00FF41; text-decoration: none; padding: 6px 16px; border: 1px solid #00FF41; border-radius: 8px; margin: 4px; display: inline-block; transition: all 0.2s; } | |
| .links a:hover { background: #00FF41; color: #0d1117; } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="card"> | |
| <h1>🤖 AI Chatbot</h1> | |
| <p>Full-stack chatbot powered by <strong>Google Gemini</strong></p> | |
| <hr style="border:none;border-top:1px solid #30363d;margin:16px 0"> | |
| <div> | |
| <span class="badge">Python FastAPI</span> | |
| <span class="badge">Gemini API</span> | |
| <span class="badge">Security Hardened</span> | |
| <span class="badge">Responsive</span> | |
| </div> | |
| <div class="links"> | |
| <a href="https://github.com/Dev9269/ai-chatbot" target="_blank">Source Code</a> | |
| <a href="https://huggingface.co/dev9269" target="_blank">More Projects</a> | |
| </div> | |
| </div> | |
| </body> | |
| </html> | |