import { cn } from '../lib/utils'; type Level = 1 | 2 | 3 | 4 | 5 | 6; export function Heading({ level, children, className, }: React.PropsWithChildren<{ level?: Level; className?: string }>) { switch (level) { case 1: return (