feat: add static hero section content to homepage

This commit is contained in:
Prad Nukala
2024-10-08 21:06:24 -04:00
parent 8811f56559
commit 3637f27369
36 changed files with 77 additions and 492 deletions
+28
View File
@@ -0,0 +1,28 @@
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
}