onchain, lightning, and utxo activity cards

This commit is contained in:
Paul Miller
2023-04-18 19:41:58 -05:00
parent 18e3ad8a41
commit 4be030749a
14 changed files with 330 additions and 30 deletions

View File

@@ -5,6 +5,7 @@ import NavBar from "~/components/NavBar";
import ReloadPrompt from "~/components/Reload";
import { Scan } from '~/assets/svg/Scan';
import { A } from 'solid-start';
import { Activity } from './Activity';
export default function App() {
return (
@@ -15,8 +16,9 @@ export default function App() {
<img src={logo} class="h-10" alt="logo" />
<A class="p-2 hover:bg-white/5 rounded-lg active:bg-m-blue" href="scanner"><Scan /></A>
</header>
<BalanceBox />
<ReloadPrompt />
<BalanceBox />
<Activity />
</DefaultMain>
<NavBar activeTab="home" />
</SafeArea>