2024-10-25 02:32:25 +00:00
|
|
|
package pages
|
|
|
|
|
2024-12-11 07:18:43 +00:00
|
|
|
import "github.com/ekzyis/magicwallet/pages/components"
|
2024-10-25 02:32:25 +00:00
|
|
|
|
|
|
|
templ Index() {
|
|
|
|
<html>
|
|
|
|
@components.Head()
|
2024-10-26 01:56:41 +00:00
|
|
|
<body
|
|
|
|
class="container"
|
|
|
|
data-commit={ templ.JSONString(ctx.Value("commit")) }
|
|
|
|
>
|
2024-10-25 02:32:25 +00:00
|
|
|
<div id="content" class="grid mt-3">
|
|
|
|
<div class="grid gap-10 self-center justify-self-center">
|
|
|
|
<h1 class="text-center text-5xl font-bold">0 sats</h1>
|
|
|
|
<div class="flex justify-self-center">
|
|
|
|
<button class="flex items-center justify-center text-xl mx-3 w-[120px]">
|
|
|
|
<img src="/svg/arrow-left-down-line.svg" width="24px" height="24px"/>
|
|
|
|
receive
|
|
|
|
</button>
|
|
|
|
<button class="flex items-center justify-center text-xl mx-3 w-[120px]">
|
|
|
|
<img src="/svg/arrow-right-up-line.svg" width="24px" height="24px"/>
|
|
|
|
send
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
}
|