77 lines
2.6 KiB
TypeScript
Executable File
77 lines
2.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",
|
|
},
|
|
];
|
|
|
|
export const mikeTrialPaymentReviews: IReview[] = [
|
|
{
|
|
username: "@andi36_11",
|
|
date: "06/05/2024",
|
|
text: '"Talking to Mike felt like chatting with an old friend. He mentioned some personality traits and life events that were spot-on, including a recent difficult breakup. His advice was very comforting and gave me hope."',
|
|
mark: 5,
|
|
image: "/mike/user1.webp",
|
|
},
|
|
{
|
|
username: "@aramaska",
|
|
date: "04/17/2024",
|
|
text: '"Mike was incredibly insightful and accurate. His guidance helped me decide to take a new job offer, which turned out to be the best career move I\'ve ever made."',
|
|
mark: 5,
|
|
image: "/mike/user2.webp",
|
|
},
|
|
{
|
|
username: "@patterso",
|
|
date: "03/01/2024",
|
|
text: '"Astrologer Mike provided clarity and direction when I needed it most. He predicted a significant change in my life, which happened when I moved to a new city. His insights helped me prepare and embrace the transition. Highly recommend his services!"',
|
|
mark: 5,
|
|
image: "/mike/user3.webp",
|
|
},
|
|
];
|