forked from Sanjay-Ganapathi/Pixiemist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.ts
49 lines (46 loc) · 1.1 KB
/
constants.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
export const MAX_FREE_COUNT = 10;
export const routes = [
{
label: "Dashboard",
path: "/dashboard",
description: "Dashboard",
},
{
label: "Background Remove",
path: "/bg-remove",
description: "Remove Background from your Image",
image: "/dashboard/bg-remove-dashboard.png",
},
{
label: "Image Upscale",
path: "/upscale",
description: "Upscale your Image",
image: "/dashboard/upscale-dashboard.png",
},
{
label: "QR Code Generator",
path: "/qrgen",
description: "Generate Stylised QR Code from Link/Text",
image: "/dashboard/qr-dashboard.png",
},
{
label: "Artistic Realism",
path: "/real-art",
description: "Bringing Your Art to Life",
image: "/dashboard/real-art-dashboard.png",
},
{
label: "Face Swap",
path: "/face-swap",
description: "Your Face, Their Body ",
image: "/dashboard/face-swap-dashboard.png",
},
{
label: "Settings",
path: "/settings",
description: "Settings",
},
];
export const tools = routes.filter(
(route) => route.label !== "Settings" && route.label !== "Dashboard",
);