diff --git a/docs/assets/og-image.jpg b/docs/assets/og-image.jpg
new file mode 100644
index 0000000..f1bb088
Binary files /dev/null and b/docs/assets/og-image.jpg differ
diff --git a/docs/index.md b/docs/index.md
index e4dc20b..710c3eb 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -1,3 +1,7 @@
+---
+title: takopi
+---
+
# Takopi documentation
Takopi runs coding agents on your computer and bridges them to Telegram. Send tasks from anywhere, watch progress stream live, pick up when back at the terminal. Scale from quick one-offs to multi-project workflows with topics and parallel worktrees.
diff --git a/docs/overrides/main.html b/docs/overrides/main.html
new file mode 100644
index 0000000..2c51da8
--- /dev/null
+++ b/docs/overrides/main.html
@@ -0,0 +1,34 @@
+{% extends "base.html" %}
+
+{% block htmltitle %}
+ {% if page and page.canonical_url and page.canonical_url == config.site_url %}
+
{{ config.site_name }}
+ {% else %}
+ {{ super() }}
+ {% endif %}
+{% endblock %}
+
+{% block extrahead %}
+ {{ super() }}
+ {% if page and page.canonical_url and page.canonical_url == config.site_url %}
+ {% set og_title = config.site_name %}
+ {% else %}
+ {% set og_title = page.title ~ " - " ~ config.site_name if page and page.title else config.site_name %}
+ {% endif %}
+ {% set og_desc = config.site_description %}
+ {% set og_url = page.canonical_url if page and page.canonical_url else config.site_url %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+{% endblock %}
diff --git a/zensical.toml b/zensical.toml
index 0062f16..19ff80d 100644
--- a/zensical.toml
+++ b/zensical.toml
@@ -1,8 +1,8 @@
[project]
site_name = "takopi"
-site_description = "takopi - telegram bridge for coding agents"
+site_description = "Run coding agents on your computer, control them via Telegram. Send tasks from anywhere, stream progress live, pick up where you left off at the terminal."
site_author = "banteg"
-site_url = "https://takopi.banteg.xyz/"
+site_url = "https://takopi.dev/"
repo_url = "https://github.com/banteg/takopi"
repo_name = "banteg/takopi"
edit_uri = "edit/master/docs/"