magicwallet/pages/index.templ

30 lines
837 B
Plaintext
Raw Normal View History

package pages
2024-12-11 07:18:43 +00:00
import "github.com/ekzyis/magicwallet/pages/components"
templ Index() {
<html>
@components.Head()
<body
class="container"
data-commit={ templ.JSONString(ctx.Value("commit")) }
>
<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>
}