walletpress/privacy.html
cryptorugmunch e13bd4d774
Some checks are pending
CI / lint (push) Waiting to run
CI / test (push) Waiting to run
CI / security (push) Waiting to run
CI / pre-commit (push) Waiting to run
CI / license (push) Waiting to run
CI / ai-review (push) Waiting to run
docs: apply fleet-template (16-artifact scaffold)
Adds missing standard artifacts:
- README.md (if missing)
- AGENTS.md (AI agent contract)
- PLAN.md (current sprint)
- STATUS.md (where we are)
- DEVELOPMENT.md (dev workflow)
- DEPLOYMENT.md (deploy procedure)
- TESTING.md (test strategy)
- DECISIONS.md (ADR index + templates)
- .github/CODEOWNERS
- .github/workflows/ci.yml

Preserves all existing artifacts.

Refs: RugMunchMedia/fleet-template
2026-07-02 02:07:06 +07:00

56 lines
3.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy — WalletPress</title>
<meta name="robots" content="noindex">
<style>
:root{--bg:#050508;--bg1:#0a0a12;--bg2:#11111a;--border:#222233;--accent:#c58e4b;--fg:#e2e8f0;--fg2:#94a3b8;--fg3:#64748b;--font:'Inter',-apple-system,sans-serif;--mono:'JetBrains Mono',monospace}
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:var(--font);background:var(--bg);color:var(--fg);line-height:1.7;padding:40px 24px}
.container{max-width:720px;margin:0 auto}
h1{font-size:28px;margin-bottom:8px}
h2{font-size:18px;margin:28px 0 12px;color:var(--accent)}
h3{font-size:15px;margin:20px 0 8px}
p{color:var(--fg2);font-size:14px;margin-bottom:12px}
.back{display:inline-block;margin-bottom:24px;color:var(--accent2);font-size:14px}
.back:hover{color:var(--accent)}
strong{color:var(--fg)}
</style>
</head>
<body>
<div class="container">
<a href="/" class="back">← Back to WalletPress</a>
<h1>Privacy Policy</h1>
<p><em>Last updated: June 27, 2026</em></p>
<h2>Our Privacy Promise</h2>
<p>WalletPress is designed to be <strong>zero-telemetry by default</strong>. We collect nothing unless you explicitly provide information (e.g., sending an email to support).</p>
<h2>What We Collect</h2>
<p><strong>Nothing automatically.</strong> The self-hosted backend has no analytics, no tracking, no phone-home. The WordPress plugin does not collect usage data. The CLI tool does not phone home.</p>
<p>If you contact support via email, we retain your email address and conversation history for customer service purposes only.</p>
<h2>How We Use Data</h2>
<p>Any data you provide (email address, purchase records) is used solely for: (1) delivering your purchase, (2) providing support, (3) sending critical security updates if you opted in.</p>
<p>We never sell, rent, or share personal data with third parties. We never use data for advertising or profiling.</p>
<h2>Self-Hosted Backend Privacy</h2>
<p>When you deploy WalletPress on your own infrastructure, all wallet data stays on your server. We have zero access to your vault, your private keys, or your generated wallets.</p>
<p>The backend includes an audit trail that logs wallet operations (generation, export, rotation). This log is stored locally and never transmitted.</p>
<h2>Payment Processing</h2>
<p>Crypto payments are processed via the blockchain — we never see your bank account or card details. Card payments are handled by Gumroad, which has its own privacy policy.</p>
<h2>Data Retention</h2>
<p>Purchase records are retained for tax and accounting purposes as required by law. You can request deletion of your data at any time by emailing <a href="mailto:privacy@walletpress.cc">privacy@walletpress.cc</a>.</p>
<h2>Contact</h2>
<p>Privacy inquiries: <a href="mailto:privacy@walletpress.cc">privacy@walletpress.cc</a><br>
General: <a href="mailto:support@walletpress.cc">support@walletpress.cc</a></p>
<p style="margin-top:40px;font-size:12px;color:var(--fg3)">Rug Munch Media LLC · Wyoming, USA</p>
</div>
</body>
</html>