mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 09:51:39 +00:00
- **refactor: move marketing pages to** - **feat: add role select input**
30 lines
783 B
Templ
30 lines
783 B
Templ
package views
|
|
|
|
import (
|
|
"github.com/onsonr/sonr/pkg/nebula/global/state"
|
|
"github.com/onsonr/sonr/pkg/nebula/global/styles"
|
|
)
|
|
|
|
templ VaultIndexFile() {
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
@styles.Styles()
|
|
@styles.Alpine()
|
|
@styles.Htmx()
|
|
<meta charset="UTF-8"/>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>Sonr DWN</title>
|
|
@state.RegisterServiceWorker()
|
|
</head>
|
|
@styles.Toaster() {
|
|
<body class="flex items-center justify-center h-full bg-zinc-50 lg:p-24 md:16 p-4">
|
|
<main class="flex-row items-center justify-center mx-auto w-fit max-w-screen-sm gap-y-3">
|
|
<div hx-get="/#" swap="outerHTML">Loading...</div>
|
|
</main>
|
|
</body>
|
|
}
|
|
</html>
|
|
}
|