feat: publish the Sandwich Hime tutorial starter

This commit is contained in:
2026-08-11 23:59:44 -04:00
commit ddd91c7e7c
20 changed files with 790 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
// SPDX-License-Identifier: 0BSD
package views
import "gamertan.com/sandwich-hime/sando"
// Trail is one server-provided destination rendered by Home.
type Trail struct {
Label string
Description string
URL string
}
// HomeView is the complete typed input to the inner page component.
type HomeView struct {
Visitor string
Trails []Trail
}
// LayoutView is the typed input to the full-document component.
type LayoutView struct {
Title string
Body sando.Component
RenderedAtUTC string
RequestNumber uint64
}