import { cn } from '@/utils/cn'; interface Props { children: React.ReactNode; className?: string; } export function Lead({ children, className }: Props) { return (

{children}

); } export function Lead2({ children, className }: Props) { return (

{children}

); } export function Paragraph({ children, className }: Props) { return

{children}

; } export function Heading1({ children, className }: Props) { return (

{children}

); } export function Heading2({ children, className }: Props) { return (

{children}

); } export function Heading3({ children, className }: Props) { return (

{children}

); }