aboutsummaryrefslogtreecommitdiffstats
path: root/app/components/donate.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/components/donate.tsx')
-rw-r--r--app/components/donate.tsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/components/donate.tsx b/app/components/donate.tsx
new file mode 100644
index 0000000..639d4c3
--- /dev/null
+++ b/app/components/donate.tsx
@@ -0,0 +1,17 @@
1"use client";
2
3import styles from "./donate.module.css";
4
5export const Donate = () => {
6 return (
7 <div>
8 <a
9 className={styles.href}
10 target="_blank"
11 href="https://nodeless.io/donate/satscalc"
12 >
13 Donate
14 </a>
15 </div>
16 );
17};