mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 01:41:44 +00:00
29 lines
400 B
Go
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
|
|
}
|