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.webp", }, { id: "numerology_analysis", title: "NUMEROLOGY ANALYSIS", price: { current: 1499, old: 2999, discount: 50, }, productKey: "main.numerology.analysis", emoji: "input_numbers.webp", }, { id: "tarot_reading", title: "TAROT READING", price: { current: 1999, old: 3499, discount: 45, }, productKey: "main.tarot.reading", emoji: "sunset.webp", }, { id: "palmistry_guide", title: "PALMISTRY GUIDE", price: { current: 1999, old: 2999, discount: 30, }, productKey: "main.palmistry.guide", emoji: "rised_hand.webp", }, ]; interface IUnlimitedReadings { id: number; title: string; icon: string; } export const unlimitedReadings: IUnlimitedReadings[] = [ { id: 0, title: "/unlimited-readings.check_compatibility", icon: "/woman-heart-man.webp", }, { id: 1, title: "/unlimited-readings.hundreds_of_insights", icon: "/sparkles.webp", }, { id: 2, title: "/unlimited-readings.personalized_daily", icon: "/crystal_ball.webp", }, { id: 3, title: "/unlimited-readings.auto_renewable", icon: "/check_mark_button.webp", }, ]; interface IFirstSliderItem { id: number; title: string; icon: string; } export const firstSliderList: IFirstSliderItem[] = [ { id: 0, title: "/unlimited-readings.personal_affirmations", icon: "/crystal_ball.webp", }, { id: 1, title: "/unlimited-readings.more_insight", icon: "/sparkles.webp", }, { id: 2, title: "/unlimited-readings.learn_visually", icon: "/technologist.webp", }, ];