initial port of the UI kit

This commit is contained in:
2026-07-13 01:58:29 -04:00
parent 261a7f2b4d
commit b02df48a66
51 changed files with 7507 additions and 154 deletions

View File

@@ -9,6 +9,7 @@ func Routes(d Deps) map[string]func() *vdom.VNode {
"/": HomePage(d),
"/about": AboutPage(d),
"/chart": ChartPage(d),
"/kit": KitPage(d),
"/server": ServerPage(d),
}
}
@@ -25,6 +26,7 @@ var RouteLayout = map[string]string{
"/": "public",
"/about": "public",
"/chart": "app",
"/kit": "app",
"/server": "app",
}