import styles from "../styles.module.scss"; import { useTranslations } from "@/hooks/translations"; import { ELocalesPlacement } from "@/locales"; import { images } from "@/components/CompatibilityV2/data"; import Button from "@/components/CompatibilityV2/components/Button"; interface IReviewV3Props { handleNext: () => void; } function ReviewV3({ handleNext }: IReviewV3Props) { const { translate } = useTranslations(ELocalesPlacement.CompatibilityV2); const quote = "“A tool that becomes your ally on the path to a harmonious relationship.”"; return (
COSMOPOLITAN

{quote}

partners
); } export default ReviewV3;