-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathsupport.html
More file actions
60 lines (51 loc) · 2.83 KB
/
support.html
File metadata and controls
60 lines (51 loc) · 2.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="images/logo.png">
<link rel="apple-touch-icon" href="images/logo.png">
<title>Support DevDunia Development</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="icon" type="image/x-icon" href="images/echobashFav.png">
</head>
<body class="min-h-screen bg-gray-900 text-white">
<!-- Background -->
<div class="fixed inset-0 -z-10 bg-gradient-to-br from-gray-900 via-slate-900 to-gray-900"></div>
<!-- Main Content -->
<main class="relative z-10 container mx-auto px-4 py-12 max-w-4xl">
<h1 class="text-4xl font-bold mb-8">Support DevDunia Development ❤️</h1>
<div class="space-y-6 text-gray-300">
<p>
My goal with DevDunia is to democratize access to essential developer tools and security utilities. To that end, DevDunia provides 50+ foundational tools such as: JSON formatters, Base64 encoders, hash generators, VAPT security tools, and educational content. These tools enable developers to work more efficiently and securely.
</p>
<p>
If you wish to support this mission and see the developer ecosystem evolve, consider donating so that I can devote more time to DevDunia development. I have personally written almost all DevDunia code and content.
</p>
<p>
You can choose to make either a one-time payment via Ko-fi or become a patron of DevDunia development via one of the services below:
</p>
</div>
<!-- Support Buttons -->
<div class="grid md:grid-cols-2 gap-4 mt-8">
<a href="https://github.com/sponsors/echobash"
class="bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-lg text-center font-semibold transition-colors">
Patronage via GitHub
</a>
<!--
<a href="https://patreon.com/echobash"
class="bg-orange-600 hover:bg-orange-700 text-white px-6 py-3 rounded-lg text-center font-semibold transition-colors">
Patronage via Patreon
</a> -->
<a href="https://ko-fi.com/echobash"
class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg text-center font-semibold transition-colors">
One time support via Ko-fi
</a>
<!-- <a href="https://liberapay.com/echobash"
class="bg-yellow-600 hover:bg-yellow-700 text-white px-6 py-3 rounded-lg text-center font-semibold transition-colors">
Patronage via Liberapay
</a> -->
</div>
</main>
</body>
</html>