Files
personal-site/constants/layout_parameters.go
kokopi 83fdf3134c init
2026-03-08 02:22:40 +09:00

14 lines
205 B
Go

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