Spaces:
Running
Running
File size: 11,225 Bytes
2ed385e | 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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>DeepShell β About</title>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap" rel="stylesheet">
<style>
:root {
--bg: #0a0a0a;
--panel: #161616;
--border: #2a2a2a;
--text: #e0e0e0;
--muted: #888888;
--accent: #00a832;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
background: var(--bg);
color: var(--text);
font-family: 'JetBrains Mono', 'Courier New', monospace;
min-height: 100vh;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 24px 40px;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 40px;
}
.brand {
font-weight: 700;
font-size: 18px;
letter-spacing: 1px;
color: var(--accent);
text-shadow: 0 0 10px #00ff4155;
text-decoration: none;
}
nav {
display: flex;
gap: 8px;
}
nav a {
padding: 5px 14px;
font-size: 12px;
border: 1px solid var(--border);
border-radius: 4px;
color: var(--muted);
text-decoration: none;
font-family: 'JetBrains Mono', monospace;
transition: all 0.2s;
}
nav a:hover {
color: var(--accent);
border-color: var(--accent);
}
nav a.active {
color: var(--accent);
border-color: var(--accent);
}
/* Hero */
.hero {
text-align: center;
padding: 40px 0 50px;
border-bottom: 1px solid var(--border);
margin-bottom: 50px;
}
.hero-tag {
display: inline-block;
font-size: 11px;
letter-spacing: 2px;
color: var(--accent);
border: 1px solid var(--accent);
padding: 4px 14px;
border-radius: 2px;
margin-bottom: 20px;
}
.hero h1 {
font-size: 36px;
font-weight: 700;
color: var(--accent);
text-shadow: 0 0 20px #00ff4133;
margin-bottom: 16px;
}
.hero p {
font-size: 14px;
color: var(--muted);
max-width: 640px;
margin: 0 auto;
line-height: 1.8;
}
/* Section */
.section {
margin-bottom: 50px;
}
.section-title {
font-size: 11px;
letter-spacing: 3px;
color: var(--accent);
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 12px;
}
.section-title::after {
content: '';
flex: 1;
height: 1px;
background: var(--border);
}
/* Mission */
.mission-box {
background: var(--panel);
border: 1px solid var(--border);
border-left: 3px solid var(--accent);
border-radius: 8px;
padding: 24px 28px;
font-size: 14px;
line-height: 1.9;
color: var(--text);
}
/* Features grid */
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.feature-card {
background: var(--panel);
border: 1px solid var(--border);
border-radius: 8px;
padding: 20px;
transition: border-color 0.2s;
}
.feature-card:hover {
border-color: var(--accent);
}
.feature-icon {
font-size: 24px;
margin-bottom: 10px;
}
.feature-title {
font-size: 13px;
font-weight: 700;
color: var(--accent);
margin-bottom: 6px;
}
.feature-desc {
font-size: 12px;
color: var(--muted);
line-height: 1.7;
}
/* Built for */
.builtfor-grid {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.builtfor-tag {
background: var(--panel);
border: 1px solid var(--border);
border-radius: 4px;
padding: 6px 16px;
font-size: 12px;
color: var(--text);
}
/* Builder */
.builder-box {
background: var(--panel);
border: 1px solid var(--border);
border-radius: 8px;
padding: 24px 28px;
display: flex;
align-items: center;
gap: 24px;
}
.builder-avatar {
font-size: 48px;
flex-shrink: 0;
}
.builder-name {
font-size: 16px;
font-weight: 700;
color: var(--accent);
margin-bottom: 6px;
}
.builder-roles {
font-size: 12px;
color: var(--muted);
line-height: 1.8;
}
/* Thanks grid */
.thanks-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
}
.thanks-card {
background: var(--panel);
border: 1px solid var(--border);
border-radius: 6px;
padding: 14px 18px;
display: flex;
flex-direction: column;
gap: 4px;
}
.thanks-name {
font-size: 13px;
font-weight: 700;
color: var(--accent);
}
.thanks-role {
font-size: 11px;
color: var(--muted);
}
/* Footer */
footer {
border-top: 1px solid var(--border);
margin-top: 60px;
padding: 24px 0;
text-align: center;
font-size: 12px;
color: var(--muted);
}
footer a {
color: var(--accent);
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<header>
<a class="brand" href="/">>_ DeepShell</a>
<nav>
<a href="/">Assistant</a>
<a href="/about.html" class="active">About</a>
<a href="/contact.html">Contact</a>
</nav>
</header>
<!-- Hero -->
<div class="hero">
<div class="hero-tag">β ABOUT DEEPSHELL β</div>
<h1>>_ About DeepShell</h1>
<p>An AI-powered Linux and DevOps assistant built for engineers who want fast, accurate, copy-paste-ready answers β without leaving the terminal mindset.</p>
</div>
<!-- Mission -->
<div class="section">
<div class="section-title">OUR MISSION</div>
<div class="mission-box">
DeepShell was built for one reason β to give Linux and DevOps engineers a fast, focused AI assistant that speaks their language. No generic chatbot noise. No off-topic answers. Just clean, accurate, production-aware responses for the command line world. Think of it as an AI-thrusted co-pilot for your infrastructure work.
</div>
</div>
<!-- Features -->
<div class="section">
<div class="section-title">KEY FEATURES</div>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">π€</div>
<div class="feature-title">Assistant Mode</div>
<div class="feature-desc">Fast DevOps answers. Copy-paste ready commands. Instant response.</div>
</div>
<div class="feature-card">
<div class="feature-icon">π</div>
<div class="feature-title">Trainer Mode</div>
<div class="feature-desc">Structured learning with explanations, examples, and step-by-step guidance.</div>
</div>
<div class="feature-card">
<div class="feature-icon">π</div>
<div class="feature-title">Voice TTS</div>
<div class="feature-desc">English and Hindi text-to-speech. Listen while you work.</div>
</div>
<div class="feature-card">
<div class="feature-icon">π</div>
<div class="feature-title">Translation</div>
<div class="feature-desc">Hindi translation powered by LibreTranslate. Inclusive by design.</div>
</div>
<div class="feature-card">
<div class="feature-icon">π₯</div>
<div class="feature-title">Export</div>
<div class="feature-desc">Save any session as a Markdown reference document. Offline ready.</div>
</div>
<div class="feature-card">
<div class="feature-icon">π</div>
<div class="feature-title">Secure</div>
<div class="feature-desc">Rate limiting, CORS locking, input validation. Hardened by design.</div>
</div>
</div>
</div>
<!-- Built For -->
<div class="section">
<div class="section-title">BUILT FOR</div>
<div class="builtfor-grid">
<span class="builtfor-tag">Linux Administrators</span>
<span class="builtfor-tag">DevOps Engineers</span>
<span class="builtfor-tag">Cloud Engineers</span>
<span class="builtfor-tag">Site Reliability Engineers</span>
<span class="builtfor-tag">Infrastructure Engineers</span>
<span class="builtfor-tag">Docker & Kubernetes Users</span>
<span class="builtfor-tag">Bash Scripters</span>
<span class="builtfor-tag">Students & Learners</span>
</div>
</div>
<!-- Builder -->
<div class="section">
<div class="section-title">THE BUILDER</div>
<div class="builder-box">
<div class="builder-avatar">π₯οΈ</div>
<div>
<div class="builder-name">Muralidhar M Pala</div>
<div class="builder-roles">
πͺ Indian Air Force Veteran β 13.5 years service<br>
βοΈ Senior DevOps & Linux Engineer β 20+ years experience<br>
π Open Source Enthusiast<br>
π Ajman, UAE
</div>
</div>
</div>
</div>
<!-- Special Thanks -->
<div class="section">
<div class="section-title">SPECIAL THANKS</div>
<div class="thanks-grid">
<div class="thanks-card">
<div class="thanks-name">Groq</div>
<div class="thanks-role">LLM inference engine</div>
</div>
<div class="thanks-card">
<div class="thanks-name">Cerebras</div>
<div class="thanks-role">Failover LLM provider</div>
</div>
<div class="thanks-card">
<div class="thanks-name">HuggingFace</div>
<div class="thanks-role">Hosting platform</div>
</div>
<div class="thanks-card">
<div class="thanks-name">Claude β Anthropic</div>
<div class="thanks-role">AI development partner</div>
</div>
<div class="thanks-card">
<div class="thanks-name">DeepSeek</div>
<div class="thanks-role">Architecture consultation</div>
</div>
<div class="thanks-card">
<div class="thanks-name">OpenAI</div>
<div class="thanks-role">Early inspiration</div>
</div>
<div class="thanks-card">
<div class="thanks-name">Piper TTS</div>
<div class="thanks-role">Hindi voice engine</div>
</div>
<div class="thanks-card">
<div class="thanks-name">LibreTranslate</div>
<div class="thanks-role">Translation engine</div>
</div>
<div class="thanks-card">
<div class="thanks-name">Cloudflare</div>
<div class="thanks-role">Proxy + Email routing</div>
</div>
</div>
</div>
<footer>
© 2026 DeepShell β <a href="/">deepshell.cloud</a> | Built with β€οΈ and Linux | Follow <a href="https://youtube.com/@murlipalam" target="_blank">@murlipalam</a> on YouTube
</footer>
</div>
</body>
</html>
|