'use client'; import { X } from 'lucide-react'; interface RateLimitModalProps { isOpen: boolean; onClose: () => void; } export const RateLimitModal = ({ isOpen, onClose }: RateLimitModalProps) => { if (!isOpen) return null; return (
You have processed the maximum of 4 documents in this session.
Personalised dashboard and subscriptions coming soon!
{/* CTA */}