--- const { data } = Astro.locals.starlightRoute.entry; const { title = data.title, tagline, actions = [] } = data.hero || {}; import { LinkButton } from "@astrojs/starlight/components"; ---

{ tagline && (

) }

{ actions.length > 0 && (
{actions.map( ({ attrs: { class: className, ...attrs } = {}, icon, link: href, text, variant }) => ( {text} {icon?.html && } ) )}
) }