--- import GiteaButton from '@components/buttons/GiteaButton.astro'; interface Props { title: string; subTitle?: string; url?: string; } const { title, subTitle, url } = Astro.props; ---

{title}

{subTitle && (

{subTitle}

)}
{url && (
)}