-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdonate.html
More file actions
257 lines (229 loc) · 16.9 KB
/
donate.html
File metadata and controls
257 lines (229 loc) · 16.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SLS94VX99N"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-SLS94VX99N');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Support ZeroKey & Dippan Bhusal | Donate</title>
<meta name="description" content="Support Dippan Bhusal, the student developer behind ZeroKey. Help fund open-source privacy tools, maintain Supabase servers, and keep secure communication free.">
<meta name="keywords" content="donate to ZeroKey, support Dippan Bhusal, sponsor open source, fund privacy tools, Bitcoin donation, UPI donation, student developer">
<meta name="author" content="Dippan Bhusal">
<meta name="robots" content="index, follow">
<meta property="og:type" content="website">
<meta property="og:url" content="https://zerokey.vercel.app/donate">
<meta property="og:title" content="Support ZeroKey & Dippan Bhusal | Donate">
<meta property="og:description" content="Help keep ZeroKey's zero-knowledge vault free and operational. Support the developer today.">
<meta property="og:image" content="https://zerokey.vercel.app/assets/og/about.png">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:title" content="Support ZeroKey & Dippan Bhusal | Donate">
<meta property="twitter:description" content="Help keep ZeroKey's zero-knowledge vault free and operational. Support the developer today.">
<meta property="twitter:image" content="https://zerokey.vercel.app/assets/og/about.png">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "Donate to ZeroKey",
"description": "Donation page to support Dippan Bhusal and the ZeroKey open-source privacy project.",
"url": "https://zerokey.vercel.app/donate",
"publisher": {
"@type": "Person",
"name": "Dippan Bhusal",
"jobTitle": "Student Developer & Founder",
"url": "https://github.com/kdippan"
}
}
</script>
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico">
<link rel="icon" type="image/svg+xml" href="/assets/favicon.svg">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="48x48" href="/assets/favicon-48x48.png">
<link rel="icon" type="image/png" sizes="64x64" href="/assets/favicon-64x64.png">
<link rel="icon" type="image/png" sizes="96x96" href="/assets/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="128x128" href="/assets/favicon-128x128.png">
<link rel="apple-touch-icon" sizes="57x57" href="/assets/favicon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/assets/favicon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/assets/favicon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/assets/favicon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/assets/favicon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/assets/favicon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/assets/favicon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/assets/favicon-152x152.png">
<link rel="apple-touch-icon" sizes="167x167" href="/assets/favicon-167x167.png">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/assets/favicon-192x192.png">
<link rel="icon" type="image/png" sizes="256x256" href="/assets/favicon-256x256.png">
<link rel="icon" type="image/png" sizes="384x384" href="/assets/favicon-384x384.png">
<link rel="icon" type="image/png" sizes="512x512" href="/assets/favicon-512x512.png">
<link rel="manifest" href="/assets/site.webmanifest">
<meta name="msapplication-TileColor" content="#0f172a">
<meta name="msapplication-TileImage" content="/assets/favicon-144x144.png">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/@phosphor-icons/web"></script>
<link rel="stylesheet" href="/style.css">
</head>
<body class="bg-[#0f172a] text-slate-300 min-h-screen font-sans overflow-x-hidden relative selection:bg-blue-500/30 selection:text-blue-200 flex flex-col">
<div class="fixed top-0 left-1/4 w-[500px] h-[500px] bg-blue-600/10 rounded-full blur-[150px] pointer-events-none z-0"></div>
<div class="fixed bottom-0 right-1/4 w-[500px] h-[500px] bg-emerald-600/10 rounded-full blur-[150px] pointer-events-none z-0"></div>
<nav class="relative z-10 border-b border-slate-800/50 bg-[#0f172a]/80 backdrop-blur-md sticky top-0">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8 h-16 flex items-center justify-between">
<div class="flex items-center gap-2 text-slate-100 font-bold text-2xl tracking-tight">
<i class="ph ph-fingerprint text-blue-500"></i> ZeroKey
</div>
<div class="hidden md:flex gap-6 text-sm font-medium text-slate-400">
<a href="/" class="hover:text-white transition-colors">Home</a>
<a href="/about" class="hover:text-white transition-colors">About</a>
<a href="/privacy" class="hover:text-white transition-colors">Privacy</a>
<a href="/contact" class="hover:text-white transition-colors">Contact</a>
<a href="/donate" class="text-red-400 font-semibold flex items-center gap-1"><i class="ph-fill ph-heart text-red-500"></i> Support</a>
</div>
<a href="/encrypt" class="bg-blue-600 hover:bg-blue-500 text-white text-sm font-semibold px-5 py-2 rounded-lg transition-all shadow-[0_0_15px_rgba(37,99,235,0.3)] hover:shadow-[0_0_25px_rgba(37,99,235,0.5)]">
Launch Vault
</a>
</div>
</nav>
<main class="relative z-10 flex-grow py-12 px-4 sm:px-6 lg:px-8">
<article class="max-w-4xl mx-auto glass-panel p-6 md:p-12 rounded-2xl shadow-2xl border border-slate-700/50 bg-slate-900/60 backdrop-blur-md">
<header class="text-center mb-10">
<h1 class="text-3xl md:text-5xl font-extrabold text-white mb-4 flex items-center justify-center gap-3 tracking-tight">
<i class="ph ph-heart text-red-500"></i> Fuel the Vault
</h1>
<p class="text-slate-400 leading-relaxed text-lg max-w-2xl mx-auto">
ZeroKey is an open-source, ad-free, and privacy-first tool. If this platform has helped you secure your data, consider supporting the mission to keep it running.
</p>
</header>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-10">
<section class="bg-slate-950/40 border border-slate-700/50 rounded-xl p-6 shadow-inner">
<h2 class="text-xl font-semibold text-white mb-3 flex items-center gap-2">
<i class="ph ph-terminal-window text-blue-400"></i> The Developer
</h2>
<p class="text-sm text-slate-400 leading-relaxed mb-4">
Hi, I'm <strong>Dippan Bhusal</strong>. I am a student developer with a deep passion for ethical hacking, web development, and cryptography.
</p>
<p class="text-sm text-slate-400 leading-relaxed">
I built ZeroKey because I believe that paranoid-grade privacy should be a fundamental human right, accessible to everyone, not just those who can afford enterprise security subscriptions.
</p>
</section>
<section class="bg-slate-950/40 border border-slate-700/50 rounded-xl p-6 shadow-inner">
<h2 class="text-xl font-semibold text-white mb-3 flex items-center gap-2">
<i class="ph ph-receipt text-emerald-400"></i> Where Your Funds Go
</h2>
<ul class="text-sm text-slate-400 space-y-3">
<li class="flex items-start gap-2">
<i class="ph ph-database text-blue-400 mt-1"></i>
<span><strong>Infrastructure:</strong> Paying for Supabase database operations, storage buckets, and secure Vercel edge hosting.</span>
</li>
<li class="flex items-start gap-2">
<i class="ph ph-globe text-blue-400 mt-1"></i>
<span><strong>Domains & Maintenance:</strong> Keeping the platform ad-free, online, and patched against new vulnerabilities.</span>
</li>
<li class="flex items-start gap-2">
<i class="ph ph-coffee text-blue-400 mt-1"></i>
<span><strong>Student Fuel:</strong> Supporting my education and funding late-night coding sessions to build more free, open-source tools for the community.</span>
</li>
</ul>
</section>
</div>
<hr class="border-slate-800/50 mb-10">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div class="bg-slate-950/50 border border-slate-700/50 rounded-xl p-6 flex flex-col items-center text-center shadow-inner hover:border-orange-500/50 transition-colors">
<div class="bg-orange-500/10 p-3 rounded-full mb-4">
<i class="ph ph-currency-btc text-orange-400 text-3xl"></i>
</div>
<h2 class="text-xl font-semibold text-white mb-3">Bitcoin (BTC)</h2>
<button onclick="copyAddress('btc')" class="w-full mb-6 bg-slate-900/50 hover:bg-slate-800 border border-slate-700/50 rounded-lg p-3 transition-colors flex flex-col items-center gap-2 group cursor-pointer">
<span class="text-sm text-slate-300 font-mono break-all text-center leading-relaxed">1AV4KnX6qMiiMSUSGMq2M2fuhwLcQEra8U</span>
<div class="flex items-center gap-1.5 text-[10px] text-blue-400 font-semibold uppercase tracking-wider group-hover:text-blue-300 transition-colors">
<i id="btc-icon" class="ph ph-copy"></i>
<span id="btc-text">Click to Copy</span>
</div>
</button>
<div class="bg-white p-2 rounded-lg shadow-lg mb-4">
<img src="https://api.qrserver.com/v1/create-qr-code/?size=160x160&data=bitcoin:1AV4KnX6qMiiMSUSGMq2M2fuhwLcQEra8U&margin=0" alt="Bitcoin QR Code" class="w-32 h-32 rounded">
</div>
<p class="text-[10px] text-slate-500 uppercase tracking-wider font-semibold">Scan to send BTC</p>
</div>
<div class="bg-slate-950/50 border border-slate-700/50 rounded-xl p-6 flex flex-col items-center text-center shadow-inner hover:border-emerald-500/50 transition-colors">
<div class="bg-emerald-500/10 p-3 rounded-full mb-4">
<i class="ph ph-bank text-emerald-400 text-3xl"></i>
</div>
<h2 class="text-xl font-semibold text-white mb-3">UPI Transfer</h2>
<button onclick="copyAddress('upi')" class="w-full mb-6 bg-slate-900/50 hover:bg-slate-800 border border-slate-700/50 rounded-lg p-3 transition-colors flex flex-col items-center gap-2 group cursor-pointer">
<span class="text-sm text-slate-300 font-mono break-all text-center leading-relaxed">dippan@fam</span>
<div class="flex items-center gap-1.5 text-[10px] text-blue-400 font-semibold uppercase tracking-wider group-hover:text-blue-300 transition-colors">
<i id="upi-icon" class="ph ph-copy"></i>
<span id="upi-text">Click to Copy</span>
</div>
</button>
<div class="bg-white p-2 rounded-lg shadow-lg mb-4">
<img src="https://api.qrserver.com/v1/create-qr-code/?size=160x160&data=upi://pay?pa=dippan@fam&pn=ZeroKey%20Donation&cu=INR&margin=0" alt="UPI QR Code" class="w-32 h-32 rounded">
</div>
<p class="text-[10px] text-slate-500 uppercase tracking-wider font-semibold">Scan with any UPI App</p>
</div>
<a href="https://github.com/sponsors/kdippan" target="_blank" rel="noopener noreferrer" class="bg-slate-950/50 border border-slate-700/50 rounded-xl p-6 flex flex-col items-center justify-center text-center shadow-inner hover:border-slate-400/50 transition-colors group">
<div class="bg-slate-100 p-3 rounded-full mb-4 group-hover:scale-110 transition-transform">
<i class="ph-fill ph-github-logo text-slate-900 text-3xl"></i>
</div>
<h2 class="text-xl font-semibold text-white mb-2">GitHub Sponsors</h2>
<p class="text-sm text-slate-400">Support my open-source work directly on GitHub.</p>
</a>
<a href="https://buymeacoffee.com/dippanbhusal?new=1" target="_blank" rel="noopener noreferrer" class="bg-slate-950/50 border border-slate-700/50 rounded-xl p-6 flex flex-col items-center justify-center text-center shadow-inner hover:border-yellow-500/50 transition-colors group">
<div class="bg-yellow-500/10 p-3 rounded-full mb-4 group-hover:scale-110 transition-transform">
<i class="ph ph-coffee text-yellow-400 text-3xl"></i>
</div>
<h2 class="text-xl font-semibold text-white mb-2">Buy Me a Coffee</h2>
<p class="text-sm text-slate-400">A quick and easy way to drop a one-time tip.</p>
</a>
</div>
</article>
</main>
<footer class="border-t border-slate-800/50 bg-[#0f172a] relative z-10 pt-12 pb-8 mt-auto">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row justify-between items-center gap-6 mb-8">
<div class="flex items-center gap-2 text-slate-100 font-bold text-xl tracking-tight">
<i class="ph ph-fingerprint text-slate-500"></i> ZeroKey
</div>
<div class="flex flex-wrap justify-center gap-6 text-sm font-medium text-slate-500">
<a href="/about" class="hover:text-blue-400 transition-colors">About</a>
<a href="/privacy" class="hover:text-blue-400 transition-colors">Privacy Policy</a>
<a href="/terms" class="hover:text-blue-400 transition-colors">Terms & Conditions</a>
<a href="/disclaimer" class="hover:text-blue-400 transition-colors">Disclaimer</a>
<a href="/cookie-policy" class="hover:text-blue-400 transition-colors">Cookie Policy</a>
<a href="/contact" class="hover:text-blue-400 transition-colors">Contact</a>
</div>
</div>
<div class="flex flex-col md:flex-row justify-between items-center text-xs text-slate-600 border-t border-slate-800/50 pt-6">
<p>© 2026 ZeroKey. All rights reserved.</p>
<p class="mt-2 md:mt-0">Built for digital privacy by <a href="https://github.com/kdippan" target="_blank" rel="noopener noreferrer" class="text-blue-400 hover:text-blue-300 font-semibold transition-colors">Dippan Bhusal</a>.</p>
</div>
</div>
</footer>
<script>
function copyAddress(type) {
let textToCopy = type === 'btc' ? '1AV4KnX6qMiiMSUSGMq2M2fuhwLcQEra8U' : 'dippan@fam';
let iconElement = document.getElementById(`${type}-icon`);
let textElement = document.getElementById(`${type}-text`);
navigator.clipboard.writeText(textToCopy).then(() => {
iconElement.classList.replace('ph-copy', 'ph-check-circle');
iconElement.classList.add('text-emerald-400');
textElement.innerText = "Copied!";
textElement.classList.add('text-emerald-400');
setTimeout(() => {
iconElement.classList.replace('ph-check-circle', 'ph-copy');
iconElement.classList.remove('text-emerald-400');
textElement.innerText = "Click to Copy";
textElement.classList.remove('text-emerald-400');
}, 2000);
}).catch(err => {
console.error('Failed to copy!', err);
});
}
</script>
</body>
</html>