blob: 0310af02c44aefe843d4b7f32dcae359921c01b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import { BitcoinPrice } from "./components/bitcoin-price";
import { Calculator } from "./components/calculator";
import { Donate } from "./components/donate";
export default function Home() {
return (
<main className="h-screen" style={{ margin: "15px" }}>
<div className="flex justify-end space-x-4 ">
<Donate />
<BitcoinPrice />
</div>
<div className="flex justify-center items-center h-screen">
<Calculator />
</div>
</main>
);
}
|