From 97c5153795718585a73c1034e76986f637ff19f2 Mon Sep 17 00:00:00 2001 From: Michael McNees Date: Tue, 24 Mar 2026 21:09:23 -0400 Subject: [PATCH] fix(site): deduplicate GitHub icon, center mobile logo, reorder bottom nav MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Hide top-bar GitHub icon on mobile (lg:hidden) — bottom bar has it - Center logo in top bar on mobile (justify-center lg:justify-between) - Move Menu button to far right of bottom bar for thumb reachability Co-Authored-By: Claude Opus 4.6 (1M context) --- site/src/components/Nav.astro | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/site/src/components/Nav.astro b/site/src/components/Nav.astro index 4bf5802..38561e8 100644 --- a/site/src/components/Nav.astro +++ b/site/src/components/Nav.astro @@ -7,13 +7,13 @@ const prefix = isHome ? '' : '/'; const isDocs = Astro.url.pathname === '/docs' || Astro.url.pathname.startsWith('/docs/'); ---