import Title from "@/components/Title"; import styles from "./styles.module.css"; import MainButton from "@/components/MainButton"; import PaymentDiscountTable from "./PaymentDiscountTable"; import Modal from "@/components/Modal"; import PaymentModal from "../TrialPayment/components/PaymentModal"; import { useState } from "react"; function TrialPaymentWithDiscount() { const [isOpenPaymentModal, setIsOpenPaymentModal] = useState(false); const handleClose = () => { setIsOpenPaymentModal(false); }; return (
Party popper You get a secret discount! setIsOpenPaymentModal(true)} > Start your 3-day trial

By continuing you agree that if you don't cancel prior to the end of the 3-days trial, you will automatically be charged $9 for the introductory period of 14 days thereafter the standard rate of $9 every 14 days until you cancel in settings. Learn more about cancellation and refund policy in Subscription terms.

); } export default TrialPaymentWithDiscount;