--- import Eyebrow from '@/components/content/Eyebrow.astro'; import Headline from '@/components/content/Headline.astro'; import Lead from '@/components/content/Lead.astro'; interface Props { align?: 'center' | 'left'; class?: string; description?: string; eyebrow?: string; title: string; titleHtml?: string; width?: 'default' | 'measure' | 'wide'; } const { align = 'left', class: className = '', description, eyebrow, title, titleHtml, width = 'default', } = Astro.props; const widthClasses = { default: 'max-w-3xl', measure: 'max-w-[var(--reading-max-width)]', wide: 'max-w-4xl', }; ---
{eyebrow && {eyebrow}} {titleHtml ? : {title}} {description && {description}}