From c5991e437a83f6ed6a912332d22cf8ba550bd64c Mon Sep 17 00:00:00 2001 From: Dmitrii Kharitonov Date: Tue, 23 Jun 2026 19:53:08 +0200 Subject: [PATCH] fix(docs): add privacy to sidebar, link bproxy in footer, remove redundant heading - Privacy Policy now discoverable in sidebar navigation - Footer 'bproxy' text links to GitHub repo - Removed duplicate 'bproxy Extension Privacy Policy' h2 (page title suffices) - Footer visually separated from pagination with border-top + spacing --- docs/public/privacy.md | 2 -- views/astro.config.mjs | 5 ++++- views/src/components/Footer.astro | 27 ++++++++++++++++++--------- 3 files changed, 22 insertions(+), 12 deletions(-) diff --git a/docs/public/privacy.md b/docs/public/privacy.md index eda6c3d..9928c87 100644 --- a/docs/public/privacy.md +++ b/docs/public/privacy.md @@ -2,8 +2,6 @@ title: Privacy Policy --- -## bproxy Extension Privacy Policy - The bproxy Chrome extension does not collect, store, or transmit any user data. **What the extension does:** diff --git a/views/astro.config.mjs b/views/astro.config.mjs index 282fdc7..a0cd208 100644 --- a/views/astro.config.mjs +++ b/views/astro.config.mjs @@ -127,7 +127,10 @@ export default defineConfig({ sidebar: [ { label: "Overview", - items: [{ label: "Introduction", link: "/" }], + items: [ + { label: "Introduction", link: "/" }, + { label: "Privacy Policy", link: "/privacy/" }, + ], }, { label: "Guide", diff --git a/views/src/components/Footer.astro b/views/src/components/Footer.astro index d86919e..83e4505 100644 --- a/views/src/components/Footer.astro +++ b/views/src/components/Footer.astro @@ -7,20 +7,29 @@ const version = pkg.version; -

- bproxy v{version} · - - MIT License - - · © Dim Kharitonov -

+