From 6dac743dfa46c093f95a2773f77a7596955dbe66 Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Sat, 31 Jan 2026 18:38:31 -0700 Subject: [PATCH] feat(docs): add footer, favicon, and logo branding - Add sidebar footer with GitHub repo link and MIT copyright - Generate geometric logo for project branding - Add logo as favicon in browser tab - Add logo to sidebar header (32x32) next to "sukr" text - Add centered logo (128px) at top of README --- README.md | 4 ++++ docs/static/style.css | 9 ++++++++- docs/templates/base.html | 5 ++++- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2f22cc7..59fa702 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ +

+ sukr logo +

+ # sukr **Minimal static site compiler — suckless, Rust, zero JS.** diff --git a/docs/static/style.css b/docs/static/style.css index cb7d443..0abaec3 100644 --- a/docs/static/style.css +++ b/docs/static/style.css @@ -54,7 +54,14 @@ body { font-weight: 700; color: var(--accent); text-decoration: none; - display: block; + display: flex; + align-items: center; + gap: 0.5rem; +} + +.sidebar .logo-img { + width: 32px; + height: 32px; } .sidebar .tagline { diff --git a/docs/templates/base.html b/docs/templates/base.html index 4065988..a9799ef 100644 --- a/docs/templates/base.html +++ b/docs/templates/base.html @@ -14,7 +14,10 @@