export interface IAdditionalPurchasesStep { id: number; title: string; link: string; } export const steps: IAdditionalPurchasesStep[] = [ { id: 0, title: "Add Report", link: "add-report", }, { id: 1, title: "Unlimited Readings", link: "unlimited-readings", }, { id: 2, title: "Add Consultation", link: "add-consultation", }, { id: 3, title: "Access Product", link: "", }, ]; interface ISignUpOfferPrice { current: number; old?: number; discount?: number; } export interface ISignUpOffer { id: string; title: string; subtitle?: string; productKey: string; price: ISignUpOfferPrice; emoji: string; } export const signUpOffers: ISignUpOffer[] = [ { id: "ultra-pack", title: "ULTRA PACK", subtitle: "(3 in 1 + 2 secret bonus reading)", price: { current: 4999, old: 9999, discount: 50, }, productKey: "main.ultra.pack", emoji: "star_struck.png", }, { id: "numerology-analyses", title: "NUMEROLOGY ANALYSIS", price: { current: 1499, old: 2999, discount: 50, }, productKey: "main.numerology.analysis", emoji: "input_numbers.png", }, { id: "tarot-reading", title: "TAROT READING", price: { current: 1999, old: 3499, discount: 45, }, productKey: "main.tarot.reading", emoji: "sunset.png", }, { id: "palmistry-guide", title: "PALMISTRY GUIDE", price: { current: 1999, old: 2999, discount: 30, }, productKey: "main.palmistry.guide", emoji: "rised_hand.png", }, ]; interface IUnlimitedReadings { id: number; title: string; icon: string; } export const unlimitedReadings: IUnlimitedReadings[] = [ { id: 0, title: "check compatibility as many times as you need", icon: "/woman-heart-man.png", }, { id: 1, title: "hundreds of insights to help you to achieve your relationship goals", icon: "/sparkles.png", }, { id: 2, title: "personalized daily horoscopes and astrological guides with no ads", icon: "/crystal_ball.png", }, { id: 3, title: "auto-renewable 1-month plan, cancel anytime", icon: "/check_mark_button.png", }, ]; interface IFirstSliderItem { id: number; title: string; icon: string; } export const firstSliderList: IFirstSliderItem[] = [ { id: 0, title: "personal affirmations for everyday", icon: "/crystal_ball.png", }, { id: 1, title: "more insight in less time", icon: "/sparkles.png", }, { id: 2, title: "learn visually", icon: "/technologist.png", }, ];