--- import { cn } from '@/libs/cn' type Props = { title?: string description?: string className?: string id?: string } const { title, description, className, id } = Astro.props ---
{ (title || description) && (
{title && (

)} {description &&

{description}

}
) }