package sections import ( models "github.com/onsonr/sonr/internal/orm/marketing" ) // ╭───────────────────────────────────────────────────────────╮ // │ Data Model │ // ╰───────────────────────────────────────────────────────────╯ var lowlights = &models.Lowlights{ Heading: "The Fragmentation Problem in the Existing Web is seeping into Crypto", UpperQuotes: []*models.Testimonial{ { FullName: "0xDesigner", Username: "@0xdesigner", Avatar: &models.Image{ Src: Avatar0xDesigner.Src(), Width: "44", Height: "44", }, Quote: "Extremely thoughtful approaches to business. I highly recommend this product to anyone wanting to jump into something new.", }, { FullName: "Alex Recouso", Username: "@alexrecouso", Avatar: &models.Image{ Src: AvatarAlexRecouso.Src(), Width: "44", Height: "44", }, Quote: "Extremely thoughtful approaches to business. I highly recommend this product to anyone wanting to jump into something new.", }, { FullName: "Chjango", Username: "@chjango", Avatar: &models.Image{ Src: AvatarChjango.Src(), Width: "44", Height: "44", }, Quote: "Extremely thoughtful approaches to business. I highly recommend this product to anyone wanting to jump into something new.", }, { FullName: "Gwart", Username: "@gwart", Avatar: &models.Image{ Src: AvatarGwart.Src(), Width: "44", Height: "44", }, Quote: "Extremely thoughtful approaches to business. I highly recommend this product to anyone wanting to jump into something new.", }, }, LowerQuotes: []*models.Testimonial{ { FullName: "HTMX Org", Username: "@htmx_org", Avatar: &models.Image{ Src: AvatarHTMXOrg.Src(), Width: "44", Height: "44", }, Quote: "Extremely thoughtful approaches to business. I highly recommend this product to anyone wanting to jump into something new.", }, { FullName: "Jelena Noble", Username: "@jelena_noble", Avatar: &models.Image{ Src: AvatarJelenaNoble.Src(), Width: "44", Height: "44", }, Quote: "Extremely thoughtful approaches to business. I highly recommend this product to anyone wanting to jump into something new.", }, { FullName: "Tanish", Username: "@tanishqxyz", Avatar: &models.Image{ Src: AvatarTanishqXYZ.Src(), Width: "44", Height: "44", }, Quote: "Extremely thoughtful approaches to business. I highly recommend this product to anyone wanting to jump into something new.", }, { FullName: "Unusual Whales", Username: "@unusual_whales", Avatar: &models.Image{ Src: AvatarUnusualWhales.Src(), Width: "44", Height: "44", }, Quote: "Extremely thoughtful approaches to business. I highly recommend this product to anyone wanting to jump into something new.", }, }, } // ╭───────────────────────────────────────────────────────────╮ // │ Render Section View │ // ╰───────────────────────────────────────────────────────────╯ // Lowlights is the (4th) home page lowlights section templ Lowlights() {

{ lowlights.Heading }

for _,quote := range lowlights.UpperQuotes { @quoteItem(quote) }
for _,quote := range lowlights.LowerQuotes { @quoteItem(quote) }
} templ quoteItem(quote *models.Testimonial) {
Testimonial 01
{ quote.FullName }
{ quote.Username }
{ quote.Quote }
}