banner = (
headline = "Headline Placeholder",
subline,
color = "rgb(250,250,250)",
css
) => {
return html`
<div style="
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
min-height:400px;
background-color: ${color};
${css}"
>
<h1>${headline}</h1>
${subline ? `<p style="margin-bottom:0px">${subline}</p>` : ""}
</div>`;
}