package sections import models "github.com/onsonr/sonr/pkg/webui/landing/models" // ╭───────────────────────────────────────────────────────────╮ // │ Data Model │ // ╰───────────────────────────────────────────────────────────╯ // ╭───────────────────────────────────────────────────────────╮ // │ Render Section View │ // ╰───────────────────────────────────────────────────────────╯ // Lowlights is the (4th) home page lowlights section templ Lowlights(lowlights *models.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 }
}