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