* rename to hermes * use echo+htmx+templ stack * use code from delphi.market as scaffolding
27 lines
769 B
Plaintext
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>
|
|
}
|