141 lines
2.4 KiB
TypeScript
141 lines
2.4 KiB
TypeScript
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;
|
|
price: ISignUpOfferPrice;
|
|
emoji: string;
|
|
}
|
|
|
|
export const signUpOffers: ISignUpOffer[] = [
|
|
{
|
|
id: "ultra-pack",
|
|
title: "ULTRA PACK",
|
|
subtitle: "(3 in 1 + 2 secret bonus reading)",
|
|
price: {
|
|
current: 49.99,
|
|
old: 99.99,
|
|
discount: 50,
|
|
},
|
|
emoji: "star_struck.png",
|
|
},
|
|
{
|
|
id: "numerology-analyses",
|
|
title: "NUMEROLOGY ANALYSIS",
|
|
price: {
|
|
current: 14.99,
|
|
old: 29.99,
|
|
discount: 50,
|
|
},
|
|
emoji: "input_numbers.png",
|
|
},
|
|
{
|
|
id: "tarot-reading",
|
|
title: "TAROT READING",
|
|
price: {
|
|
current: 19.99,
|
|
old: 34.99,
|
|
discount: 45,
|
|
},
|
|
emoji: "sunset.png",
|
|
},
|
|
{
|
|
id: "palmistry-guide",
|
|
title: "PALMISTRY GUIDE",
|
|
price: {
|
|
current: 19.99,
|
|
old: 29.99,
|
|
discount: 30,
|
|
},
|
|
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",
|
|
},
|
|
];
|