magicwallet/pages/index.templ
ekzyis abad39a2bc Let it be hermes
* rename to hermes
* use echo+htmx+templ stack
* use code from delphi.market as scaffolding
2024-10-26 03:57:06 +02:00

27 lines
769 B
Plaintext

package pages
import "github.com/ekzyis/hermes/pages/components"
templ Index() {
<html>
@components.Head()
<body class="container">
<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>
}