w-aura/src/components/ChatsPath/data/index.tsx
Daniil Chemerkin f9d8a67176 Develop
2024-10-24 21:05:01 +00:00

97 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from "react";
export const sprites = "/chats/sprites.svg";
export const images = (path: string) => `/chats/${path}`;
export interface IReview {
avatar: string;
name: string;
date: string;
text: string;
}
export const welcomeReviews: IReview[] = [
{
avatar: "angel.webp",
name: "Angel",
date: "06/09/2021",
text: "Absolutely incredible - readings have helped me in ways I never knew were possible. Thank you isnt enough to describe how grateful I am. The consultation helped me figure out my relationship and mend fences with my husband. ",
},
{
avatar: "hanna.webp",
name: "Hanna",
date: "29/08/2021",
text: "It was really helpful. Finally, I let go of my ex-boyfriend, knowing he no longer felt anything for me. It made me feel so much better! Now I clearly understand what I should do with my life. I'll contact you again for advice and support. ",
},
{
avatar: "christofer.webp",
name: "Christofer",
date: "11/10/2021",
text: "So accurate with readings! I am shocked! Such a great soul that will do his best to help as much as possible and be very transparent if needed! Very happy with this site! ❤️",
},
];
interface IProgressBarSteps {
name: string;
length: number;
index: number;
}
export const progressBarSteps: IProgressBarSteps[] = [
{
index: 1,
name: "Your profile",
length: 5,
},
{
index: 2,
name: "Personal traits",
length: 16,
},
{
index: 3,
name: "Preferences",
length: 8,
},
];
export interface IAnswer {
id: number;
value: string;
name: string | React.ReactNode;
questionId: string;
onClick?: () => void;
}
export interface IDrawerMenuItem {
text: string;
link: string;
}
export const drawerMenuItems: IDrawerMenuItem[] = [
{
text: "Privacy policy",
link: "https://aura.wit.life/privacy",
},
{
text: "Terms of use",
link: "https://aura.wit.life/terms",
},
{
text: "Money back policy",
link: "https://aura.wit.life/privacy",
},
{
text: "Cookie policy",
link: "https://aura.wit.life/privacy",
},
{
text: "FAQ",
link: "https://aura.wit.life/privacy",
},
{
text: "Contact us",
link: "https://witapps.us/en#contact-us",
},
];