'use client'; import { X } from 'lucide-react'; interface RateLimitModalProps { isOpen: boolean; onClose: () => void; } export const RateLimitModal = ({ isOpen, onClose }: RateLimitModalProps) => { if (!isOpen) return null; return (
{/* Backdrop */}
{/* Modal */}
{/* Close button */} {/* Content */}
{/* Icon */}
{/* Title */}

Document Limit Reached

{/* Message */}

You have processed the maximum of 4 documents in this session.

Personalised dashboard and subscriptions coming soon!

{/* CTA */}
); };