"use client"; import { Button } from "@nextui-org/button"; import { useModal, useSIWE } from "connectkit"; import { useState } from "react"; import SignedInActions from "./SignedinActions"; export default function SignedInFlow({ referrer, }: { referrer?: string | null; }) { const { setOpen } = useModal(); const [kycState, setKYCState] = useState< "failed" | "completed" | "not-found" | "not-started" | undefined >(); const { isSignedIn } = useSIWE(); return ( <> {!isSignedIn && ( <>
Connect your wallet to get started
> )}
Note: Due to regulatory restrictions, the WEL token will{" "}
not be made available to US persons.