-
Notifications
You must be signed in to change notification settings - Fork 7
/
constants.ts
101 lines (95 loc) · 1.59 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import { ToolItemProps } from "./components/tool-item";
export const TOOLS: ToolItemProps[] = [
{
title: "Conversation",
icon: "/icons/conversation.svg",
url: "/conversation",
color: "bg-blue-500",
slug: "conversation"
},
{
title: "Photo generation",
icon: "/icons/photo.svg",
url: "/photo",
color: "bg-violet-500",
slug: "photo"
},
{
title: "Video generation",
icon: "/icons/video.svg",
url: "/video",
color: "bg-amber-500",
slug: "video"
},
{
title: "Audio generation",
icon: "/icons/audio.svg",
url: "/audio",
color: "bg-orange-500",
slug: "audio"
},
{
title: "Code generation",
icon: "/icons/code.svg",
url: "/code",
color: "bg-green-500",
slug: "code"
},
];
export const NAVIGATIONS = [
{
title: "Dashboard",
icon: "/icons/dashboard.svg",
url: "/dashboard",
slug: "dashboard"
},
...TOOLS,
];
export const THEME_MODES = [
{
label: "Light",
value: "light"
},
{
label: "Dark",
value: "dark"
},
];
export const MAX_FREE_COUNTS = 5;
export const DAY_IN_MS = 86_400_000;
export const PHOTO_AMOUNT_OPTIONS = [
{
value: "1",
label: "1 Photo"
},
{
value: "2",
label: "2 Photos"
},
{
value: "3",
label: "3 Photos"
},
{
value: "4",
label: "4 Photos"
},
{
value: "5",
label: "5 Photos"
}
];
export const PHOTO_RESOLUTION_OPTIONS = [
{
value: "256x256",
label: "256x256",
},
{
value: "512x512",
label: "512x512",
},
{
value: "1024x1024",
label: "1024x1024",
},
];