add links to source code and cli app on the bottom.

This commit is contained in:
fiatjaf 2023-05-11 20:22:35 -03:00
parent 8ddea1fda5
commit 1b07b4f78a
No known key found for this signature in database
GPG Key ID: BAD43C4BE5C1A3A1

View File

@ -28,7 +28,7 @@ object Main extends IOWebApp {
src := "/favicon.ico" src := "/favicon.ico"
), ),
a( a(
href := "https://github.com/fiatjaf/nostr-army-knife", href := "/",
"nostr army knife" "nostr army knife"
) )
), ),
@ -38,6 +38,18 @@ object Main extends IOWebApp {
actions(store) actions(store)
), ),
result(store) result(store)
),
div(
cls := "flex justify-end mr-5 mt-10 text-xs w-4/5",
a(
href := "https://github.com/fiatjaf/nak",
"source code"
),
a(
cls := "ml-4",
href := "https://github.com/fiatjaf/nak",
"get the command-line tool"
)
) )
) )
} }