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"; import { useSelector } from "react-redux"; import { selectors } from "@/store"; import { getZodiacSignByDate } from "@/services/zodiac-sign"; function PartnerTotallyNormalPage() { const navigate = useNavigate(); const birthdate = useSelector(selectors.selectBirthdate); const zodiacSign = getZodiacSignByDate(birthdate); const handleBack = () => { navigate(-1); }; const handleNext = () => { navigate(`${routes.client.questionnaire()}/relationships/appreciated`); }; return (
The clouds
It’s totally normal to feel nervous,{" "} <span style={{ color: "#f2c94c" }}>{zodiacSign}</span>.

But we know you can do this. Let’s keep going so we can build a guidance plan based on your astrological blueprint.

Back Next
); } export default PartnerTotallyNormalPage;