import Title from "@/components/Title"; import SpecialOfferBanner from "./components/SpecialOfferBanner"; import styles from "./styles.module.css"; import ComparePrices from "./components/ComparePrices"; import PointsList from "../../TrialPayment/components/PointsList"; import { marketingLandingPointsList } from "@/data/pointsLists"; import Reviews from "../../TrialPayment/components/Reviews"; import { marketingLandingReviews } from "@/data/reviews"; import LastWeek from "./components/LastWeek"; import MoneyBack from "./components/MoneyBack"; import GuardPayments from "../../TrialPayment/components/GuardPayments"; import MainButton from "@/components/MainButton"; import { useSelector } from "react-redux"; import { selectors } from "@/store"; import { getZodiacSignByDate } from "@/services/zodiac-sign"; import { useNavigate } from "react-router-dom"; import routes from "@/routes"; import { usePaywall } from "@/hooks/paywall/usePaywall"; import { EPlacementKeys } from "@/api/resources/Paywall"; function MarketingLanding() { const birthdate = useSelector(selectors.selectBirthdate); const zodiacSign = getZodiacSignByDate(birthdate); const navigate = useNavigate(); const { paywall, products, getText } = usePaywall({ placementKey: EPlacementKeys["aura.placement.email.marketing"], }); const handleNext = () => { navigate(routes.client.email("marketing-trial-payment")); }; return (
Hey, {zodiacSign} Sun 👋

Your wellness and happiness are key for us!

About plan Highlights of your plan: Messanging Horoscope phone Guide Understanding Customer reviews Over <span style={{ color: "#6a3aa2" }}>247 254</span> happy customers Payments
); } export default MarketingLanding;