--- import { cn } from '../lib/cn' import type { AstroChildren } from '../lib/astro' import type { HTMLAttributes } from 'astro/types' type Props = HTMLAttributes<'section'> & { title: string subtitle?: string heading?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' children: AstroChildren } const { title, subtitle, class: className, heading = 'h3', ...props } = Astro.props const HeadingTag = heading ---
{title} {subtitle &&

{subtitle}

}