import clsx from 'clsx' import { Button } from 'components/Button' import { Radio } from 'components/Radio' import { useEffect, useState } from 'react' import { FaAsterisk } from 'react-icons/fa' export const Modal = () => { const [showModal, setShowModal] = useState(true) const [isButtonDisabled, setIsButtonDisabled] = useState(true) useEffect(() => { if (localStorage.getItem('disclaimer')) { setShowModal(false) } }, []) const accept = () => { localStorage.setItem('disclaimer', '1') setShowModal(false) } return ( <> {showModal ? (

Before using StargazeTools...

StargazeTools is a decentralized application where individuals or communities can use smart contract dashboards to create, mint and manage NFT collections.
StargazeTools is made up of free, public, and open-source software that is built on top of Stargaze Network. StargazeTools only provides tools for any of the mentioned functionalities above and inside the dApp. Anyone can create or mint NFT collections on StargazeTools and StargazeTools does not audit or have any discretion on how these collections are put to use.

AS DESCRIBED IN THE DISCLAIMER, STARGAZETOOLS IS PROVIDED “AS IS”, AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND. No developer or entity involved in creating the StargazeTools will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the StargazeTools, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, tokens, or anything else.

setIsButtonDisabled(false)} subtitle="" title="I've read the disclaimer and I understand the risks of using StargazeTools." />
) : null} ) }