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 ( +
+
Hey, {fullName.split(" ")[0]}
+

+ Just a few more steps to join the fun! +

+ +
+ ); +}; + +export default Provision; diff --git a/features/auth/ui/components/FullNameInput.tsx b/features/auth/ui/components/FullNameInput.tsx index fc6a424..088593a 100644 --- a/features/auth/ui/components/FullNameInput.tsx +++ b/features/auth/ui/components/FullNameInput.tsx @@ -2,7 +2,7 @@ import React, { useState } from "react"; import { Button, Input } from "@heroui/react"; -import DebugPage from "@/app/debug/DebugPage"; +import Provision from "../cards/Provision"; type Props = { changeCurrentPage: React.Dispatch>; @@ -25,7 +25,7 @@ const FullNameInput = ({ changeCurrentPage }: Props) => { }} /> + + ); +}; + +export default ProvisionInput;