personal-site/pkg/ui/models/search_result.go
2025-03-05 20:01:58 -05:00

19 lines
256 B
Go

package models
import (
. "maragu.dev/gomponents"
. "maragu.dev/gomponents/html"
)
type SearchResult struct {
Title string
URL string
}
func (s *SearchResult) Render() Node {
return A(
Class("panel-block"),
Href(s.URL),
Text(s.Title),
)
}