import * as React from "react"; import Button from "@mui/material/Button"; import Dialog from "@mui/material/Dialog"; import DialogActions from "@mui/material/DialogActions"; import DialogContent from "@mui/material/DialogContent"; import DialogContentText from "@mui/material/DialogContentText"; import DialogTitle from "@mui/material/DialogTitle"; import localForage from "localforage"; import { useTheme } from "@mui/material"; const generalLocal = localForage.createInstance({ name: "q-support-general", }); export default function ConsentModal() { const theme = useTheme(); const [open, setOpen] = React.useState(false); const handleClose = () => { setOpen(false); }; const getIsConsented = React.useCallback(async () => { try { const hasConsented = await generalLocal.getItem("general-consent"); if (hasConsented) return; setOpen(true); generalLocal.setItem("general-consent", true); } catch (error) {} }, []); React.useEffect(() => { getIsConsented(); }, []); return (
Welcome Q-Support is currently in its first version and as such there could be some bugs. The Qortal community, along with its development team and the creators of this application, cannot be held accountable for any content published or displayed. Also, they are not responsible for any loss of coin due to either bad actors or bugs in the application. Furthermore, they bear no responsibility for any data loss that may occur as a result of using this application. Finally, they bear no responsibility for any of the content uploaded by users.
); }