blob: d0ac564f8151bf3b215f61b4f619795542d3ec51 (
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">
<BitcoinPrice />
</div>
<div className="flex justify-center items-center h-screen">
<Calculator />
</div>
</main>
);
}
|