diff options
Diffstat (limited to 'app')
| -rw-r--r-- | app/components/donate.module.css | 3 | ||||
| -rw-r--r-- | app/components/donate.tsx | 17 | ||||
| -rwxr-xr-x[-rw-r--r--] | app/page.tsx | 2 |
3 files changed, 0 insertions, 22 deletions
diff --git a/app/components/donate.module.css b/app/components/donate.module.css deleted file mode 100644 index 2c62925..0000000 --- a/app/components/donate.module.css +++ /dev/null | |||
| @@ -1,3 +0,0 @@ | |||
| 1 | .href { | ||
| 2 | border-bottom: solid 1px #ddd; | ||
| 3 | } | ||
diff --git a/app/components/donate.tsx b/app/components/donate.tsx deleted file mode 100644 index 639d4c3..0000000 --- a/app/components/donate.tsx +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | "use client"; | ||
| 2 | |||
| 3 | import styles from "./donate.module.css"; | ||
| 4 | |||
| 5 | export 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 | }; | ||
diff --git a/app/page.tsx b/app/page.tsx index 0310af0..5ad70fa 100644..100755 --- a/app/page.tsx +++ b/app/page.tsx | |||
| @@ -1,12 +1,10 @@ | |||
| 1 | import { BitcoinPrice } from "./components/bitcoin-price"; | 1 | import { BitcoinPrice } from "./components/bitcoin-price"; |
| 2 | import { Calculator } from "./components/calculator"; | 2 | import { Calculator } from "./components/calculator"; |
| 3 | import { Donate } from "./components/donate"; | ||
| 4 | 3 | ||
| 5 | export default function Home() { | 4 | export default function Home() { |
| 6 | return ( | 5 | return ( |
| 7 | <main className="h-screen" style={{ margin: "15px" }}> | 6 | <main className="h-screen" style={{ margin: "15px" }}> |
| 8 | <div className="flex justify-end space-x-4 "> | 7 | <div className="flex justify-end space-x-4 "> |
| 9 | <Donate /> | ||
| 10 | <BitcoinPrice /> | 8 | <BitcoinPrice /> |
| 11 | </div> | 9 | </div> |
| 12 | <div className="flex justify-center items-center h-screen"> | 10 | <div className="flex justify-center items-center h-screen"> |
