import { useLocalStorage } from "react-use"; import { defaultHTML } from "../../../utils/consts"; import { Dialog, DialogContent } from "../ui/dialog"; import { Button } from "../ui/button"; import { CheckCheck } from "lucide-react"; function ProModal({ open, html, onClose, }: { open: boolean; html: string; onClose: React.Dispatch>; }) { const [, setStorage] = useLocalStorage("html_content"); const handleProClick = () => { if (html !== defaultHTML) { setStorage(html); } }; return (
🚀
🤩
🥳

Only 9$ for unlimited access!

It seems like you have reached the monthly free limit of DeepSite.


Upgrade to a Account, and unlock:

  • DeepSite unlimited access to all Inference Providers
  • Get highest priority and 8x more quota on Spaces ZeroGPU
  • Activate Dataset Viewer on private datasets
  • Get exclusive early access to new features and updates
  • Get free credits across all Inference Providers
  • ... and much more!
); } const ProTag = ({ className }: { className?: string }) => ( PRO ); export default ProModal;