diff --git a/docs/static/logo.png b/docs/static/logo.png new file mode 100644 index 0000000..73bd6f3 Binary files /dev/null and b/docs/static/logo.png differ diff --git a/docs/static/style.css b/docs/static/style.css index 340b021..cb7d443 100644 --- a/docs/static/style.css +++ b/docs/static/style.css @@ -41,6 +41,8 @@ body { top: 0; height: 100vh; overflow-y: auto; + display: flex; + flex-direction: column; } .sidebar header { @@ -85,6 +87,25 @@ body { color: var(--bg); } +.sidebar-footer { + margin-top: auto; + padding-top: 1rem; + border-top: 1px solid var(--border); + font-size: 0.75rem; + color: var(--fg-muted); + display: flex; + flex-direction: column; + gap: 0.25rem; +} + +.sidebar-footer a { + color: var(--fg-muted); +} + +.sidebar-footer a:hover { + color: var(--accent); +} + /* Main content */ main { padding: 3rem 4rem; diff --git a/docs/templates/base.html b/docs/templates/base.html index fdfed52..4065988 100644 --- a/docs/templates/base.html +++ b/docs/templates/base.html @@ -8,6 +8,7 @@ + @@ -20,6 +21,10 @@ {% for item in nav %}{{ item.label }}{% endfor %} +
{% block content %}{% endblock content %}