snort/src/Pages/DonatePage.tsx

38 lines
1.5 KiB
TypeScript
Raw Normal View History

2023-01-20 11:11:50 +00:00
import ProfilePreview from "Element/ProfilePreview";
import ZapButton from "Element/ZapButton";
2023-01-20 17:07:14 +00:00
import { bech32ToHex } from "Util";
2023-01-19 00:03:24 +00:00
const Developers = [
2023-01-20 17:07:14 +00:00
bech32ToHex("npub1v0lxxxxutpvrelsksy8cdhgfux9l6a42hsj2qzquu2zk7vc9qnkszrqj49"), // kieran
bech32ToHex("npub107jk7htfv243u0x5ynn43scq9wrxtaasmrwwa8lfu2ydwag6cx2quqncxg") // verbiricha
];
const Contributors = [
bech32ToHex("npub10djxr5pvdu97rjkde7tgcsjxzpdzmdguwacfjwlchvj7t88dl7nsdl54nf"), // ivan
bech32ToHex("npub148jmlutaa49y5wl5mcll003ftj59v79vf7wuv3apcwpf75hx22vs7kk9ay"), // liran cohen
2023-01-21 23:39:10 +00:00
bech32ToHex("npub1r0rs5q2gk0e3dk3nlc7gnu378ec6cnlenqp8a3cjhyzu6f8k5sgs4sq9ac"), // Karnage
2023-01-19 00:03:24 +00:00
];
const DonatePage = () => {
return (
<div className="m5">
<h2>Help fund the development of Snort</h2>
<p>
Snort is an open source project built by passionate people in their free time
</p>
<p>
Your donations are greatly appreciated
</p>
<p>
2023-01-19 11:14:41 +00:00
Check out the code here: <a className="highlight" href="https://github.com/v0l/snort" rel="noreferrer" target="_blank">https://github.com/v0l/snort</a>
2023-01-19 00:03:24 +00:00
</p>
2023-01-20 17:07:14 +00:00
<h3>Primary Developers</h3>
2023-01-19 00:03:24 +00:00
{Developers.map(a => <ProfilePreview pubkey={a} key={a} actions={<ZapButton pubkey={a} />} />)}
2023-01-20 17:07:14 +00:00
<h4>Contributors</h4>
{Contributors.map(a => <ProfilePreview pubkey={a} key={a} actions={<ZapButton pubkey={a} />} />)}
2023-01-19 00:03:24 +00:00
</div>
);
}
2023-01-19 11:14:41 +00:00
export default DonatePage;