Update index.html
Browse files- index.html +132 -19
index.html
CHANGED
|
@@ -1,19 +1,132 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Professional nano-vLLM Enterprise</title>
|
| 7 |
+
<style>
|
| 8 |
+
body {
|
| 9 |
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
| 10 |
+
line-height: 1.6;
|
| 11 |
+
color: #333;
|
| 12 |
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| 13 |
+
margin: 0;
|
| 14 |
+
padding: 20px;
|
| 15 |
+
min-height: 100vh;
|
| 16 |
+
}
|
| 17 |
+
.container {
|
| 18 |
+
max-width: 800px;
|
| 19 |
+
margin: 0 auto;
|
| 20 |
+
background: white;
|
| 21 |
+
border-radius: 15px;
|
| 22 |
+
padding: 40px;
|
| 23 |
+
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
|
| 24 |
+
}
|
| 25 |
+
.header {
|
| 26 |
+
text-align: center;
|
| 27 |
+
margin-bottom: 40px;
|
| 28 |
+
}
|
| 29 |
+
.logo {
|
| 30 |
+
font-size: 3em;
|
| 31 |
+
margin-bottom: 10px;
|
| 32 |
+
}
|
| 33 |
+
h1 {
|
| 34 |
+
color: #2d3748;
|
| 35 |
+
margin-bottom: 10px;
|
| 36 |
+
}
|
| 37 |
+
.subtitle {
|
| 38 |
+
color: #718096;
|
| 39 |
+
font-size: 1.2em;
|
| 40 |
+
margin-bottom: 30px;
|
| 41 |
+
}
|
| 42 |
+
.status {
|
| 43 |
+
background: #e6f7ff;
|
| 44 |
+
border-left: 4px solid #1890ff;
|
| 45 |
+
padding: 20px;
|
| 46 |
+
border-radius: 8px;
|
| 47 |
+
margin: 30px 0;
|
| 48 |
+
}
|
| 49 |
+
.btn {
|
| 50 |
+
display: inline-block;
|
| 51 |
+
background: #667eea;
|
| 52 |
+
color: white;
|
| 53 |
+
padding: 15px 30px;
|
| 54 |
+
text-decoration: none;
|
| 55 |
+
border-radius: 8px;
|
| 56 |
+
font-weight: bold;
|
| 57 |
+
margin: 10px;
|
| 58 |
+
transition: transform 0.2s;
|
| 59 |
+
}
|
| 60 |
+
.btn:hover {
|
| 61 |
+
transform: translateY(-2px);
|
| 62 |
+
}
|
| 63 |
+
.features {
|
| 64 |
+
display: grid;
|
| 65 |
+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
| 66 |
+
gap: 20px;
|
| 67 |
+
margin: 30px 0;
|
| 68 |
+
}
|
| 69 |
+
.feature {
|
| 70 |
+
background: #f8f9fa;
|
| 71 |
+
padding: 20px;
|
| 72 |
+
border-radius: 8px;
|
| 73 |
+
text-align: center;
|
| 74 |
+
}
|
| 75 |
+
.links {
|
| 76 |
+
text-align: center;
|
| 77 |
+
margin-top: 40px;
|
| 78 |
+
}
|
| 79 |
+
</style>
|
| 80 |
+
</head>
|
| 81 |
+
<body>
|
| 82 |
+
<div class="container">
|
| 83 |
+
<div class="header">
|
| 84 |
+
<div class="logo">π</div>
|
| 85 |
+
<h1>Professional nano-vLLM Enterprise</h1>
|
| 86 |
+
<p class="subtitle">Enterprise Evolution of nano-vLLM for Production Deployment</p>
|
| 87 |
+
</div>
|
| 88 |
+
|
| 89 |
+
<div class="status">
|
| 90 |
+
<h3>π§ Current Status: Active Development</h3>
|
| 91 |
+
<p><strong>Built with deep respect on <a href="https://github.com/GeeeekExplorer/nano-vllm" target="_blank">nano-vLLM</a> (4.5K+ β) by @GeeeekExplorer</strong></p>
|
| 92 |
+
<p>This project bridges nano-vLLM's research excellence to enterprise production needs while maintaining the original's philosophy of simplicity.</p>
|
| 93 |
+
</div>
|
| 94 |
+
|
| 95 |
+
<div class="features">
|
| 96 |
+
<div class="feature">
|
| 97 |
+
<h3>π Enterprise Security</h3>
|
| 98 |
+
<p>JWT authentication, RBAC, API key management, rate limiting</p>
|
| 99 |
+
</div>
|
| 100 |
+
<div class="feature">
|
| 101 |
+
<h3>π Advanced Monitoring</h3>
|
| 102 |
+
<p>Real-time dashboards, Prometheus metrics, custom alerts</p>
|
| 103 |
+
</div>
|
| 104 |
+
<div class="feature">
|
| 105 |
+
<h3>βοΈ Production Scale</h3>
|
| 106 |
+
<p>Auto-scaling, load balancing, multi-GPU, Kubernetes ready</p>
|
| 107 |
+
</div>
|
| 108 |
+
<div class="feature">
|
| 109 |
+
<h3>π€ Always Free Core</h3>
|
| 110 |
+
<p>MIT license, community-driven, transparent development</p>
|
| 111 |
+
</div>
|
| 112 |
+
</div>
|
| 113 |
+
|
| 114 |
+
<div class="links">
|
| 115 |
+
<a href="https://github.com/vinsblack/professional-nano-vllm-enterprise" class="btn" target="_blank">
|
| 116 |
+
π GitHub Repository
|
| 117 |
+
</a>
|
| 118 |
+
<a href="https://github.com/GeeeekExplorer/nano-vllm" class="btn" target="_blank">
|
| 119 |
+
β Original nano-vLLM
|
| 120 |
+
</a>
|
| 121 |
+
<a href="https://github.com/vinsblack/professional-nano-vllm-enterprise/discussions" class="btn" target="_blank">
|
| 122 |
+
π¬ Join Discussion
|
| 123 |
+
</a>
|
| 124 |
+
</div>
|
| 125 |
+
|
| 126 |
+
<div style="text-align: center; margin-top: 40px; color: #718096;">
|
| 127 |
+
<p><strong>Contact:</strong> vincenzo.gallo77@hotmail.com</p>
|
| 128 |
+
<p><em>Standing on the shoulders of giants, reaching for the stars.</em> π</p>
|
| 129 |
+
</div>
|
| 130 |
+
</div>
|
| 131 |
+
</body>
|
| 132 |
+
</html>
|