Introduction
FastyGo UI is a wireframe-first component gallery on Go and templ. Pages show live previews, copy-pasteable templ snippets, and prop tables—similar to shadcn/ui, without shipping a monolithic UI package.
github.com/fastygo/ui
FastyGo UI is a wireframe-first component gallery on Go and templ. Pages show live previews, copy-pasteable templ snippets, and prop tables—similar to shadcn/ui, without shipping a monolithic UI package.
Wireframe scope
Structure, semantics, and accessibility come first; visual brand polish is a later phase.
Component gallery
Wireframe previews and API tables.
import "github.com/fastygo/templ/ui"
templ Example() {
@ui.Stack(ui.StackProps{Class: "gap-2"}) {
@ui.Title(ui.TitleProps{Order: 2}, "Component gallery")
@ui.Text(ui.TextProps{Class: "text-sm text-muted-foreground"}, "Wireframe previews and API tables.")
}
}
import "github.com/fastygo/templ/ui"
templ Example() {
@ui.Stack(ui.StackProps{Class: "gap-2"}) {
@ui.Title(ui.TitleProps{Order: 2}, "Component gallery")
@ui.Text(ui.TextProps{Class: "text-sm text-muted-foreground"}, "Wireframe previews and API tables.")
}
}