aboutsummaryrefslogtreecommitdiffstats
path: root/app/page.tsx
diff options
context:
space:
mode:
authorbndw <ben@bdw.to>2023-04-26 17:49:25 -0700
committerbndw <ben@bdw.to>2023-04-26 17:49:25 -0700
commit8686078ae801fdc15df5a40ee158a43373d37c1c (patch)
treef8807fa764e917c6c4cdd30dcff31aa4bb060da8 /app/page.tsx
Initial commit
Diffstat (limited to 'app/page.tsx')
-rw-r--r--app/page.tsx15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/page.tsx b/app/page.tsx
new file mode 100644
index 0000000..d0ac564
--- /dev/null
+++ b/app/page.tsx
@@ -0,0 +1,15 @@
1import { BitcoinPrice } from "./components/bitcoin-price";
2import { Calculator } from "./components/calculator";
3
4export default function Home() {
5 return (
6 <main className="h-screen" style={{ margin: "15px" }}>
7 <div className="flex justify-end">
8 <BitcoinPrice />
9 </div>
10 <div className="flex justify-center items-center h-screen">
11 <Calculator />
12 </div>
13 </main>
14 );
15}