--- export interface Props { title: string subtitle: string url: string | null } const { title, subtitle, url } = Astro.props const fontSize = 'text-[.9rem]' const fontSizeH3 = 'text-[1.4rem]' const fontSpacing = 'leading-[1.5rem]' const margin = 'm-[-1rem] p-[1rem]' const background = 'bg-[#00000020]' ---

{title}

{ subtitle && ( {subtitle} ) }