Spaces:
Sleeping
Sleeping
File size: 4,305 Bytes
94c8770 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
<!DOCTYPE html>
<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>
|