2024-07-09 20:41:29 +00:00
|
|
|
package pages
|
|
|
|
|
2024-07-10 07:25:46 +00:00
|
|
|
import "git.ekzyis.com/ekzyis/delphi.market/server/router/pages/components"
|
2024-07-09 20:41:29 +00:00
|
|
|
|
|
|
|
templ Index() {
|
|
|
|
<html>
|
2024-07-10 04:21:22 +00:00
|
|
|
@components.Head()
|
2024-07-10 04:11:28 +00:00
|
|
|
<body class="container">
|
2024-07-12 05:38:28 +00:00
|
|
|
@components.Nav()
|
2024-07-12 03:40:45 +00:00
|
|
|
<div id="content" class="flex flex-col text-center">
|
2024-07-10 07:25:46 +00:00
|
|
|
@components.Figlet("random", "delphi")
|
2024-07-10 04:11:28 +00:00
|
|
|
<div class="font-mono my-3">A prediction market using the lightning network</div>
|
2024-07-09 20:41:29 +00:00
|
|
|
</div>
|
2024-07-10 04:21:22 +00:00
|
|
|
@components.Footer()
|
2024-07-09 20:41:29 +00:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
}
|