-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
86 lines (82 loc) · 1.6 KB
/
constants.ts
File metadata and controls
86 lines (82 loc) · 1.6 KB
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
import { Code, ImageIcon, LayoutDashboard, MessageSquare, Music, Settings, VideoIcon } from "lucide-react";
export const MAX_FREE_COUNTS = 5;
export const tools = [
{
label: 'Conversation',
icon: MessageSquare,
href: '/conversation',
color: "text-violet-500",
bgColor: "bg-violet-500/10",
},
{
label: 'Music Generation',
icon: Music,
href: '/music',
color: "text-emerald-500",
bgColor: "bg-emerald-500/10",
},
{
label: 'Image Generation',
icon: ImageIcon,
color: "text-pink-700",
bgColor: "bg-pink-700/10",
href: '/image',
},
{
label: 'Video Generation',
icon: VideoIcon,
color: "text-orange-700",
bgColor: "bg-orange-700/10",
href: '/video',
},
{
label: 'Code Generation',
icon: Code,
color: "text-green-700",
bgColor: "bg-green-700/10",
href: '/code',
},
];
export const routes = [
{
label: "Dashboard",
icon: LayoutDashboard,
href: "/dashboard",
color: "text-sky-500"
},
{
label: "Conversation",
icon: MessageSquare,
href: "/conversation",
color: "text-violet-500"
},
{
label: "Image Generation",
icon: ImageIcon,
href: "/image",
color: "text-pink-700"
},
{
label: "Video Generation",
icon: VideoIcon,
href: "/video",
color: "text-orange-700"
},
{
label: "Music Generation",
icon: Music,
href: "/music",
color: "text-emerald-500"
},
{
label: "Code Generation",
icon: Code,
href: "/code",
color: "text-green-700"
},
{
label: "Settings",
icon: Settings,
href: "/settings",
},
]