Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>{% block title %}Sheikh LLM Studio{% endblock %}</title> | |
| <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet"> | |
| <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> | |
| <style> | |
| :root { | |
| --primary: #667eea; | |
| --secondary: #764ba2; | |
| --success: #10b981; | |
| --warning: #f59e0b; | |
| --error: #ef4444; | |
| } | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| body { | |
| font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
| min-height: 100vh; | |
| color: #333; | |
| } | |
| .navbar { | |
| background: rgba(255, 255, 255, 0.95); | |
| backdrop-filter: blur(10px); | |
| padding: 1rem 2rem; | |
| box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); | |
| } | |
| .nav-container { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| } | |
| .logo { | |
| font-size: 1.5rem; | |
| font-weight: bold; | |
| color: var(--primary); | |
| } | |
| .nav-links { | |
| display: flex; | |
| gap: 2rem; | |
| } | |
| .nav-links a { | |
| text-decoration: none; | |
| color: #666; | |
| font-weight: 500; | |
| transition: color 0.3s; | |
| } | |
| .nav-links a:hover, | |
| .nav-links a.active { | |
| color: var(--primary); | |
| } | |
| .container { | |
| max-width: 1200px; | |
| margin: 2rem auto; | |
| padding: 0 1rem; | |
| } | |
| .card { | |
| background: rgba(255, 255, 255, 0.95); | |
| backdrop-filter: blur(10px); | |
| border-radius: 15px; | |
| padding: 2rem; | |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); | |
| margin-bottom: 2rem; | |
| } | |
| .btn { | |
| background: var(--primary); | |
| color: white; | |
| border: none; | |
| padding: 0.75rem 1.5rem; | |
| border-radius: 8px; | |
| cursor: pointer; | |
| font-weight: 500; | |
| transition: all 0.3s; | |
| } | |
| .btn:hover { | |
| background: var(--secondary); | |
| transform: translateY(-2px); | |
| } | |
| .feature-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); | |
| gap: 1.5rem; | |
| margin-top: 2rem; | |
| } | |
| .feature-card { | |
| background: white; | |
| padding: 1.5rem; | |
| border-radius: 10px; | |
| text-align: center; | |
| transition: transform 0.3s; | |
| } | |
| .feature-card:hover { | |
| transform: translateY(-5px); | |
| } | |
| .feature-icon { | |
| font-size: 2rem; | |
| color: var(--primary); | |
| margin-bottom: 1rem; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <nav class="navbar"> | |
| <div class="nav-container"> | |
| <div class="logo"> | |
| <i class="fas fa-robot"></i> Sheikh LLM Studio | |
| </div> | |
| <div class="nav-links"> | |
| <a href="/" class="{% if request.url.path == '/' %}active{% endif %}"> | |
| <i class="fas fa-home"></i> Home | |
| </a> | |
| <a href="/chat" class="{% if request.url.path == '/chat' %}active{% endif %}"> | |
| <i class="fas fa-comments"></i> Chat | |
| </a> | |
| <a href="/studio" class="{% if request.url.path == '/studio' %}active{% endif %}"> | |
| <i class="fas fa-cogs"></i> Model Studio | |
| </a> | |
| </div> | |
| </div> | |
| </nav> | |
| <main> | |
| {% block content %}{% endblock %} | |
| </main> | |
| <script> | |
| function showNotification(message, type = 'info') { | |
| console.log(`${type}: ${message}`); | |
| } | |
| function formatTimestamp(date = new Date()) { | |
| return date.toLocaleString(); | |
| } | |
| </script> | |
| </body> | |
| </html> | |