53 lines
1.6 KiB
TypeScript
Executable File
53 lines
1.6 KiB
TypeScript
Executable File
export interface IReview {
|
|
username: string;
|
|
date: string;
|
|
text: string;
|
|
mark: number;
|
|
image?: string;
|
|
}
|
|
|
|
export const trialPaymentReviews: IReview[] = [
|
|
{
|
|
username: "ria._.panwar",
|
|
date: "02/17/2024",
|
|
text: "It was really helpful and had provided me the clarity that I needed for my current relationship situation. It gives me hope that my relationship could still be save. Thank you. Highly recommended!",
|
|
mark: 5,
|
|
},
|
|
{
|
|
username: "jp63_",
|
|
date: "02/17/2024",
|
|
text: "Amazing, absolutely amazing! The affirmations I received and nurturing advice, was worth everything ! Truly, thank you !!",
|
|
mark: 5,
|
|
},
|
|
{
|
|
username: "therealslimmazi",
|
|
date: "02/17/2024",
|
|
text: "It helps me be able to trust my self and my choices for the future by giving me reassurance with the information i get. My goals and dreams are going to happen and and now i trust myself to do as a need and wish",
|
|
mark: 4.6,
|
|
},
|
|
];
|
|
|
|
export const marketingLandingReviews: IReview[] = [
|
|
{
|
|
username: "@ria._.panwar",
|
|
date: "01/17/2024",
|
|
text: "Horoscope tells realistic facts about day to day life, which can be easily relatable. It shows direction.",
|
|
mark: 0,
|
|
image: "/user1.webp",
|
|
},
|
|
{
|
|
username: "@jp63_",
|
|
date: "01/29/2024",
|
|
text: "It makes me feel safe, seeing, warm and smart.",
|
|
mark: 0,
|
|
image: "/user2.webp",
|
|
},
|
|
{
|
|
username: "@therealslimmazi",
|
|
date: "01/28/2024",
|
|
text: "I love that we have the “my profile” option. I love learning about myself.",
|
|
mark: 0,
|
|
image: "/user3.webp",
|
|
},
|
|
];
|