import Title from "@/components/Title"; import styles from "./styles.module.scss"; import { useNavigate } from "react-router-dom"; import routes from "@/routes"; import { useSelector } from "react-redux"; import { selectors } from "@/store"; import Button from "../../ui/Button"; function GoalSetup() { const navigate = useNavigate(); const { goal } = useSelector(selectors.selectAnswers); const handleNext = () => { navigate(routes.client.chatsReviews()); }; const handleBack = () => { navigate(-1); }; return (

Great! You just set your first goal!

{goal === "about_ex" && <>Finding out about my ex</>} {goal === "give_advice" && <>Getting advice for my love life</>} {goal === "give_guidance" && <>Getting guidance on my future</>} {goal === "all" && <>Getting advice on various aspects of life</>}

{goal === "about_ex" && ( <> Every once in a while, we all need some{" "} guidance about our relationships. We will do our best to help you! )} {goal === "give_advice" && ( <> Every once in a while, we all need some{" "} guidance about our love lives. We will do our best to help you! )} {goal === "give_guidance" && ( <> Every once in a while, we all need some{" "} advice on what the future holds. We will do our best to help you! )} {goal === "all" && ( <> Every once in a while, we all need some{" "} advice about different aspects of life. We will do our best to help you! )}

Do not worry! You can change your goal anytime.

); } export default GoalSetup;