This commit is contained in:
kokopi
2026-03-08 02:22:40 +09:00
commit 83fdf3134c
25 changed files with 918 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package constants
type LayoutParams struct {
Title string
NavTitle string
}
func NewLayoutParams(title string) *LayoutParams {
return &LayoutParams{
Title: title,
NavTitle: "derrickgee.dev",
}
}