import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import Avatar from "@/feature/Avatar"; import { useAuth } from "@/store/auth"; import type { FC } from "react"; const VerifyReviewPage: FC = () => { const profile = useAuth((s) => s.profile); return (

You're all setup!

You've just finished your account verification. Now you can finally access your account and use it for home services.

{profile?.full_name}

{profile?.email}

); }; export default VerifyReviewPage;