Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions docs/public/privacy.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:**
Expand Down
5 changes: 4 additions & 1 deletion views/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
27 changes: 18 additions & 9 deletions views/src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,29 @@ const version = pkg.version;

<DefaultFooter />

<p class="bproxy-site-meta">
bproxy v{version} ·
<a href="https://github.com/dimdasci/bproxy/blob/main/LICENSE" target="_blank" rel="noopener noreferrer">
MIT License
</a>
· © Dim Kharitonov
</p>
<footer class="bproxy-site-meta">
<p>
<a href="https://github.com/dimdasci/bproxy" target="_blank" rel="noopener noreferrer">bproxy</a> v{version} ·
<a href="https://github.com/dimdasci/bproxy/blob/main/LICENSE" target="_blank" rel="noopener noreferrer">
MIT License
</a>
· © Dim Kharitonov
</p>
</footer>

<style>
.bproxy-site-meta {
margin: 0 auto 1.5rem;
margin-top: 2rem;
padding-top: 1.5rem;
padding-bottom: 1.5rem;
border-top: 1px solid var(--sl-color-gray-6);
text-align: center;
}

.bproxy-site-meta p {
margin: 0;
font-size: var(--sl-text-xs);
color: var(--sl-color-gray-3);
text-align: center;
}

.bproxy-site-meta a {
Expand Down