Files
sonr/pkg/nebula/models/marketing.go
T

29 lines
400 B
Go

package models
type Button struct {
Text string
Href string
}
type Image struct {
Src string
Width string
Height string
}
type Stat struct {
Value string
Label string
}
type Hero struct {
TitleFirst string
TitleEmphasis string
TitleSecond string
Subtitle string
PrimaryButton *Button
SecondaryButton *Button
Image *Image
Stats []*Stat
}