diff options
| author | bndw <ben@bdw.to> | 2023-04-27 08:19:33 -0700 |
|---|---|---|
| committer | bndw <ben@bdw.to> | 2023-04-27 08:19:33 -0700 |
| commit | 633b20d90efc46d16591ee2118683106e27297c0 (patch) | |
| tree | 1de6282454f498e168bba01211dd90094589e40a /app/page.tsx | |
| parent | ad4ea380406451145ca3a9b7f0f59fda9c12caef (diff) | |
feat: donations
Diffstat (limited to 'app/page.tsx')
| -rw-r--r-- | app/page.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/page.tsx b/app/page.tsx index d0ac564..0310af0 100644 --- a/app/page.tsx +++ b/app/page.tsx | |||
| @@ -1,10 +1,12 @@ | |||
| 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"; | ||
| 3 | 4 | ||
| 4 | export default function Home() { | 5 | export default function Home() { |
| 5 | return ( | 6 | return ( |
| 6 | <main className="h-screen" style={{ margin: "15px" }}> | 7 | <main className="h-screen" style={{ margin: "15px" }}> |
| 7 | <div className="flex justify-end"> | 8 | <div className="flex justify-end space-x-4 "> |
| 9 | <Donate /> | ||
| 8 | <BitcoinPrice /> | 10 | <BitcoinPrice /> |
| 9 | </div> | 11 | </div> |
| 10 | <div className="flex justify-center items-center h-screen"> | 12 | <div className="flex justify-center items-center h-screen"> |
