import classNames from "classnames"; import { useLocalStorage } from "react-use"; import { defaultHTML } from "../../../utils/consts"; 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 ( <>
onClose(false)} >
PRO Your free inference quota is exhausted

Upgrade to a PRO account to activate Inference Providers and continue using DeepSite.

It also unlocks thousands of Space apps powered by ZeroGPU for 3d, audio, music, video and more!

Subscribe to PRO ($9/month)
); } export default ProModal;