import { cn } from "~/design-system/utils/cn"; interface SectionHeaderProps { title: string; subtitle?: string; className?: string; } /** * Section header with monospace styling. * * Used at the top of route pages to display: * - The example number/title (e.g., "02_preloading") * - An optional subtitle explaining the pattern * * @example * */ export function SectionHeader({ title, subtitle, className }: SectionHeaderProps) { return (
{title} {subtitle && {subtitle}}
); }