import { useState } from "react"; import { ButtonBorderGradient } from "../Buttons"; import { Modal } from "../Modal"; import Urls from "../../settings/urls"; import { Link } from "../Link"; export const Warning = ({ visible, setVisible, }: { visible?: boolean; setVisible: (arg: boolean) => void; }) => { const [checked, setChecked] = useState(false); const handle = () => { if (checked) { return setVisible(false); } }; return (

Warning

The Bonfida DEX is a fully decentralised digital asset exchange. No representation or warranty is made concerning any aspect of the Bonfida DEX, including its suitability, quality, availability, accessibility, accuracy or safety. As more fully explained in the{" "} Rules (available{" "} here) and the{" "} Risk Statement (available{" "} here), your access to and use of the Bonfida DEX is entirely at your own risk and could lead to substantial losses. You take full responsibility for your use of the Bonfida DEX, and acknowledge that you use it on the basis of your own enquiry, without solicitation or inducement by Contributors (as defined in the Rules).

The Bonfida DEX is not available to residents of Belarus, the Central African Republic, the Democratic Republic of Congo, the Democratic People’s Republic of Korea, the Crimea region of Ukraine, Cuba, Iran, Libya, Somalia, Sudan, South Sudan, Syria, the USA, Yemen, and Zimbabwe or any other jurisdiction in which accessing or using the Bonfida DEX is prohibited (“Prohibited Jurisdictions”). In using the Bonfida DEX, you confirm that you are not located in, incorporated or otherwise established in, or a citizen or resident of, a Prohibited Jurisdiction.

If you intend to enter into any transactions involving derivatives, you also confirm that you are not located in, incorporated or otherwise established in, or a citizen or resident of, a Derivatives Restricted Jurisdiction (as defined in the Rules).

setChecked((prev) => !prev)} type="checkbox" checked={checked} className="mr-5 checkbox checkbox-accent" /> I confirm that I have read, understand and accept the{" "} Rules and the{" "} Risk Statement.
Enter
); };