36 lines
1.4 KiB
TypeScript
Executable File
36 lines
1.4 KiB
TypeScript
Executable File
interface IQuestion {
|
|
title: string;
|
|
text: string;
|
|
}
|
|
|
|
export const questions: IQuestion[] = [
|
|
{
|
|
title: "/trial-payment.people_often_ask.question1",
|
|
text: "/trial-payment.people_often_ask.answer1",
|
|
},
|
|
{
|
|
title: "/trial-payment.people_often_ask.question2",
|
|
text: "/trial-payment.people_often_ask.answer2",
|
|
},
|
|
{
|
|
title: "/trial-payment.people_often_ask.question3",
|
|
text: "/trial-payment.people_often_ask.answer3",
|
|
},
|
|
];
|
|
|
|
export const questionsMike: IQuestion[] = [
|
|
{
|
|
title: "How can an astrological consultation help me in my life?",
|
|
text: "An astrological consultation can provide valuable insights into your personality traits, strengths, and weaknesses, and help you make important decisions and understand current life situations. Book your first consultation and discover new possibilities!",
|
|
},
|
|
{
|
|
title: "How does the astrological platform work and what does it offer?",
|
|
text: "The astrological platform offers online consultations with professional astrologers, personalized natal charts, predictions, and advice based on your birth time, date, and place.",
|
|
},
|
|
{
|
|
title:
|
|
"How accurate are the predictions and advice based on my natal chart?",
|
|
text: "The accuracy of predictions and advice depends on the accuracy of the provided data. With precise data, astrologers can offer very accurate and useful insights and recommendations.",
|
|
},
|
|
];
|