simplify tailwind classes

remove node
remove godhipit theme
add all themes form daisyui
simplify header
This commit is contained in:
Robin Olsen
2026-02-17 09:49:11 +01:00
parent 01655cd372
commit 441716238c
8 changed files with 69 additions and 1763 deletions

View File

@@ -9,6 +9,7 @@ import "github.com/a-h/templ"
import templruntime "github.com/a-h/templ/runtime"
import "github.com/LazyBachelor/LazyPM/pkg/web/components"
import "github.com/LazyBachelor/LazyPM/pkg/web/components/base"
var baseLayout = components.LayoutProps{
Title: "Beads Test Application",
@@ -25,12 +26,17 @@ var baseLayout = components.LayoutProps{
},
},
Header: components.HeaderProps{
BrandName: "LazyPM Dashboard",
CreateLabel: "+ Create",
CreateHref: "",
SearchPlaceholder: "Search",
Title: "LazyPM Dashboard",
NavbarCenter: base.Input(base.InputProps{
Name: "search-issue",
Type: "search",
Placeholder: "Search issues...",
Class: "",
Attrs: templ.Attributes{
"class": "text-base-content",
},
}),
},
Footer: components.FooterProps{},
}
func BaseLayout() templ.Component {