import { combineStyles } from "@/services/styles"; import styles from "./styles.module.scss"; import Title from "@/components/Title"; import GivePersonalizedPlan from "../../components/GivePersonalizedPlan"; import AdviceFromAstrologer from "../../components/AdviceFromAstrologer"; import FindingPartner from "../../components/FindingPartner"; import InsightsRelationship from "../../components/InsightsRelationship"; import UnderstandingYourself from "../../components/UnderstandingYourself"; import PriceComparison from "../../components/PriceComparison"; import PlanIncludes from "../../components/PlanIncludes"; import Reviews from "../../components/Reviews"; import CustomerCounter from "../../components/CustomerCounter"; import StatisticsBanner from "../../components/StatisticsBanner"; import MoneyBackGuarantee from "../../components/MoneyBackGuarantee"; import GuaranteedSecurityPayments from "../../components/GuaranteedSecurityPayments"; import Payments from "../../components/Payments"; import Button from "../../components/Button"; import { images } from "../../data"; import { useNavigate } from "react-router-dom"; import routes from "@/routes"; import { usePaywall } from "@/hooks/paywall/usePaywall"; import { EPlacementKeys } from "@/api/resources/Paywall"; import BlurComponent from "@/components/BlurComponent"; const features = [ { text: "Unlimited daily / weekly / monthly / yearly horoscopes" }, { text: "Astrology lessons and articles inside the app" }, { text: "Beauty / health / travel and more calendars" }, { text: "Compatibility check with zodiac signs inside the app" } ]; function MarketingLanding() { const navigate = useNavigate(); const { products, getText } = usePaywall({ placementKey: EPlacementKeys["aura.placement.email.marketing"], }); const handleContinue = () => { navigate(routes.client.emailMarketingV1SpecialOffer()); } return (
{/* Background elements */} Gift <> <img className={combineStyles(styles.backgroundElement, styles.backgroundElement3)} src={images("gift-small.png")} alt="Gift" /> Special Offer! </>

Everything for free. Trial include!

Hey, Sun <span>👋</span>

Your wellness and happiness are key for us!

<svg className={combineStyles(styles.backgroundElement, styles.backgroundElement5)} width="31" height="31" viewBox="0 0 31 31" fill="none" xmlns="http://www.w3.org/2000/svg"> <circle cx="15.5" cy="15.5" r="15.5" fill="#DEBA00" /> </svg> Highlights of your plan:
) } export default MarketingLanding