-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdonate.html
More file actions
100 lines (90 loc) · 3.53 KB
/
Copy pathdonate.html
File metadata and controls
100 lines (90 loc) · 3.53 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Loosebird - Donate</title>
<meta
name="description"
content="Support Loosebird - Help us build free and native software."
/>
<meta property="og:title" content="Loosebird - Donate" />
<meta
property="og:description"
content="Support Loosebird - Help us build free and native software."
/>
<meta property="og:type" content="website" />
<link rel="stylesheet" href="style.css" />
</head>
<body id="top" class="text-justify">
<header>
<h1>Loosebird</h1>
<p class="author">Support Our Mission</p>
<div class="header-links">
<a href="./index.html" rel="nooper noreferrer">Home</a>
<a href="./faq.html" rel="nooper noreferrer">FAQ</a>
<a href="./projects.html" rel="nooper noreferrer">Projects</a>
<a href="./news.html" rel="nooper noreferrer">News</a>
<a href="./community.html" rel="nooper noreferrer">Community</a>
<a href="./donate.html" rel="nooper noreferrer">Donate</a>
</div>
</header>
<main>
<article class="indent-pars">
<h2 id="why-donate">Why Donate?</h2>
<p class="no-indent">
Loosebird is a community-funded organization. We do not sell user data, we do not use
invasive ads, and we do not lock features behind abusive subscriptions. Our independence
is what allows us to put the user first, always.
</p>
<p>
Your contribution helps us cover infrastructure costs, hardware for cross-platform
testing, and most importantly, it allows our developers to dedicate more time to building
fast, native, and open-source tools.
</p>
<h2 id="ways-to-support">Ways to Support</h2>
<h3 id="platforms">Platforms</h3>
<p class="no-indent">
If you prefer using established platforms for recurring or one-time support:
</p>
<!--<ul>
<li>
<strong>GitHub Sponsors:</strong> <a href="#">sponsor/loosebird</a>
</li>
<li>
<strong>Open Collective:</strong>
<a href="#">opencollective.com/loosebird</a>
</li>
<li>
<strong>Ko-fi:</strong> <a href="#">ko-fi.com/loosebird</a>
</li>
</ul>-->
<h3 id="cryptocurrency">Cryptocurrency</h3>
<p class="no-indent">
For those who value privacy as much as we do, we accept donations in the following
currencies:
</p>
<ul>
<!--<li><strong>Bitcoin (BTC):</strong> <code>your-bitcoin-address-here</code></li>
<li><strong>Monero (XMR):</strong> <code>your-monero-address-here</code></li>-->
</ul>
<h2 id="transparency">Financial Transparency</h2>
<p class="no-indent">
We believe in radical transparency. Every cent donated is accounted for. We periodically
publish financial reports detailing our expenses, from server costs to developer bounties.
</p>
<p>
You can view our latest transparency report <a href="news.html">in our News section</a>.
</p>
<hr />
<p>
<em
>Not able to donate? You can still help by contributing code, improving documentation,
or just spreading the word.</em
>
</p>
</article>
</main>
<script type="module" src="/src/main.ts"></script>
</body>
</html>