-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.ts
41 lines (39 loc) · 849 Bytes
/
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
import { Code, ImageIcon, MessageSquare, Music, 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'
}
];