97 lines
2.2 KiB
TypeScript
97 lines
2.2 KiB
TypeScript
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 isn’t 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",
|
||
},
|
||
];
|