import Title from "@/components/Title"; import styles from "./styles.module.css"; import MainButton from "@/components/MainButton"; import { useNavigate } from "react-router-dom"; import routes from "@/routes"; function RelationshipAlmostTherePage() { const navigate = useNavigate(); const handleBack = () => { navigate(-1); }; const handleNext = () => { navigate(`${routes.client.questionnaire()}/relationships/issueTogether`); }; return (
The magnifier
Almost there! Now let's begin tailoring your plan by understanding your{" "} <span className={styles.purple}> Relationship & Personality Patterns </span> .

Please take your time when answering. Each response is used to craft the guidance plan for you and your partner.

Back Next
); } export default RelationshipAlmostTherePage;