'use client'; import { ReactNode, useEffect } from 'react'; import { createPortal } from 'react-dom'; import { cn } from '@/lib/utils'; interface ModalProps { isOpen: boolean; onClose: () => void; children: ReactNode; title?: string; size?: 'sm' | 'md' | 'lg' | 'xl'; } export function Modal({ isOpen, onClose, children, title, size = 'md' }: ModalProps) { useEffect(() => { const handleEscape = (e: KeyboardEvent) => { if (e.key === 'Escape') onClose(); }; if (isOpen) { document.addEventListener('keydown', handleEscape); document.body.style.overflow = 'hidden'; } return () => { document.removeEventListener('keydown', handleEscape); document.body.style.overflow = 'unset'; }; }, [isOpen, onClose]); if (!isOpen) return null; const sizes = { sm: 'max-w-md', md: 'max-w-lg', lg: 'max-w-2xl', xl: 'max-w-4xl' }; return createPortal(