package main // schematicHeroComponent renders the landing-page hero. // UAT §13.6 requires the

to render in Space Grotesk at >= 64px on 1440x900. // UAT §6 requires a scrim layer between the background image and the title text. templ schematicHeroComponent(data SchematicHeroData) {
if data.Image != "" {
}
if data.Kicker != "" {
{ data.Kicker }
}

if data.Title == "" { { "Untitled mission" } } else { { data.Title } }

if data.PrimaryCTA.Text != "" && data.PrimaryCTA.Href != "" { { data.PrimaryCTA.Text } } if data.SecondaryCTA.Text != "" && data.SecondaryCTA.Href != "" { { data.SecondaryCTA.Text } }
}