21 lines
1.1 KiB
TypeScript
Executable File
21 lines
1.1 KiB
TypeScript
Executable File
interface IQuestion {
|
|
title: string;
|
|
text: string;
|
|
}
|
|
|
|
export const questions: IQuestion[] = [
|
|
{
|
|
title: "How accurate is the astrology reading on this platform?",
|
|
text: "The accuracy of an astrology reading can vary and is subjective. Astrology is not an exact science, but many find that it can provide valuable insights and perspectives. Our platform uses advanced algorithms and expert astrologers to provide the most accurate readings possible.",
|
|
},
|
|
{
|
|
title: "Can I get a compatibility reading for relationships?",
|
|
text: "Yes, you can get a compatibility reading for relationships. This type of reading includes a comprehensive astrological analysis of two people to assess their compatibility in various areas, including love, communication and shared values.",
|
|
},
|
|
{
|
|
title:
|
|
"Are the astrology readings on this platform confidential and private?",
|
|
text: "Yes, all readings on our platform are strictly confidential. We respect our users' privacy and ensure that all personal data and readings are securely stored and not shared with third parties without consent.",
|
|
},
|
|
];
|