WIP Budget route and basic layout

This commit is contained in:
2020-06-27 13:36:28 +02:00
parent 769317777c
commit 3b127b0e81
8 changed files with 89 additions and 0 deletions
+50
View File
@@ -0,0 +1,50 @@
<main id="budget">
<section id="main-nav">
<header>
<h2>Budget</h2>
</header>
<div class="content">
<ul>
<li>
<LinkTo @route="budget.expenses">Expenses</LinkTo>
</li>
<li>
<a href="#">Rewards</a>
</li>
</ul>
</div>
</section>
<section id="funds">
<header>
<h2>Community funds</h2>
</header>
<div class="content">
<table>
<thead>
<tr>
<td>Token</td>
<td>Amount</td>
<td>Fiat value</td>
</tr>
</thead>
<tbody>
<tr>
<td>WBTC</td>
<td>1.17215</td>
<td>11031.15 USD</td>
</tr>
<tr>
<td>ETH</td>
<td>0.5</td>
<td>115.60 USD</td>
</tr>
</tbody>
</table>
</div>
</section>
{{outlet}}
</main>
+1
View File
@@ -0,0 +1 @@
{{outlet}}