|
| 1 | +import { Metadata } from 'next' |
| 2 | + |
| 3 | +export const metadata: Metadata = { |
| 4 | + title: 'Privacy Policy | Web3 Icons', |
| 5 | + description: 'Privacy policy for Web3 Icons and the Web3 Icons Chrome extension.', |
| 6 | +} |
| 7 | + |
| 8 | +export default function PrivacyPage() { |
| 9 | + return ( |
| 10 | + <div className="prose prose-invert mx-auto max-w-2xl px-4 py-16"> |
| 11 | + <h1>Privacy Policy</h1> |
| 12 | + <p className="text-neutral-400">Last updated: February 2, 2026</p> |
| 13 | + |
| 14 | + <h2>Overview</h2> |
| 15 | + <p> |
| 16 | + Web3 Icons is an open-source icon library for cryptocurrency tokens, |
| 17 | + networks, wallets, and exchanges. This policy covers the Web3 Icons |
| 18 | + website (web3icons.io) and the Web3 Icons Chrome extension. |
| 19 | + </p> |
| 20 | + |
| 21 | + <h2>Data We Collect</h2> |
| 22 | + <p> |
| 23 | + <strong>We do not collect any personal data.</strong> The Chrome |
| 24 | + extension runs entirely on your device. It does not track you, send |
| 25 | + analytics, or communicate with any server. |
| 26 | + </p> |
| 27 | + <p> |
| 28 | + The website uses Vercel Analytics for anonymous, aggregated page view |
| 29 | + statistics. No cookies are used for tracking. No personal information is |
| 30 | + collected or stored. |
| 31 | + </p> |
| 32 | + |
| 33 | + <h2>Permissions</h2> |
| 34 | + <p> |
| 35 | + The Chrome extension requests the <code>clipboardWrite</code> permission |
| 36 | + solely to copy SVG icon code to your clipboard when you click the copy |
| 37 | + button. No clipboard data is read or transmitted. |
| 38 | + </p> |
| 39 | + |
| 40 | + <h2>Third Parties</h2> |
| 41 | + <p> |
| 42 | + We do not share any data with third parties because we do not collect |
| 43 | + any. |
| 44 | + </p> |
| 45 | + |
| 46 | + <h2>Open Source</h2> |
| 47 | + <p> |
| 48 | + The full source code is available at{' '} |
| 49 | + <a |
| 50 | + href="https://github.com/0xa3k5/web3icons" |
| 51 | + target="_blank" |
| 52 | + rel="noopener noreferrer" |
| 53 | + > |
| 54 | + github.com/0xa3k5/web3icons |
| 55 | + </a> |
| 56 | + . You can verify everything described in this policy by reviewing the |
| 57 | + code. |
| 58 | + </p> |
| 59 | + |
| 60 | + <h2>Contact</h2> |
| 61 | + <p> |
| 62 | + Questions? Reach out at{' '} |
| 63 | + <a href="mailto:hey@akml.io">hey@akml.io</a>. |
| 64 | + </p> |
| 65 | + </div> |
| 66 | + ) |
| 67 | +} |
0 commit comments