mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
28 lines
722 B
Templ
28 lines
722 B
Templ
package global
|
|
|
|
import (
|
|
"github.com/onsonr/sonr/pkg/nebula/global/cdn"
|
|
"github.com/onsonr/sonr/pkg/nebula/global/state"
|
|
)
|
|
|
|
templ IndexFile() {
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
@cdn.Alpine()
|
|
@cdn.Htmx()
|
|
@cdn.Styles()
|
|
<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>
|
|
<body class="flex items-center justify-center h-full bg-neutral-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 id="output">Loading...</div>
|
|
</main>
|
|
</body>
|
|
</html>
|
|
}
|