diff --git a/features/auth/ui/cards/Provision.tsx b/features/auth/ui/cards/Provision.tsx new file mode 100644 index 0000000..2cc3e2a --- /dev/null +++ b/features/auth/ui/cards/Provision.tsx @@ -0,0 +1,22 @@ +"use client"; + +import React from "react"; +import ProvisionInput from "../components/ProvisionInput"; + +type Props = { + fullName: string; +}; + +const Provision = ({ fullName }: Props) => { + return ( +
+ Just a few more steps to join the fun! +
+