import { Button } from "@/components/ui/button"; import { Dialog, DialogContent, DialogTitle } from "@/components/ui/dialog"; export const ProModal = ({ open, onClose, }: { open: boolean; onClose: React.Dispatch>; }) => { const handleProClick = () => { // Replace with your own subscription logic onClose(false); }; return (

Upgrade to Pro

You have reached the monthly free limit.

); }; export default ProModal;