Skip to content

Commit 40af2e2

Browse files
committed
docs: update landing page — version v0.48.0, CSP, favicon, nav+footer polish
Fixes applied: - Hero badge + MCP demo slide: v0.45.0 → v0.48.0 - Add Content-Security-Policy meta tag (self + CDN assets) - Add favicon + apple-touch-icon (21no.de logo) - Add 'Docs' link to nav (href=#docs) - Add id='docs' to documentation section - Add 'odek version' to cheatsheet commands - Add © 2024-2026 to footer
1 parent 12fba7a commit 40af2e2

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

docs/index.html

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
<meta name="twitter:description" content="The fastest, minimal Go autonomous agent runtime. ~12 MB static binary, zero frameworks.">
1717
<meta name="keywords" content="Go, autonomous agent, AI agent, LLM, ReAct, MCP, parallel execution, interaction modes, Telegram bot, Docker sandbox, CLI, benchmark, open-source">
1818
<meta name="robots" content="index, follow">
19+
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline' https://assets.21no.de; font-src https://assets.21no.de; img-src 'self' https://21no.de; connect-src 'self'">
20+
<link rel="icon" type="image/x-icon" href="https://21no.de/logo-v2.png">
21+
<link rel="apple-touch-icon" href="https://21no.de/logo-v2.png">
1922
<link rel="stylesheet" href="https://assets.21no.de/fonts/fonts.css">
2023
<link rel="stylesheet" href="https://assets.21no.de/css/tokens.css">
2124
<style>
@@ -305,6 +308,7 @@
305308
<a href="#features">Features</a>
306309
<a href="#install">Install</a>
307310
<a href="#cheatsheet">Cheatsheet</a>
311+
<a href="#docs">Docs</a>
308312
<a href="#demos">Demos</a>
309313
<a href="https://github.com/BackendStack21/odek" target="_blank">GitHub</a>
310314
</div>
@@ -314,7 +318,7 @@
314318
<div class="container">
315319
<h1>odek</h1>
316320
<p class="sub"><span class="size">~12 MB</span> static binary · Zero frameworks.<br>Think, therefore act.</p>
317-
<div class="badge" style="margin-top:12px;display:inline-block;background:var(--accent-subtle);border:1px solid rgba(56,189,248,.15);border-radius:6px;padding:5px 12px;font-size:0.8125rem;font-family:var(--font-mono);color:var(--accent);">v0.45.0</div>
321+
<div class="badge" style="margin-top:12px;display:inline-block;background:var(--accent-subtle);border:1px solid rgba(56,189,248,.15);border-radius:6px;padding:5px 12px;font-size:0.8125rem;font-family:var(--font-mono);color:var(--accent);">v0.48.0</div>
318322

319323
<div class="install-block">
320324
<code>go install github.com/BackendStack21/odek/cmd/odek@latest</code>
@@ -426,7 +430,7 @@ <h2>See it in <span class="hl">action</span></h2>
426430
<div class="slide">
427431
<span class="info"># MCP server mode</span><br>
428432
<span class="prompt">$ odek mcp</span><br>
429-
<span class="info">odek mcp ⚡ MCP server starting (v0.45.0)</span><br>
433+
<span class="info">odek mcp ⚡ MCP server starting (v0.48.0)</span><br>
430434
<span class="output">Connected by Claude Code. Exposing 8 tools:</span><br>
431435
<span class="output"> • read_file — read files with line numbers</span><br>
432436
<span class="output"> • write_file — write files safely</span><br>
@@ -658,6 +662,7 @@ <h3>Commands</h3>
658662
<li><span class="cmd">odek telegram</span><span class="desc">Start Telegram bot</span></li>
659663
<li><span class="cmd">odek run --deliver <task></span><span class="desc">Run task, deliver to Telegram</span></li>
660664
<li><span class="cmd">odek init [--global]</span><span class="desc">Create config file</span></li>
665+
<li><span class="cmd">odek version</span><span class="desc">Show version</span></li>
661666
</ul>
662667

663668
<h3>Key Flags</h3>
@@ -678,7 +683,7 @@ <h3>Key Flags</h3>
678683
</section>
679684

680685
<!-- ═══ Docs ═══ -->
681-
<section>
686+
<section id="docs">
682687
<h2>Everything else is <span class="hl">documented</span></h2>
683688
<p style="margin-bottom:20px">Deep-dive docs for every subsystem. Real detail, no fluff.</p>
684689

@@ -718,7 +723,7 @@ <h2>Ship <span class="hl">it</span></h2>
718723

719724
<footer>
720725
<div class="container">
721-
<a href="https://21no.de">21no.de</a> &middot; MIT License &middot;
726+
&copy; 2024–2026 <a href="https://21no.de">21no.de</a> &middot; MIT License &middot;
722727
<a href="https://github.com/BackendStack21/odek">GitHub</a>
723728
</div>
724729
</footer>

0 commit comments

Comments
 (0)